From 46ef6d517b18da4fd3b086a379c81865e6828384 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Mon, 24 Apr 2023 14:25:35 -0400 Subject: [PATCH 1/5] Use nccmp to compare netcdf files in regression test on NOAA R&D machines. Update WW3 (#1702) * Use nccmp to compare netcdf files * Use nccmp only on NOAA R&D systems * Do not skip checking fv_core.res.nc when GNU compiler is used * Update ufs_common.lua * Update ufs_hera modulefiles * Cleanup compile.sh. Remove unnecessary FIXME for gnu compiler * Update WW3 --- WW3 | 2 +- modulefiles/ufs_common.lua | 84 +- modulefiles/ufs_gaea.intel.lua | 7 - modulefiles/ufs_hera.gnu.lua | 4 - modulefiles/ufs_hera.intel.lua | 4 - modulefiles/ufs_jet.intel.lua | 5 - modulefiles/ufs_orion.intel.lua | 4 - tests/RegressionTests_acorn.intel.log | 1094 +- tests/RegressionTests_cheyenne.gnu.log | 334 +- tests/RegressionTests_cheyenne.intel.log | 15099 +-------------------- tests/RegressionTests_hera.gnu.log | 486 +- tests/RegressionTests_hera.intel.log | 1070 +- tests/RegressionTests_jet.intel.log | 946 +- tests/RegressionTests_orion.intel.log | 1070 +- tests/RegressionTests_wcoss2.intel.log | 1613 +-- tests/compile.sh | 8 - tests/rt_utils.sh | 14 +- tests/run_test.sh | 6 +- 18 files changed, 3903 insertions(+), 17947 deletions(-) diff --git a/WW3 b/WW3 index 081d5a64f2..e026bcc3c7 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 081d5a64f205caac7f920acec6004b1a184f5709 +Subproject commit e026bcc3c748580c0e0e22d6b9394356a37d6ef8 diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index ae8b8e6c31..6b9c9d4042 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -1,56 +1,30 @@ -help([[ -loads UFS Model common libraries -]]) - -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -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)) - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" -load(pathJoin("esmf", esmf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms",fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" -load(pathJoin("gftl-shared", gftl_shared_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - whatis("Description: UFS build environment common libraries") + +help([[Load UFS Model common libraries]]) + +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"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "v1.5.0"}, + {["mapl"] = "2.22.0-esmf-8.3.0b09"}, +} + +for i = 1, #ufs_modules do + for name, default_version in pairs(ufs_modules[i]) do + local env_version_name = string.gsub(name, "-", "_") .. "_ver" + load(pathJoin(name, os.getenv(env_version_name) or default_version)) + end +end diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index fb0ded562e..245d9d064c 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,9 +5,6 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") -load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) - load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") @@ -22,14 +19,10 @@ load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) -- Needed at runtime: load("alps") -load("rocoto") load("ufs_common") setenv("CC","cc") setenv("FC","ftn") setenv("CXX","CC") -setenv("CMAKE_C_COMPILER","cc") -setenv("CMAKE_CXX_COMPILER","CC") -setenv("CMAKE_Fortran_COMPILER","ftn") setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index eef017b7c3..1687aa8f42 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,10 +2,6 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") load("sutils") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 2bc3722598..2a3b27d736 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,10 +2,6 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") load("sutils") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 6ca3c691bc..2ce9e944ba 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -8,11 +8,6 @@ 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/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - - prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index ab6997c3e9..0e942d9e14 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -8,10 +8,6 @@ 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/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index f4df862659..f55b10487e 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Wed Apr 19 19:35:02 UTC 2023 +Fri Apr 21 18:25:24 UTC 2023 Start Regression test -Compile 001 elapsed time 537 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 880 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 478 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 869 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 446 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 010 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 564 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 196 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 480 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 020 elapsed time 174 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 693 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 489 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 023 elapsed time 164 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 305 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 141 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 492 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 459 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 443 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 441 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1024 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 546 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1026 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 937 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 479 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1014 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1470 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 010 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 736 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 601 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 020 elapsed time 326 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 996 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 701 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 023 elapsed time 256 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 482 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 936 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 522 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 949 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 492 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 855 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 340.256574 -The maximum resident set size (KB) = 2947136 +The total amount of wall time = 331.582242 +The maximum resident set size (KB) = 2951024 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.782268 -The maximum resident set size (KB) = 1575888 +The total amount of wall time = 259.108988 +The maximum resident set size (KB) = 1575816 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.779757 -The maximum resident set size (KB) = 2979580 +The total amount of wall time = 386.264368 +The maximum resident set size (KB) = 2978804 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.632876 -The maximum resident set size (KB) = 2861944 +The total amount of wall time = 229.481995 +The maximum resident set size (KB) = 2866968 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.168334 -The maximum resident set size (KB) = 2990760 +The total amount of wall time = 384.311437 +The maximum resident set size (KB) = 2990136 Test 005 cpld_control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.999986 -The maximum resident set size (KB) = 2876932 +The total amount of wall time = 231.849493 +The maximum resident set size (KB) = 2876676 Test 006 cpld_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.734960 -The maximum resident set size (KB) = 3282864 +The total amount of wall time = 367.367543 +The maximum resident set size (KB) = 3279320 Test 007 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.007854 -The maximum resident set size (KB) = 2973900 +The total amount of wall time = 378.417634 +The maximum resident set size (KB) = 2978040 Test 008 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.983349 -The maximum resident set size (KB) = 2912012 +The total amount of wall time = 315.918666 +The maximum resident set size (KB) = 2905528 Test 009 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.513991 -The maximum resident set size (KB) = 2977224 +The total amount of wall time = 384.920105 +The maximum resident set size (KB) = 2977536 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 278.555733 -The maximum resident set size (KB) = 1565640 +The total amount of wall time = 279.741473 +The maximum resident set size (KB) = 1572204 Test 011 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.212513 -The maximum resident set size (KB) = 1619932 +The total amount of wall time = 298.370361 +The maximum resident set size (KB) = 1629996 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid 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 = 308.123577 -The maximum resident set size (KB) = 1621744 +The total amount of wall time = 307.973812 +The maximum resident set size (KB) = 1623124 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.779863 -The maximum resident set size (KB) = 2636224 +The total amount of wall time = 430.905899 +The maximum resident set size (KB) = 2634940 Test 014 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 121.665540 -The maximum resident set size (KB) = 2656548 +The total amount of wall time = 119.347991 +The maximum resident set size (KB) = 2652492 Test 015 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.607169 -The maximum resident set size (KB) = 2070204 +The total amount of wall time = 67.101041 +The maximum resident set size (KB) = 2066324 Test 016 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.399511 -The maximum resident set size (KB) = 2975964 +The total amount of wall time = 375.862362 +The maximum resident set size (KB) = 2974656 Test 017 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.436964 -The maximum resident set size (KB) = 512432 +The total amount of wall time = 129.414193 +The maximum resident set size (KB) = 510980 Test 018 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.293006 -The maximum resident set size (KB) = 513508 +The total amount of wall time = 132.238436 +The maximum resident set size (KB) = 516596 Test 019 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.890204 -The maximum resident set size (KB) = 511748 +The total amount of wall time = 134.145144 +The maximum resident set size (KB) = 513400 Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1255,14 +1255,14 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.080862 -The maximum resident set size (KB) = 673912 +The total amount of wall time = 329.204999 +The maximum resident set size (KB) = 672672 Test 021 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.473133 -The maximum resident set size (KB) = 611020 +The total amount of wall time = 527.214117 +The maximum resident set size (KB) = 611560 Test 022 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 571.586659 -The maximum resident set size (KB) = 920764 +The total amount of wall time = 563.207618 +The maximum resident set size (KB) = 925368 Test 023 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 024 control_c384gdas 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 = 503.318574 -The maximum resident set size (KB) = 1058448 +The total amount of wall time = 514.113576 +The maximum resident set size (KB) = 1054512 Test 024 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1359,28 +1359,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.533489 -The maximum resident set size (KB) = 519188 +The total amount of wall time = 90.149320 +The maximum resident set size (KB) = 517076 Test 025 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.447596 -The maximum resident set size (KB) = 287744 +The total amount of wall time = 48.894612 +The maximum resident set size (KB) = 284936 Test 026 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.140575 -The maximum resident set size (KB) = 513864 +The total amount of wall time = 83.082812 +The maximum resident set size (KB) = 519156 Test 027 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1413,14 +1413,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.357668 -The maximum resident set size (KB) = 515616 +The total amount of wall time = 135.015795 +The maximum resident set size (KB) = 513020 Test 028 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1435,14 +1435,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.637876 -The maximum resident set size (KB) = 516752 +The total amount of wall time = 135.803998 +The maximum resident set size (KB) = 513844 Test 029 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 030 control_p8 results .... 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.206499 -The maximum resident set size (KB) = 1482080 +The total amount of wall time = 180.427691 +The maximum resident set size (KB) = 1487188 Test 030 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1535,14 +1535,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.881494 -The maximum resident set size (KB) = 654684 +The total amount of wall time = 97.965837 +The maximum resident set size (KB) = 655032 Test 031 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1589,14 +1589,14 @@ Checking test 032 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 180.037393 -The maximum resident set size (KB) = 1499316 +The total amount of wall time = 175.176275 +The maximum resident set size (KB) = 1494332 Test 032 control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 033 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 98.857501 -The maximum resident set size (KB) = 668724 +The total amount of wall time = 98.702188 +The maximum resident set size (KB) = 665008 Test 033 control_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.390982 -The maximum resident set size (KB) = 1472656 +The total amount of wall time = 181.027532 +The maximum resident set size (KB) = 1482816 Test 034 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.531361 -The maximum resident set size (KB) = 1571432 +The total amount of wall time = 155.313352 +The maximum resident set size (KB) = 1565920 Test 035 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1761,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.738571 -The maximum resident set size (KB) = 1480376 +The total amount of wall time = 322.089296 +The maximum resident set size (KB) = 1488012 Test 036 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 037 control_p8_rrtmgp results .... 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.062257 -The maximum resident set size (KB) = 1542636 +The total amount of wall time = 234.218193 +The maximum resident set size (KB) = 1545180 Test 037 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1869,14 +1869,14 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.449811 -The maximum resident set size (KB) = 1490332 +The total amount of wall time = 181.393015 +The maximum resident set size (KB) = 1481864 Test 038 control_p8_mynn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1923,14 +1923,14 @@ Checking test 039 merra2_thompson results .... 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.506597 -The maximum resident set size (KB) = 1491572 +The total amount of wall time = 203.669168 +The maximum resident set size (KB) = 1488632 Test 039 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,28 +1941,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.594396 -The maximum resident set size (KB) = 646868 +The total amount of wall time = 286.412370 +The maximum resident set size (KB) = 651160 Test 040 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.133351 -The maximum resident set size (KB) = 648488 +The total amount of wall time = 155.036567 +The maximum resident set size (KB) = 648828 Test 041 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.417256 -The maximum resident set size (KB) = 647576 +The total amount of wall time = 288.780784 +The maximum resident set size (KB) = 647092 Test 042 regional_control_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 158.163503 -The maximum resident set size (KB) = 648124 +The total amount of wall time = 155.881848 +The maximum resident set size (KB) = 647456 Test 043 regional_restart_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,14 +2005,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.124884 -The maximum resident set size (KB) = 646232 +The total amount of wall time = 303.450971 +The maximum resident set size (KB) = 654968 Test 044 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.573170 -The maximum resident set size (KB) = 692680 +The total amount of wall time = 175.718814 +The maximum resident set size (KB) = 696160 Test 045 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2038,14 +2038,14 @@ Checking test 046 regional_noquilt 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 = 310.534344 -The maximum resident set size (KB) = 641456 +The total amount of wall time = 309.693332 +The maximum resident set size (KB) = 640660 Test 046 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.548915 -The maximum resident set size (KB) = 647000 +The total amount of wall time = 288.539089 +The maximum resident set size (KB) = 650860 Test 047 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.560577 -The maximum resident set size (KB) = 338928 +The total amount of wall time = 361.432385 +The maximum resident set size (KB) = 340632 Test 048 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 321.197336 -The maximum resident set size (KB) = 651480 +The total amount of wall time = 321.803922 +The maximum resident set size (KB) = 655388 Test 049 regional_ifi_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 336.366776 -The maximum resident set size (KB) = 656648 +The total amount of wall time = 335.468450 +The maximum resident set size (KB) = 652780 Test 050 regional_ifi_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 196.887173 -The maximum resident set size (KB) = 694656 +The total amount of wall time = 198.442606 +The maximum resident set size (KB) = 694520 Test 051 regional_ifi_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.412403 -The maximum resident set size (KB) = 889328 +The total amount of wall time = 418.048586 +The maximum resident set size (KB) = 893248 Test 052 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.429308 -The maximum resident set size (KB) = 986160 +The total amount of wall time = 242.384099 +The maximum resident set size (KB) = 989380 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2254,14 +2254,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.619726 -The maximum resident set size (KB) = 892984 +The total amount of wall time = 433.829698 +The maximum resident set size (KB) = 890796 Test 054 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2308,14 +2308,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.392842 -The maximum resident set size (KB) = 968464 +The total amount of wall time = 387.603142 +The maximum resident set size (KB) = 965208 Test 055 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2354,14 +2354,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.838298 -The maximum resident set size (KB) = 644976 +The total amount of wall time = 212.414988 +The maximum resident set size (KB) = 644560 Test 056 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2408,14 +2408,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 425.418338 -The maximum resident set size (KB) = 889312 +The total amount of wall time = 421.444590 +The maximum resident set size (KB) = 889104 Test 057 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2462,14 +2462,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.283566 -The maximum resident set size (KB) = 892668 +The total amount of wall time = 436.968936 +The maximum resident set size (KB) = 890376 Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2508,14 +2508,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.716344 -The maximum resident set size (KB) = 641836 +The total amount of wall time = 310.051931 +The maximum resident set size (KB) = 642744 Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2562,14 +2562,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.504771 -The maximum resident set size (KB) = 892088 +The total amount of wall time = 405.586453 +The maximum resident set size (KB) = 891236 Test 060 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2616,14 +2616,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.685543 -The maximum resident set size (KB) = 887312 +The total amount of wall time = 419.341317 +The maximum resident set size (KB) = 888492 Test 061 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.165853 -The maximum resident set size (KB) = 957428 +The total amount of wall time = 372.858619 +The maximum resident set size (KB) = 959816 Test 062 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2716,14 +2716,14 @@ Checking test 063 hrrr_control_restart results .... 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.833124 -The maximum resident set size (KB) = 640676 +The total amount of wall time = 297.300262 +The maximum resident set size (KB) = 640660 Test 063 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.833673 -The maximum resident set size (KB) = 887060 +The total amount of wall time = 416.513921 +The maximum resident set size (KB) = 887692 Test 064 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.389735 -The maximum resident set size (KB) = 578032 +The total amount of wall time = 480.644688 +The maximum resident set size (KB) = 576232 Test 065 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2814,14 +2814,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.891094 -The maximum resident set size (KB) = 568936 +The total amount of wall time = 470.967129 +The maximum resident set size (KB) = 567760 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2830,14 +2830,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 142.767862 -The maximum resident set size (KB) = 804544 +The total amount of wall time = 146.010392 +The maximum resident set size (KB) = 800996 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2846,14 +2846,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.716066 -The maximum resident set size (KB) = 802704 +The total amount of wall time = 101.246999 +The maximum resident set size (KB) = 799884 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2862,14 +2862,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.503775 -The maximum resident set size (KB) = 778628 +The total amount of wall time = 131.510862 +The maximum resident set size (KB) = 778988 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,26 +2878,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.665423 -The maximum resident set size (KB) = 805240 +The total amount of wall time = 144.499730 +The maximum resident set size (KB) = 803228 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 66.049871 -The maximum resident set size (KB) = 757632 +The total amount of wall time = 67.164080 +The maximum resident set size (KB) = 758444 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.902183 -The maximum resident set size (KB) = 586452 +The total amount of wall time = 346.180026 +The maximum resident set size (KB) = 582100 Test 072 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2926,14 +2926,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.864594 -The maximum resident set size (KB) = 583508 +The total amount of wall time = 342.665613 +The maximum resident set size (KB) = 582968 Test 073 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2944,26 +2944,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.265533 -The maximum resident set size (KB) = 548868 +The total amount of wall time = 181.041377 +The maximum resident set size (KB) = 547612 Test 074 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.253203 -The maximum resident set size (KB) = 270752 +The total amount of wall time = 117.211320 +The maximum resident set size (KB) = 271684 Test 075 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3010,14 +3010,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.888853 -The maximum resident set size (KB) = 1484128 +The total amount of wall time = 173.332285 +The maximum resident set size (KB) = 1484804 Test 076 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3028,56 +3028,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.744977 -The maximum resident set size (KB) = 654876 +The total amount of wall time = 279.710705 +The maximum resident set size (KB) = 655256 Test 077 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 915.062653 -The maximum resident set size (KB) = 825616 +The total amount of wall time = 914.958329 +The maximum resident set size (KB) = 823828 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 524.087229 -The maximum resident set size (KB) = 826572 +The total amount of wall time = 527.044834 +The maximum resident set size (KB) = 827536 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 809.769963 -The maximum resident set size (KB) = 806292 +The total amount of wall time = 807.833776 +The maximum resident set size (KB) = 805132 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3104,334 +3104,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.109421 -The maximum resident set size (KB) = 673832 +The total amount of wall time = 158.407891 +The maximum resident set size (KB) = 672244 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.856253 -The maximum resident set size (KB) = 674920 +The total amount of wall time = 159.045584 +The maximum resident set size (KB) = 673604 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.905705 -The maximum resident set size (KB) = 678500 +The total amount of wall time = 179.498776 +The maximum resident set size (KB) = 680308 Test 083 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.718006 -The maximum resident set size (KB) = 679040 +The total amount of wall time = 160.482226 +The maximum resident set size (KB) = 685060 Test 084 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.253791 -The maximum resident set size (KB) = 717248 +The total amount of wall time = 255.086397 +The maximum resident set size (KB) = 716044 Test 085 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.303680 -The maximum resident set size (KB) = 717644 +The total amount of wall time = 249.234783 +The maximum resident set size (KB) = 718668 Test 086 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.954244 -The maximum resident set size (KB) = 689616 +The total amount of wall time = 161.181065 +The maximum resident set size (KB) = 687884 Test 087 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.369906 -The maximum resident set size (KB) = 731788 +The total amount of wall time = 162.298793 +The maximum resident set size (KB) = 734668 Test 088 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.469523 -The maximum resident set size (KB) = 1500552 +The total amount of wall time = 185.025616 +The maximum resident set size (KB) = 1502004 Test 089 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1046.635780 -The maximum resident set size (KB) = 675304 +The total amount of wall time = 1044.948003 +The maximum resident set size (KB) = 673288 Test 090 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.917895 -The maximum resident set size (KB) = 1049984 +The total amount of wall time = 300.436440 +The maximum resident set size (KB) = 1051488 Test 091 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.616328 -The maximum resident set size (KB) = 1047464 +The total amount of wall time = 292.714908 +The maximum resident set size (KB) = 1049364 Test 092 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.751505 -The maximum resident set size (KB) = 1051468 +The total amount of wall time = 299.164924 +The maximum resident set size (KB) = 1052696 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.836618 -The maximum resident set size (KB) = 1133564 +The total amount of wall time = 308.319810 +The maximum resident set size (KB) = 1134268 Test 094 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.423919 -The maximum resident set size (KB) = 1051108 +The total amount of wall time = 304.514229 +The maximum resident set size (KB) = 1051200 Test 095 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.029633 -The maximum resident set size (KB) = 1052316 +The total amount of wall time = 303.920430 +The maximum resident set size (KB) = 1051016 Test 096 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.486649 -The maximum resident set size (KB) = 1051944 +The total amount of wall time = 300.552875 +The maximum resident set size (KB) = 1050516 Test 097 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.707585 -The maximum resident set size (KB) = 1050008 +The total amount of wall time = 297.098938 +The maximum resident set size (KB) = 1052628 Test 098 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.587535 -The maximum resident set size (KB) = 1052416 +The total amount of wall time = 298.247219 +The maximum resident set size (KB) = 1048592 Test 099 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.559267 -The maximum resident set size (KB) = 1051876 +The total amount of wall time = 293.100562 +The maximum resident set size (KB) = 1046260 Test 100 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.983615 -The maximum resident set size (KB) = 1053760 +The total amount of wall time = 298.368443 +The maximum resident set size (KB) = 1050976 Test 101 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.304830 -The maximum resident set size (KB) = 1048932 +The total amount of wall time = 488.159756 +The maximum resident set size (KB) = 1052528 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.221928 -The maximum resident set size (KB) = 1045828 +The total amount of wall time = 292.284380 +The maximum resident set size (KB) = 1046112 Test 103 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.232209 -The maximum resident set size (KB) = 302760 +The total amount of wall time = 296.277054 +The maximum resident set size (KB) = 299056 Test 104 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.666655 -The maximum resident set size (KB) = 883008 +The total amount of wall time = 231.757094 +The maximum resident set size (KB) = 878708 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 352.420588 -The maximum resident set size (KB) = 771452 +The total amount of wall time = 352.043171 +The maximum resident set size (KB) = 772360 Test 106 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 187.954750 -The maximum resident set size (KB) = 773916 +The total amount of wall time = 186.963977 +The maximum resident set size (KB) = 774084 Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.120899 -The maximum resident set size (KB) = 826116 +The total amount of wall time = 328.576386 +The maximum resident set size (KB) = 828660 Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 172.515178 -The maximum resident set size (KB) = 821844 +The total amount of wall time = 171.878221 +The maximum resident set size (KB) = 826784 Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 193.742061 -The maximum resident set size (KB) = 773076 +The total amount of wall time = 194.008348 +The maximum resident set size (KB) = 771816 Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,14 +3758,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 259.025458 -The maximum resident set size (KB) = 610496 +The total amount of wall time = 257.683723 +The maximum resident set size (KB) = 613972 Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3804,14 +3804,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 96.941551 -The maximum resident set size (KB) = 604264 +The total amount of wall time = 96.413932 +The maximum resident set size (KB) = 604336 Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3858,81 +3858,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 233.364580 -The maximum resident set size (KB) = 788556 +The total amount of wall time = 235.180562 +The maximum resident set size (KB) = 793688 Test 113 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.605131 -The maximum resident set size (KB) = 936364 +The total amount of wall time = 293.441295 +The maximum resident set size (KB) = 935524 Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.649718 -The maximum resident set size (KB) = 935296 +The total amount of wall time = 287.792674 +The maximum resident set size (KB) = 938172 Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.423911 -The maximum resident set size (KB) = 960556 +The total amount of wall time = 292.082353 +The maximum resident set size (KB) = 953204 Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 268.658631 -The maximum resident set size (KB) = 824140 +The total amount of wall time = 270.115105 +The maximum resident set size (KB) = 825684 Test 117 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 309.181997 -The maximum resident set size (KB) = 1183176 +The total amount of wall time = 313.085230 +The maximum resident set size (KB) = 1175724 Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3941,14 +3941,14 @@ Checking test 119 hafs_regional_atm_ocn 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 = 386.864804 -The maximum resident set size (KB) = 858088 +The total amount of wall time = 387.693127 +The maximum resident set size (KB) = 858284 Test 119 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3957,14 +3957,14 @@ Checking test 120 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 700.303669 -The maximum resident set size (KB) = 884796 +The total amount of wall time = 701.529293 +The maximum resident set size (KB) = 883988 Test 120 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3975,28 +3975,28 @@ Checking test 121 hafs_regional_atm_ocn_wav 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 = 887.773390 -The maximum resident set size (KB) = 911496 +The total amount of wall time = 904.871763 +The maximum resident set size (KB) = 914000 Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm 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 = 331.069670 -The maximum resident set size (KB) = 392992 +The total amount of wall time = 333.029548 +The maximum resident set size (KB) = 392492 Test 122 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4005,28 +4005,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.016994 -The maximum resident set size (KB) = 403300 +The total amount of wall time = 404.887674 +The maximum resident set size (KB) = 400760 Test 123 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm 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 = 171.677313 -The maximum resident set size (KB) = 263924 +The total amount of wall time = 171.342424 +The maximum resident set size (KB) = 268960 Test 124 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4044,14 +4044,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.845821 -The maximum resident set size (KB) = 345312 +The total amount of wall time = 490.328657 +The maximum resident set size (KB) = 344904 Test 125 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4060,28 +4060,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.635993 -The maximum resident set size (KB) = 405964 +The total amount of wall time = 217.769907 +The maximum resident set size (KB) = 405108 Test 126 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm 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 = 205.509154 -The maximum resident set size (KB) = 406048 +The total amount of wall time = 206.435489 +The maximum resident set size (KB) = 406156 Test 127 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4090,30 +4090,42 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 251.389001 -The maximum resident set size (KB) = 467008 +The total amount of wall time = 252.757236 +The maximum resident set size (KB) = 469328 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm 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.876152 -The maximum resident set size (KB) = 282176 +The total amount of wall time = 84.877538 +The maximum resident set size (KB) = 277536 Test 129 hafs_global_storm_following_1nest_atm PASS -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug FAIL + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + +The total amount of wall time = 804.051280 +The maximum resident set size (KB) = 488372 + +Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4124,14 +4136,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 502.336093 -The maximum resident set size (KB) = 528272 +The total amount of wall time = 501.620933 +The maximum resident set size (KB) = 522196 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4139,14 +4151,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.290017 -The maximum resident set size (KB) = 862588 +The total amount of wall time = 368.600146 +The maximum resident set size (KB) = 861524 Test 132 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4154,131 +4166,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.512790 -The maximum resident set size (KB) = 847332 +The total amount of wall time = 369.860078 +The maximum resident set size (KB) = 847960 Test 133 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.598383 -The maximum resident set size (KB) = 834988 +The total amount of wall time = 947.106246 +The maximum resident set size (KB) = 833556 Test 134 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.673759 -The maximum resident set size (KB) = 734820 +The total amount of wall time = 140.666616 +The maximum resident set size (KB) = 732108 Test 135 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.436396 -The maximum resident set size (KB) = 730196 +The total amount of wall time = 86.019297 +The maximum resident set size (KB) = 728436 Test 136 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.837671 -The maximum resident set size (KB) = 612600 +The total amount of wall time = 133.766182 +The maximum resident set size (KB) = 612892 Test 137 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.415523 -The maximum resident set size (KB) = 615460 +The total amount of wall time = 135.660432 +The maximum resident set size (KB) = 611276 Test 138 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.574166 -The maximum resident set size (KB) = 613884 +The total amount of wall time = 136.805751 +The maximum resident set size (KB) = 615576 Test 139 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.182551 -The maximum resident set size (KB) = 733924 +The total amount of wall time = 140.957978 +The maximum resident set size (KB) = 733384 Test 140 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.379622 -The maximum resident set size (KB) = 732656 +The total amount of wall time = 141.875323 +The maximum resident set size (KB) = 732476 Test 141 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.667118 -The maximum resident set size (KB) = 616340 +The total amount of wall time = 132.955777 +The maximum resident set size (KB) = 620428 Test 142 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4287,14 +4299,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.616620 -The maximum resident set size (KB) = 571772 +The total amount of wall time = 428.530056 +The maximum resident set size (KB) = 570824 Test 143 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4303,64 +4315,64 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 424.733943 -The maximum resident set size (KB) = 553988 +The total amount of wall time = 426.819736 +The maximum resident set size (KB) = 553144 Test 144 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.723685 -The maximum resident set size (KB) = 733272 +The total amount of wall time = 140.881794 +The maximum resident set size (KB) = 734144 Test 145 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 256.504764 -The maximum resident set size (KB) = 1980956 +The total amount of wall time = 256.993785 +The maximum resident set size (KB) = 1981204 Test 146 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 255.454958 -The maximum resident set size (KB) = 1977180 +The total amount of wall time = 256.582588 +The maximum resident set size (KB) = 1979332 Test 147 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr_faster Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.023668 -The maximum resident set size (KB) = 733396 +The total amount of wall time = 141.095571 +The maximum resident set size (KB) = 731608 Test 148 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3 Checking test 149 datm_cdeps_lnd_gswp3 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 @@ -4369,14 +4381,14 @@ Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 21.827151 -The maximum resident set size (KB) = 230432 +The total amount of wall time = 22.096349 +The maximum resident set size (KB) = 227292 Test 149 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3_rst Checking test 150 datm_cdeps_lnd_gswp3_rst 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 @@ -4385,14 +4397,14 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 27.202287 -The maximum resident set size (KB) = 228352 +The total amount of wall time = 26.982569 +The maximum resident set size (KB) = 229492 Test 150 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_atmlnd_sbs Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4477,14 +4489,14 @@ Checking test 151 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 234.656625 -The maximum resident set size (KB) = 1534332 +The total amount of wall time = 236.289314 +The maximum resident set size (KB) = 1536408 Test 151 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmwav_control_noaero_p8 Checking test 152 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4527,14 +4539,14 @@ Checking test 152 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 108.702077 -The maximum resident set size (KB) = 1528172 +The total amount of wall time = 110.290917 +The maximum resident set size (KB) = 1530272 Test 152 atmwav_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_atmwav Checking test 153 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4578,14 +4590,14 @@ Checking test 153 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.920065 -The maximum resident set size (KB) = 541068 +The total amount of wall time = 92.120639 +The maximum resident set size (KB) = 541620 Test 153 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8 Checking test 154 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4629,14 +4641,14 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.113354 -The maximum resident set size (KB) = 2815712 +The total amount of wall time = 243.632715 +The maximum resident set size (KB) = 2812396 Test 154 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad Checking test 155 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4680,14 +4692,14 @@ Checking test 155 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 282.810567 -The maximum resident set size (KB) = 2876784 +The total amount of wall time = 282.829081 +The maximum resident set size (KB) = 2878356 Test 155 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad_micro Checking test 156 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4731,14 +4743,14 @@ Checking test 156 atmaero_control_p8_rad_micro results .... 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.075754 -The maximum resident set size (KB) = 2884388 +The total amount of wall time = 287.878626 +The maximum resident set size (KB) = 2885196 Test 156 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq Checking test 157 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4754,16 +4766,35 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 677.943814 -The maximum resident set size (KB) = 1256784 +The total amount of wall time = 682.977333 +The maximum resident set size (KB) = 1257296 Test 157 regional_atmaq PASS -Test 158 regional_atmaq_debug FAIL + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_debug +Checking test 158 regional_atmaq_debug 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 = 1307.193464 +The maximum resident set size (KB) = 1291952 + +Test 158 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_faster Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4779,59 +4810,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 635.493432 -The maximum resident set size (KB) = 1258428 +The total amount of wall time = 632.615419 +The maximum resident set size (KB) = 1255852 Test 159 regional_atmaq_faster PASS -FAILED TESTS: -Test hafs_regional_storm_following_1nest_atm_ocn_debug 130 failed in run_test failed -Test regional_atmaq_debug 158 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 19 22:22:23 UTC 2023 -Elapsed time: 02h:47m:22s. Have a nice day! -Thu Apr 20 12:28:42 UTC 2023 -Start Regression test - -Compile 001 elapsed time 173 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 158 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_132784/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -The total amount of wall time = 801.538137 -The maximum resident set size (KB) = 487692 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_debug PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_132784/regional_atmaq_debug -Checking test 002 regional_atmaq_debug 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 = 1301.091721 -The maximum resident set size (KB) = 1292664 - -Test 002 regional_atmaq_debug PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Apr 20 13:10:50 UTC 2023 -Elapsed time: 00h:42m:09s. Have a nice day! +Fri Apr 21 19:55:36 UTC 2023 +Elapsed time: 01h:30m:13s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index ba6dbda628..6a0f0580cc 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 18 21:56:13 MDT 2023 +Fri Apr 21 11:14:13 MDT 2023 Start Regression test -Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 882 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1125 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 881 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 880 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 868 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1112 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 863 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 868 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_c48 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 823.628697 -0:The maximum resident set size (KB) = 679820 +0:The total amount of wall time = 820.092534 +0:The maximum resident set size (KB) = 679748 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_stochy +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.086943 -0:The maximum resident set size (KB) = 443384 +0:The total amount of wall time = 178.243191 +0:The maximum resident set size (KB) = 443848 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_ras +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.942304 -0:The maximum resident set size (KB) = 452396 +0:The total amount of wall time = 295.479192 +0:The maximum resident set size (KB) = 452736 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.451227 -0:The maximum resident set size (KB) = 1225040 +0:The total amount of wall time = 310.005003 +0:The maximum resident set size (KB) = 1226792 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.283670 -0:The maximum resident set size (KB) = 791820 +0:The total amount of wall time = 716.233417 +0:The maximum resident set size (KB) = 792492 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_decomp +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 720.003905 -0:The maximum resident set size (KB) = 791508 +0:The total amount of wall time = 721.043888 +0:The maximum resident set size (KB) = 791908 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 656.320166 -0:The maximum resident set size (KB) = 866180 +0:The total amount of wall time = 662.309640 +0:The maximum resident set size (KB) = 866600 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_restart +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.994349 -0:The maximum resident set size (KB) = 539128 +0:The total amount of wall time = 356.198531 +0:The maximum resident set size (KB) = 539240 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.767104 -0:The maximum resident set size (KB) = 791884 +0:The total amount of wall time = 716.151679 +0:The maximum resident set size (KB) = 792264 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.293406 -0:The maximum resident set size (KB) = 791340 +0:The total amount of wall time = 727.586043 +0:The maximum resident set size (KB) = 791596 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 528.427451 -0:The maximum resident set size (KB) = 544260 +0:The total amount of wall time = 530.907873 +0:The maximum resident set size (KB) = 545684 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.538706 -0:The maximum resident set size (KB) = 789124 +0:The total amount of wall time = 692.983137 +0:The maximum resident set size (KB) = 789436 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 629.031978 -0:The maximum resident set size (KB) = 860468 +0:The total amount of wall time = 624.735590 +0:The maximum resident set size (KB) = 860296 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 691.947893 -0:The maximum resident set size (KB) = 788828 +0:The total amount of wall time = 693.018683 +0:The maximum resident set size (KB) = 789768 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.192687 -0:The maximum resident set size (KB) = 540376 +0:The total amount of wall time = 512.158958 +0:The maximum resident set size (KB) = 540528 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.742245 -0:The maximum resident set size (KB) = 788796 +0:The total amount of wall time = 706.611951 +0:The maximum resident set size (KB) = 789268 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.717077 -0:The maximum resident set size (KB) = 636600 +0:The total amount of wall time = 232.174520 +0:The maximum resident set size (KB) = 636528 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 147.619665 -0:The maximum resident set size (KB) = 655708 +0:The total amount of wall time = 146.345291 +0:The maximum resident set size (KB) = 655004 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.310793 -0:The maximum resident set size (KB) = 615816 +0:The total amount of wall time = 212.502976 +0:The maximum resident set size (KB) = 615824 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.399056 -0:The maximum resident set size (KB) = 639340 +0:The total amount of wall time = 232.774128 +0:The maximum resident set size (KB) = 639292 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 111.140208 -0:The maximum resident set size (KB) = 596568 +0:The total amount of wall time = 110.782794 +0:The maximum resident set size (KB) = 596436 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.327558 -0:The maximum resident set size (KB) = 491708 +0:The total amount of wall time = 82.945457 +0:The maximum resident set size (KB) = 491476 Test 022 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/regional_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 473.939334 -0:The maximum resident set size (KB) = 567704 +0:The total amount of wall time = 483.827196 +0:The maximum resident set size (KB) = 567124 Test 023 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.591603 -0:The maximum resident set size (KB) = 805700 +0:The total amount of wall time = 147.918625 +0:The maximum resident set size (KB) = 805616 Test 024 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.608939 -0:The maximum resident set size (KB) = 801356 +0:The total amount of wall time = 144.367559 +0:The maximum resident set size (KB) = 802076 Test 025 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.367075 -0:The maximum resident set size (KB) = 888320 +0:The total amount of wall time = 154.105330 +0:The maximum resident set size (KB) = 888316 Test 026 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 233.429552 -0:The maximum resident set size (KB) = 804232 +0:The total amount of wall time = 237.365950 +0:The maximum resident set size (KB) = 804068 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.203191 -0:The maximum resident set size (KB) = 805740 +0:The total amount of wall time = 146.876353 +0:The maximum resident set size (KB) = 805352 Test 028 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug 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.633308 -0:The maximum resident set size (KB) = 801260 +0:The total amount of wall time = 145.482124 +0:The maximum resident set size (KB) = 801304 Test 029 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.237908 -0:The maximum resident set size (KB) = 445948 +0:The total amount of wall time = 81.573920 +0:The maximum resident set size (KB) = 446656 Test 030 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.006316 -0:The maximum resident set size (KB) = 438784 +0:The total amount of wall time = 89.961958 +0:The maximum resident set size (KB) = 438112 Test 031 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.213747 -0:The maximum resident set size (KB) = 1221440 +0:The total amount of wall time = 91.862405 +0:The maximum resident set size (KB) = 1221280 Test 032 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 434.138020 -0:The maximum resident set size (KB) = 641740 +0:The total amount of wall time = 440.514734 +0:The maximum resident set size (KB) = 641444 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 254.941951 -0:The maximum resident set size (KB) = 660864 +0:The total amount of wall time = 258.466829 +0:The maximum resident set size (KB) = 665592 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 395.201830 -0:The maximum resident set size (KB) = 620064 +0:The total amount of wall time = 400.157967 +0:The maximum resident set size (KB) = 619848 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 143.260593 -0:The maximum resident set size (KB) = 182384 +0:The total amount of wall time = 140.125540 +0:The maximum resident set size (KB) = 183548 Test 036 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.794831 -0:The maximum resident set size (KB) = 672152 +0:The total amount of wall time = 703.789376 +0:The maximum resident set size (KB) = 673768 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 357.526055 -0:The maximum resident set size (KB) = 671932 +0:The total amount of wall time = 355.350362 +0:The maximum resident set size (KB) = 671136 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 644.567909 -0:The maximum resident set size (KB) = 720212 +0:The total amount of wall time = 645.572568 +0:The maximum resident set size (KB) = 720236 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 323.489347 -0:The maximum resident set size (KB) = 716660 +0:The total amount of wall time = 322.783525 +0:The maximum resident set size (KB) = 717272 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 355.430054 -0:The maximum resident set size (KB) = 669900 +0:The total amount of wall time = 356.104222 +0:The maximum resident set size (KB) = 670224 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 526.748176 -0:The maximum resident set size (KB) = 511516 +0:The total amount of wall time = 522.334314 +0:The maximum resident set size (KB) = 512064 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 181.416017 -0:The maximum resident set size (KB) = 507520 +0:The total amount of wall time = 180.613272 +0:The maximum resident set size (KB) = 507152 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 414.480487 -0:The maximum resident set size (KB) = 693368 +0:The total amount of wall time = 406.288061 +0:The maximum resident set size (KB) = 693588 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 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.793225 -0:The maximum resident set size (KB) = 688024 +0:The total amount of wall time = 144.064213 +0:The maximum resident set size (KB) = 687732 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.073553 -0:The maximum resident set size (KB) = 683884 +0:The total amount of wall time = 143.497782 +0:The maximum resident set size (KB) = 683920 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug 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.148992 -0:The maximum resident set size (KB) = 707780 +0:The total amount of wall time = 152.771584 +0:The maximum resident set size (KB) = 707604 Test 047 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.422889 -0:The maximum resident set size (KB) = 3159044 +0:The total amount of wall time = 500.863330 +0:The maximum resident set size (KB) = 3158608 Test 048 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 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 = 250.410855 -0:The maximum resident set size (KB) = 1241772 +0:The total amount of wall time = 251.132624 +0:The maximum resident set size (KB) = 1240572 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.990971 -0:The maximum resident set size (KB) = 3172664 +0:The total amount of wall time = 201.087755 +0:The maximum resident set size (KB) = 3172904 Test 050 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.205289 -0:The maximum resident set size (KB) = 670008 +0:The total amount of wall time = 173.972822 +0:The maximum resident set size (KB) = 673660 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 18 22:31:15 MDT 2023 -Elapsed time: 00h:35m:03s. Have a nice day! +Fri Apr 21 11:49:28 MDT 2023 +Elapsed time: 00h:35m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 23b0456056..7b27868dd6 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,14094 +1,43 @@ -+ echo PID=4042 -PID=4042 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ MAKE_OPT='-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ export COMPILE_NR=001 -+ COMPILE_NR=001 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_001' -Removing test failure flag file for compile_001 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_001 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001.env -++ export JOB_NR=001 -++ JOB_NR=001 -++ export COMPILE_NR=001 -++ COMPILE_NR=001 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=001 -+ TEST_NR=001 -+ export JBNME=compile_001 -+ JBNME=compile_001 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -++ date +%s -+ echo -n 'compile_001, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506856 -TEST 001 compile is waiting to enter the queue -TEST 001 compile is submitted -1 min. TEST 001 compile is waiting in a queue, status: Q jobid 9506856 -2 min. TEST 001 compile is running, status: R jobid 9506856 -3 min. TEST 001 compile is running, status: R jobid 9506856 -4 min. TEST 001 compile is running, status: R jobid 9506856 -5 min. TEST 001 compile is running, status: R jobid 9506856 -6 min. TEST 001 compile is running, status: R jobid 9506856 -7 min. TEST 001 compile is running, status: R jobid 9506856 -8 min. TEST 001 compile is running, status: R jobid 9506856 -9 min. TEST 001 compile is running, status: R jobid 9506856 -10 min. TEST 001 compile is running, status: R jobid 9506856 -11 min. TEST 001 compile is running, status: R jobid 9506856 -12 min. TEST 001 compile is running, status: R jobid 9506856 -13 min. TEST 001 compile is running, status: R jobid 9506856 -14 min. TEST 001 compile is running, status: R jobid 9506856 -15 min. TEST 001 compile is running, status: R jobid 9506856 -16 min. TEST 001 compile is running, status: R jobid 9506856 -17 min. TEST 001 compile is running, status: R jobid 9506856 -18 min. TEST 001 compile is running, status: R jobid 9506856 -19 min. TEST 001 compile is running, status: R jobid 9506856 -20 min. TEST 001 compile is running, status: R jobid 9506856 -21 min. TEST 001 compile is running, status: R jobid 9506856 -22 min. TEST 001 compile is running, status: R jobid 9506856 -23 min. TEST 001 compile is running, status: R jobid 9506856 -24 min. TEST 001 compile is running, status: R jobid 9506856 -25 min. TEST 001 compile is running, status: R jobid 9506856 -26 min. TEST 001 compile is running, status: R jobid 9506856 -qstat: 9506856.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506856.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -27 min. TEST 001 compile is finished, status: - jobid 9506856 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_001.exe --rwxr-xr-x 1 jongkim ncar 451703056 Apr 19 15:42 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_001.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001/compile_001_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_001' -Removing test failure flag file for compile_001 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_001 -++ date +%s -+ echo ' 1681919022, 1' -+ elapsed=1604 -+ echo 'Elapsed time 1604 seconds. Compile 001' -Elapsed time 1604 seconds. Compile 001 -+ '[' 0 -eq 0 ']' -Compile 001 elapsed time 1524 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4054 -PID=4054 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ MAKE_OPT='-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ export COMPILE_NR=002 -+ COMPILE_NR=002 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_002' -Removing test failure flag file for compile_002 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_002 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002.env -++ export JOB_NR=003 -++ JOB_NR=003 -++ export COMPILE_NR=002 -++ COMPILE_NR=002 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=002 -+ TEST_NR=002 -+ export JBNME=compile_002 -+ JBNME=compile_002 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -++ date +%s -+ echo -n 'compile_002, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506857 -TEST 002 compile is waiting to enter the queue -TEST 002 compile is submitted -1 min. TEST 002 compile is waiting in a queue, status: Q jobid 9506857 -2 min. TEST 002 compile is running, status: R jobid 9506857 -3 min. TEST 002 compile is running, status: R jobid 9506857 -4 min. TEST 002 compile is running, status: R jobid 9506857 -5 min. TEST 002 compile is running, status: R jobid 9506857 -6 min. TEST 002 compile is running, status: R jobid 9506857 -7 min. TEST 002 compile is running, status: R jobid 9506857 -8 min. TEST 002 compile is running, status: R jobid 9506857 -9 min. TEST 002 compile is running, status: R jobid 9506857 -10 min. TEST 002 compile is running, status: R jobid 9506857 -11 min. TEST 002 compile is running, status: R jobid 9506857 -12 min. TEST 002 compile is running, status: R jobid 9506857 -13 min. TEST 002 compile is running, status: R jobid 9506857 -14 min. TEST 002 compile is running, status: R jobid 9506857 -15 min. TEST 002 compile is running, status: R jobid 9506857 -16 min. TEST 002 compile is running, status: R jobid 9506857 -17 min. TEST 002 compile is running, status: R jobid 9506857 -18 min. TEST 002 compile is running, status: R jobid 9506857 -19 min. TEST 002 compile is running, status: R jobid 9506857 -20 min. TEST 002 compile is running, status: R jobid 9506857 -21 min. TEST 002 compile is running, status: R jobid 9506857 -22 min. TEST 002 compile is running, status: R jobid 9506857 -23 min. TEST 002 compile is running, status: R jobid 9506857 -24 min. TEST 002 compile is running, status: R jobid 9506857 -25 min. TEST 002 compile is finished, status: E jobid 9506857 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_002.exe --rwxr-xr-x 1 jongkim ncar 451833816 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_002.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002/compile_002_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_002' -Removing test failure flag file for compile_002 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_002 -++ date +%s -+ echo ' 1681918902, 1' -+ elapsed=1484 -+ echo 'Elapsed time 1484 seconds. Compile 002' -Elapsed time 1484 seconds. Compile 002 -+ '[' 0 -eq 0 ']' -Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4049 -PID=4049 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ MAKE_OPT='-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ export COMPILE_NR=003 -+ COMPILE_NR=003 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_003' -Removing test failure flag file for compile_003 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_003 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003.env -++ export JOB_NR=017 -++ JOB_NR=017 -++ export COMPILE_NR=003 -++ COMPILE_NR=003 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=003 -+ TEST_NR=003 -+ export JBNME=compile_003 -+ JBNME=compile_003 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -++ date +%s -+ echo -n 'compile_003, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506858 -TEST 003 compile is waiting to enter the queue -TEST 003 compile is submitted -1 min. TEST 003 compile is waiting in a queue, status: Q jobid 9506858 -2 min. TEST 003 compile is running, status: R jobid 9506858 -3 min. TEST 003 compile is running, status: R jobid 9506858 -4 min. TEST 003 compile is running, status: R jobid 9506858 -5 min. TEST 003 compile is running, status: R jobid 9506858 -6 min. TEST 003 compile is running, status: R jobid 9506858 -7 min. TEST 003 compile is running, status: R jobid 9506858 -8 min. TEST 003 compile is running, status: R jobid 9506858 -9 min. TEST 003 compile is running, status: R jobid 9506858 -10 min. TEST 003 compile is running, status: R jobid 9506858 -11 min. TEST 003 compile is running, status: R jobid 9506858 -12 min. TEST 003 compile is running, status: R jobid 9506858 -13 min. TEST 003 compile is running, status: R jobid 9506858 -14 min. TEST 003 compile is running, status: R jobid 9506858 -15 min. TEST 003 compile is running, status: R jobid 9506858 -16 min. TEST 003 compile is running, status: R jobid 9506858 -17 min. TEST 003 compile is running, status: R jobid 9506858 -18 min. TEST 003 compile is running, status: R jobid 9506858 -19 min. TEST 003 compile is running, status: R jobid 9506858 -20 min. TEST 003 compile is running, status: R jobid 9506858 -21 min. TEST 003 compile is running, status: R jobid 9506858 -22 min. TEST 003 compile is running, status: R jobid 9506858 -23 min. TEST 003 compile is running, status: R jobid 9506858 -24 min. TEST 003 compile is running, status: R jobid 9506858 -qstat: 9506858.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506858.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -25 min. TEST 003 compile is finished, status: - jobid 9506858 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_003.exe --rwxr-xr-x 1 jongkim ncar 359887088 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_003.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003/compile_003_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_003' -Removing test failure flag file for compile_003 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_003 -++ date +%s -+ echo ' 1681918902, 1' -+ elapsed=1484 -+ echo 'Elapsed time 1484 seconds. Compile 003' -Elapsed time 1484 seconds. Compile 003 -+ '[' 0 -eq 0 ']' -Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4055 -PID=4055 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ MAKE_OPT='-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ export COMPILE_NR=004 -+ COMPILE_NR=004 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_004' -Removing test failure flag file for compile_004 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_004 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004.env -++ export JOB_NR=020 -++ JOB_NR=020 -++ export COMPILE_NR=004 -++ COMPILE_NR=004 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=004 -+ TEST_NR=004 -+ export JBNME=compile_004 -+ JBNME=compile_004 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -++ date +%s -+ echo -n 'compile_004, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506861 -TEST 004 compile is waiting to enter the queue -TEST 004 compile is submitted -1 min. TEST 004 compile is waiting in a queue, status: Q jobid 9506861 -2 min. TEST 004 compile is running, status: R jobid 9506861 -3 min. TEST 004 compile is running, status: R jobid 9506861 -4 min. TEST 004 compile is running, status: R jobid 9506861 -5 min. TEST 004 compile is running, status: R jobid 9506861 -6 min. TEST 004 compile is running, status: R jobid 9506861 -7 min. TEST 004 compile is running, status: R jobid 9506861 -8 min. TEST 004 compile is running, status: R jobid 9506861 -9 min. TEST 004 compile is running, status: R jobid 9506861 -qstat: 9506861.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506861.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -10 min. TEST 004 compile is finished, status: - jobid 9506861 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_004.exe --rwxr-xr-x 1 jongkim ncar 902869984 Apr 19 15:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_004.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004/compile_004_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_004' -Removing test failure flag file for compile_004 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_004 -++ date +%s -+ echo ' 1681917981, 1' -+ elapsed=563 -+ echo 'Elapsed time 563 seconds. Compile 004' -Elapsed time 563 seconds. Compile 004 -+ '[' 0 -eq 0 ']' -Compile 004 elapsed time 478 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -+ echo PID=4065 -PID=4065 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ MAKE_OPT='-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ export COMPILE_NR=005 -+ COMPILE_NR=005 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_005' -Removing test failure flag file for compile_005 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_005 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005.env -++ export JOB_NR=022 -++ JOB_NR=022 -++ export COMPILE_NR=005 -++ COMPILE_NR=005 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=005 -+ TEST_NR=005 -+ export JBNME=compile_005 -+ JBNME=compile_005 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -++ date +%s -+ echo -n 'compile_005, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506860 -TEST 005 compile is waiting to enter the queue -TEST 005 compile is submitted -1 min. TEST 005 compile is waiting in a queue, status: Q jobid 9506860 -2 min. TEST 005 compile is running, status: R jobid 9506860 -3 min. TEST 005 compile is running, status: R jobid 9506860 -4 min. TEST 005 compile is running, status: R jobid 9506860 -5 min. TEST 005 compile is running, status: R jobid 9506860 -6 min. TEST 005 compile is running, status: R jobid 9506860 -7 min. TEST 005 compile is running, status: R jobid 9506860 -8 min. TEST 005 compile is running, status: R jobid 9506860 -qstat: 9506860.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506860.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -9 min. TEST 005 compile is finished, status: - jobid 9506860 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_005.exe --rwxr-xr-x 1 jongkim ncar 770195432 Apr 19 15:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_005.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005/compile_005_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_005' -Removing test failure flag file for compile_005 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_005 -++ date +%s -+ echo ' 1681917920, 1' -+ elapsed=502 -+ echo 'Elapsed time 502 seconds. Compile 005' -Elapsed time 502 seconds. Compile 005 -+ '[' 0 -eq 0 ']' -Compile 005 elapsed time 422 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -+ echo PID=4072 -PID=4072 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' -+ MAKE_OPT='-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' -+ export COMPILE_NR=006 -+ COMPILE_NR=006 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_006' -Removing test failure flag file for compile_006 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_006 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006.env -++ export JOB_NR=024 -++ JOB_NR=024 -++ export COMPILE_NR=006 -++ COMPILE_NR=006 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=006 -+ TEST_NR=006 -+ export JBNME=compile_006 -+ JBNME=compile_006 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -++ date +%s -+ echo -n 'compile_006, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506866 -TEST 006 compile is waiting to enter the queue -TEST 006 compile is submitted -1 min. TEST 006 compile is waiting in a queue, status: Q jobid 9506866 -2 min. TEST 006 compile is waiting in a queue, status: Q jobid 9506866 -3 min. TEST 006 compile is running, status: R jobid 9506866 -4 min. TEST 006 compile is running, status: R jobid 9506866 -5 min. TEST 006 compile is running, status: R jobid 9506866 -6 min. TEST 006 compile is running, status: R jobid 9506866 -7 min. TEST 006 compile is running, status: R jobid 9506866 -8 min. TEST 006 compile is running, status: R jobid 9506866 -9 min. TEST 006 compile is running, status: R jobid 9506866 -10 min. TEST 006 compile is running, status: R jobid 9506866 -11 min. TEST 006 compile is running, status: R jobid 9506866 -12 min. TEST 006 compile is running, status: R jobid 9506866 -13 min. TEST 006 compile is running, status: R jobid 9506866 -14 min. TEST 006 compile is running, status: R jobid 9506866 -15 min. TEST 006 compile is running, status: R jobid 9506866 -16 min. TEST 006 compile is running, status: R jobid 9506866 -17 min. TEST 006 compile is running, status: R jobid 9506866 -18 min. TEST 006 compile is running, status: R jobid 9506866 -19 min. TEST 006 compile is running, status: R jobid 9506866 -20 min. TEST 006 compile is running, status: R jobid 9506866 -qstat: 9506866.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506866.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 006 compile is finished, status: - jobid 9506866 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_006.exe --rwxr-xr-x 1 jongkim ncar 353279504 Apr 19 15:37 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_006.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006/compile_006_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_006' -Removing test failure flag file for compile_006 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_006 -++ date +%s -+ echo ' 1681918652, 1' -+ elapsed=1234 -+ echo 'Elapsed time 1234 seconds. Compile 006' -Elapsed time 1234 seconds. Compile 006 -+ '[' 0 -eq 0 ']' -Compile 006 elapsed time 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4070 -PID=4070 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ MAKE_OPT='-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ export COMPILE_NR=007 -+ COMPILE_NR=007 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_007' -Removing test failure flag file for compile_007 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_007 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007.env -++ export JOB_NR=026 -++ JOB_NR=026 -++ export COMPILE_NR=007 -++ COMPILE_NR=007 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=007 -+ TEST_NR=007 -+ export JBNME=compile_007 -+ JBNME=compile_007 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -++ date +%s -+ echo -n 'compile_007, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506859 -TEST 007 compile is waiting to enter the queue -TEST 007 compile is submitted -1 min. TEST 007 compile is waiting in a queue, status: Q jobid 9506859 -2 min. TEST 007 compile is running, status: R jobid 9506859 -3 min. TEST 007 compile is running, status: R jobid 9506859 -4 min. TEST 007 compile is running, status: R jobid 9506859 -5 min. TEST 007 compile is running, status: R jobid 9506859 -6 min. TEST 007 compile is running, status: R jobid 9506859 -7 min. TEST 007 compile is running, status: R jobid 9506859 -8 min. TEST 007 compile is running, status: R jobid 9506859 -9 min. TEST 007 compile is running, status: R jobid 9506859 -10 min. TEST 007 compile is running, status: R jobid 9506859 -11 min. TEST 007 compile is running, status: R jobid 9506859 -12 min. TEST 007 compile is running, status: R jobid 9506859 -13 min. TEST 007 compile is running, status: R jobid 9506859 -14 min. TEST 007 compile is running, status: R jobid 9506859 -15 min. TEST 007 compile is running, status: R jobid 9506859 -16 min. TEST 007 compile is running, status: R jobid 9506859 -17 min. TEST 007 compile is running, status: R jobid 9506859 -18 min. TEST 007 compile is running, status: R jobid 9506859 -19 min. TEST 007 compile is running, status: R jobid 9506859 -qstat: 9506859.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506859.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -20 min. TEST 007 compile is finished, status: - jobid 9506859 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_007.exe --rwxr-xr-x 1 jongkim ncar 352887752 Apr 19 15:36 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_007.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007/compile_007_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_007' -Removing test failure flag file for compile_007 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_007 -++ date +%s -+ echo ' 1681918592, 1' -+ elapsed=1174 -+ echo 'Elapsed time 1174 seconds. Compile 007' -Elapsed time 1174 seconds. Compile 007 -+ '[' 0 -eq 0 ']' -Compile 007 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=20480 -PID=20480 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON' -+ MAKE_OPT='-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON' -+ export COMPILE_NR=008 -+ COMPILE_NR=008 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_008' -Removing test failure flag file for compile_008 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_008 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008.env -++ export JOB_NR=030 -++ JOB_NR=030 -++ export COMPILE_NR=008 -++ COMPILE_NR=008 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=008 -+ TEST_NR=008 -+ export JBNME=compile_008 -+ JBNME=compile_008 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -++ date +%s -+ echo -n 'compile_008, 1681919326,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507118 -TEST 008 compile is waiting to enter the queue -TEST 008 compile is submitted -1 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 -2 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 -3 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 -4 min. TEST 008 compile is running, status: R jobid 9507118 -5 min. TEST 008 compile is running, status: R jobid 9507118 -6 min. TEST 008 compile is running, status: R jobid 9507118 -7 min. TEST 008 compile is running, status: R jobid 9507118 -8 min. TEST 008 compile is running, status: R jobid 9507118 -9 min. TEST 008 compile is running, status: R jobid 9507118 -10 min. TEST 008 compile is running, status: R jobid 9507118 -11 min. TEST 008 compile is running, status: R jobid 9507118 -12 min. TEST 008 compile is running, status: R jobid 9507118 -13 min. TEST 008 compile is running, status: R jobid 9507118 -14 min. TEST 008 compile is running, status: R jobid 9507118 -15 min. TEST 008 compile is running, status: R jobid 9507118 -16 min. TEST 008 compile is running, status: R jobid 9507118 -17 min. TEST 008 compile is running, status: R jobid 9507118 -18 min. TEST 008 compile is running, status: R jobid 9507118 -19 min. TEST 008 compile is running, status: R jobid 9507118 -20 min. TEST 008 compile is running, status: R jobid 9507118 -21 min. TEST 008 compile is running, status: R jobid 9507118 -22 min. TEST 008 compile is running, status: R jobid 9507118 -23 min. TEST 008 compile is running, status: R jobid 9507118 -24 min. TEST 008 compile is running, status: R jobid 9507118 -25 min. TEST 008 compile is running, status: R jobid 9507118 -26 min. TEST 008 compile is running, status: R jobid 9507118 -27 min. TEST 008 compile is running, status: R jobid 9507118 -28 min. TEST 008 compile is running, status: R jobid 9507118 -29 min. TEST 008 compile is running, status: R jobid 9507118 -30 min. TEST 008 compile is running, status: R jobid 9507118 -31 min. TEST 008 compile is running, status: R jobid 9507118 -32 min. TEST 008 compile is running, status: R jobid 9507118 -33 min. TEST 008 compile is running, status: R jobid 9507118 -qstat: 9507118.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507118.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -34 min. TEST 008 compile is finished, status: - jobid 9507118 - - -Test 008 compile FAIL -+ echo PID=4073 -PID=4073 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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' -+ export COMPILE_NR=009 -+ COMPILE_NR=009 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_009' -Removing test failure flag file for compile_009 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_009 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009.env -++ export JOB_NR=032 -++ JOB_NR=032 -++ export COMPILE_NR=009 -++ COMPILE_NR=009 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=009 -+ TEST_NR=009 -+ export JBNME=compile_009 -+ JBNME=compile_009 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -++ date +%s -+ echo -n 'compile_009, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506864 -TEST 009 compile is waiting to enter the queue -TEST 009 compile is submitted -1 min. TEST 009 compile is waiting in a queue, status: Q jobid 9506864 -2 min. TEST 009 compile is waiting in a queue, status: Q jobid 9506864 -3 min. TEST 009 compile is running, status: R jobid 9506864 -4 min. TEST 009 compile is running, status: R jobid 9506864 -5 min. TEST 009 compile is running, status: R jobid 9506864 -6 min. TEST 009 compile is running, status: R jobid 9506864 -7 min. TEST 009 compile is running, status: R jobid 9506864 -8 min. TEST 009 compile is running, status: R jobid 9506864 -9 min. TEST 009 compile is running, status: R jobid 9506864 -10 min. TEST 009 compile is running, status: R jobid 9506864 -11 min. TEST 009 compile is running, status: R jobid 9506864 -12 min. TEST 009 compile is running, status: R jobid 9506864 -13 min. TEST 009 compile is running, status: R jobid 9506864 -14 min. TEST 009 compile is running, status: R jobid 9506864 -15 min. TEST 009 compile is running, status: R jobid 9506864 -16 min. TEST 009 compile is running, status: R jobid 9506864 -17 min. TEST 009 compile is running, status: R jobid 9506864 -18 min. TEST 009 compile is running, status: R jobid 9506864 -19 min. TEST 009 compile is running, status: R jobid 9506864 -20 min. TEST 009 compile is finished, status: E jobid 9506864 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_009.exe --rwxr-xr-x 1 jongkim ncar 285380352 Apr 19 15:36 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_009.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009/compile_009_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_009' -Removing test failure flag file for compile_009 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_009 -++ date +%s -+ echo ' 1681918592, 1' -+ elapsed=1174 -+ echo 'Elapsed time 1174 seconds. Compile 009' -Elapsed time 1174 seconds. Compile 009 -+ '[' 0 -eq 0 ']' -Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 -+ echo PID=4067 -PID=4067 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' -+ export COMPILE_NR=010 -+ COMPILE_NR=010 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_010' -Removing test failure flag file for compile_010 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_010 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010.env -++ export JOB_NR=070 -++ JOB_NR=070 -++ export COMPILE_NR=010 -++ COMPILE_NR=010 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=010 -+ TEST_NR=010 -+ export JBNME=compile_010 -+ JBNME=compile_010 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -++ date +%s -+ echo -n 'compile_010, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506862 -TEST 010 compile is waiting to enter the queue -TEST 010 compile is submitted -1 min. TEST 010 compile is waiting in a queue, status: Q jobid 9506862 -2 min. TEST 010 compile is running, status: R jobid 9506862 -3 min. TEST 010 compile is running, status: R jobid 9506862 -4 min. TEST 010 compile is running, status: R jobid 9506862 -5 min. TEST 010 compile is running, status: R jobid 9506862 -6 min. TEST 010 compile is running, status: R jobid 9506862 -7 min. TEST 010 compile is running, status: R jobid 9506862 -8 min. TEST 010 compile is running, status: R jobid 9506862 -9 min. TEST 010 compile is running, status: R jobid 9506862 -10 min. TEST 010 compile is running, status: R jobid 9506862 -11 min. TEST 010 compile is running, status: R jobid 9506862 -12 min. TEST 010 compile is running, status: R jobid 9506862 -13 min. TEST 010 compile is running, status: R jobid 9506862 -14 min. TEST 010 compile is running, status: R jobid 9506862 -15 min. TEST 010 compile is running, status: R jobid 9506862 -16 min. TEST 010 compile is running, status: R jobid 9506862 -17 min. TEST 010 compile is running, status: R jobid 9506862 -18 min. TEST 010 compile is running, status: R jobid 9506862 -qstat: 9506862.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506862.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -19 min. TEST 010 compile is finished, status: - jobid 9506862 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_010.exe --rwxr-xr-x 1 jongkim ncar 280625768 Apr 19 15:34 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_010.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010/compile_010_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_010' -Removing test failure flag file for compile_010 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_010 -++ date +%s -+ echo ' 1681918531, 1' -+ elapsed=1113 -+ echo 'Elapsed time 1113 seconds. Compile 010' -Elapsed time 1113 seconds. Compile 010 -+ '[' 0 -eq 0 ']' -Compile 010 elapsed time 993 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 -+ echo PID=28508 -PID=28508 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp' -+ export COMPILE_NR=011 -+ COMPILE_NR=011 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_011' -Removing test failure flag file for compile_011 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_011 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011.env -++ export JOB_NR=091 -++ JOB_NR=091 -++ export COMPILE_NR=011 -++ COMPILE_NR=011 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=011 -+ TEST_NR=011 -+ export JBNME=compile_011 -+ JBNME=compile_011 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -++ date +%s -+ echo -n 'compile_011, 1681917920,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506920 -TEST 011 compile is waiting to enter the queue -TEST 011 compile is submitted -1 min. TEST 011 compile is waiting in a queue, status: Q jobid 9506920 -2 min. TEST 011 compile is running, status: R jobid 9506920 -3 min. TEST 011 compile is running, status: R jobid 9506920 -4 min. TEST 011 compile is running, status: R jobid 9506920 -5 min. TEST 011 compile is running, status: R jobid 9506920 -6 min. TEST 011 compile is running, status: R jobid 9506920 -7 min. TEST 011 compile is running, status: R jobid 9506920 -8 min. TEST 011 compile is running, status: R jobid 9506920 -9 min. TEST 011 compile is running, status: R jobid 9506920 -10 min. TEST 011 compile is running, status: R jobid 9506920 -11 min. TEST 011 compile is running, status: R jobid 9506920 -12 min. TEST 011 compile is running, status: R jobid 9506920 -13 min. TEST 011 compile is running, status: R jobid 9506920 -14 min. TEST 011 compile is running, status: R jobid 9506920 -15 min. TEST 011 compile is running, status: R jobid 9506920 -16 min. TEST 011 compile is running, status: R jobid 9506920 -17 min. TEST 011 compile is running, status: R jobid 9506920 -qstat: 9506920.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506920.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -18 min. TEST 011 compile is finished, status: - jobid 9506920 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_011.exe --rwxr-xr-x 1 jongkim ncar 279381360 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_011.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011/compile_011_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_011' -Removing test failure flag file for compile_011 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_011 -++ date +%s -+ echo ' 1681918962, 1' -+ elapsed=1042 -+ echo 'Elapsed time 1042 seconds. Compile 011' -Elapsed time 1042 seconds. Compile 011 -+ '[' 0 -eq 0 ']' -Compile 011 elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=29399 -PID=29399 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON' -+ export COMPILE_NR=012 -+ COMPILE_NR=012 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_012' -Removing test failure flag file for compile_012 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_012 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012.env -++ export JOB_NR=095 -++ JOB_NR=095 -++ export COMPILE_NR=012 -++ COMPILE_NR=012 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=012 -+ TEST_NR=012 -+ export JBNME=compile_012 -+ JBNME=compile_012 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -++ date +%s -+ echo -n 'compile_012, 1681917981,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506927 -TEST 012 compile is waiting to enter the queue -TEST 012 compile is submitted -1 min. TEST 012 compile is waiting in a queue, status: Q jobid 9506927 -2 min. TEST 012 compile is waiting in a queue, status: Q jobid 9506927 -3 min. TEST 012 compile is running, status: R jobid 9506927 -4 min. TEST 012 compile is running, status: R jobid 9506927 -5 min. TEST 012 compile is running, status: R jobid 9506927 -6 min. TEST 012 compile is running, status: R jobid 9506927 -7 min. TEST 012 compile is running, status: R jobid 9506927 -8 min. TEST 012 compile is running, status: R jobid 9506927 -9 min. TEST 012 compile is running, status: R jobid 9506927 -10 min. TEST 012 compile is running, status: R jobid 9506927 -11 min. TEST 012 compile is running, status: R jobid 9506927 -12 min. TEST 012 compile is running, status: R jobid 9506927 -13 min. TEST 012 compile is running, status: R jobid 9506927 -14 min. TEST 012 compile is running, status: R jobid 9506927 -15 min. TEST 012 compile is running, status: R jobid 9506927 -qstat: 9506927.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506927.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -16 min. TEST 012 compile is finished, status: - jobid 9506927 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_012.exe --rwxr-xr-x 1 jongkim ncar 271124760 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_012.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012/compile_012_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_012' -Removing test failure flag file for compile_012 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_012 -++ date +%s -+ echo ' 1681918902, 1' -+ elapsed=921 -+ echo 'Elapsed time 921 seconds. Compile 012' -Elapsed time 921 seconds. Compile 012 -+ '[' 0 -eq 0 ']' -Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=64659 -PID=64659 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON' -+ export COMPILE_NR=013 -+ COMPILE_NR=013 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_013' -Removing test failure flag file for compile_013 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_013 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013.env -++ export JOB_NR=097 -++ JOB_NR=097 -++ export COMPILE_NR=013 -++ COMPILE_NR=013 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=013 -+ TEST_NR=013 -+ export JBNME=compile_013 -+ JBNME=compile_013 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -++ date +%s -+ echo -n 'compile_013, 1681918532,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506957 -TEST 013 compile is waiting to enter the queue -TEST 013 compile is submitted -1 min. TEST 013 compile is waiting in a queue, status: Q jobid 9506957 -2 min. TEST 013 compile is running, status: R jobid 9506957 -3 min. TEST 013 compile is running, status: R jobid 9506957 -4 min. TEST 013 compile is running, status: R jobid 9506957 -5 min. TEST 013 compile is running, status: R jobid 9506957 -6 min. TEST 013 compile is running, status: R jobid 9506957 -7 min. TEST 013 compile is running, status: R jobid 9506957 -8 min. TEST 013 compile is running, status: R jobid 9506957 -9 min. TEST 013 compile is running, status: R jobid 9506957 -10 min. TEST 013 compile is running, status: R jobid 9506957 -11 min. TEST 013 compile is running, status: R jobid 9506957 -12 min. TEST 013 compile is running, status: R jobid 9506957 -13 min. TEST 013 compile is running, status: R jobid 9506957 -14 min. TEST 013 compile is running, status: R jobid 9506957 -15 min. TEST 013 compile is running, status: R jobid 9506957 -16 min. TEST 013 compile is running, status: R jobid 9506957 -17 min. TEST 013 compile is running, status: R jobid 9506957 -18 min. TEST 013 compile is running, status: R jobid 9506957 -19 min. TEST 013 compile is running, status: R jobid 9506957 -20 min. TEST 013 compile is running, status: R jobid 9506957 -21 min. TEST 013 compile is running, status: R jobid 9506957 -22 min. TEST 013 compile is running, status: R jobid 9506957 -23 min. TEST 013 compile is running, status: R jobid 9506957 -qstat: 9506957.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506957.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -24 min. TEST 013 compile is finished, status: - jobid 9506957 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_013.exe --rwxr-xr-x 1 jongkim ncar 283130688 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_013.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013/compile_013_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_013' -Removing test failure flag file for compile_013 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_013 -++ date +%s -+ echo ' 1681919931, 1' -+ elapsed=1399 -+ echo 'Elapsed time 1399 seconds. Compile 013' -Elapsed time 1399 seconds. Compile 013 -+ '[' 0 -eq 0 ']' -Compile 013 elapsed time 1302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=69717 -PID=69717 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta' -+ MAKE_OPT='-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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta' -+ export COMPILE_NR=014 -+ COMPILE_NR=014 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_014' -Removing test failure flag file for compile_014 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_014 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014.env -++ export JOB_NR=100 -++ JOB_NR=100 -++ export COMPILE_NR=014 -++ COMPILE_NR=014 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=014 -+ TEST_NR=014 -+ export JBNME=compile_014 -+ JBNME=compile_014 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -++ date +%s -+ echo -n 'compile_014, 1681918593,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506980 -TEST 014 compile is waiting to enter the queue -TEST 014 compile is submitted -1 min. TEST 014 compile is waiting in a queue, status: Q jobid 9506980 -2 min. TEST 014 compile is running, status: R jobid 9506980 -3 min. TEST 014 compile is running, status: R jobid 9506980 -4 min. TEST 014 compile is running, status: R jobid 9506980 -5 min. TEST 014 compile is running, status: R jobid 9506980 -6 min. TEST 014 compile is running, status: R jobid 9506980 -7 min. TEST 014 compile is running, status: R jobid 9506980 -8 min. TEST 014 compile is running, status: R jobid 9506980 -qstat: 9506980.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506980.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -9 min. TEST 014 compile is finished, status: - jobid 9506980 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_014.exe --rwxr-xr-x 1 jongkim ncar 791011432 Apr 19 15:44 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_014.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014/compile_014_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_014' -Removing test failure flag file for compile_014 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_014 -++ date +%s -+ echo ' 1681919082, 1' -+ elapsed=489 -+ echo 'Elapsed time 489 seconds. Compile 014' -Elapsed time 489 seconds. Compile 014 -+ '[' 0 -eq 0 ']' -Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=69720 -PID=69720 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' -+ export COMPILE_NR=015 -+ COMPILE_NR=015 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_015' -Removing test failure flag file for compile_015 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_015 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015.env -++ export JOB_NR=127 -++ JOB_NR=127 -++ export COMPILE_NR=015 -++ COMPILE_NR=015 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=015 -+ TEST_NR=015 -+ export JBNME=compile_015 -+ JBNME=compile_015 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -++ date +%s -+ echo -n 'compile_015, 1681918593,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506981 -TEST 015 compile is waiting to enter the queue -TEST 015 compile is submitted -1 min. TEST 015 compile is waiting in a queue, status: Q jobid 9506981 -2 min. TEST 015 compile is running, status: R jobid 9506981 -3 min. TEST 015 compile is running, status: R jobid 9506981 -4 min. TEST 015 compile is running, status: R jobid 9506981 -5 min. TEST 015 compile is running, status: R jobid 9506981 -6 min. TEST 015 compile is running, status: R jobid 9506981 -qstat: 9506981.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506981.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -7 min. TEST 015 compile is finished, status: - jobid 9506981 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_015.exe --rwxr-xr-x 1 jongkim ncar 584008944 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_015.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015/compile_015_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_015' -Removing test failure flag file for compile_015 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_015 -++ date +%s -+ echo ' 1681918962, 1' -+ elapsed=369 -+ echo 'Elapsed time 369 seconds. Compile 015' -Elapsed time 369 seconds. Compile 015 -+ '[' 0 -eq 0 ']' -Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=73059 -PID=73059 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' -+ export COMPILE_NR=016 -+ COMPILE_NR=016 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_016' -Removing test failure flag file for compile_016 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_016 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016.env -++ export JOB_NR=129 -++ JOB_NR=129 -++ export COMPILE_NR=016 -++ COMPILE_NR=016 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=016 -+ TEST_NR=016 -+ export JBNME=compile_016 -+ JBNME=compile_016 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -++ date +%s -+ echo -n 'compile_016, 1681918653,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506996 -TEST 016 compile is waiting to enter the queue -TEST 016 compile is submitted -1 min. TEST 016 compile is waiting in a queue, status: Q jobid 9506996 -2 min. TEST 016 compile is waiting in a queue, status: Q jobid 9506996 -3 min. TEST 016 compile is running, status: R jobid 9506996 -4 min. TEST 016 compile is running, status: R jobid 9506996 -5 min. TEST 016 compile is running, status: R jobid 9506996 -6 min. TEST 016 compile is running, status: R jobid 9506996 -7 min. TEST 016 compile is running, status: R jobid 9506996 -8 min. TEST 016 compile is running, status: R jobid 9506996 -9 min. TEST 016 compile is running, status: R jobid 9506996 -10 min. TEST 016 compile is running, status: R jobid 9506996 -11 min. TEST 016 compile is running, status: R jobid 9506996 -12 min. TEST 016 compile is running, status: R jobid 9506996 -13 min. TEST 016 compile is running, status: R jobid 9506996 -14 min. TEST 016 compile is running, status: R jobid 9506996 -15 min. TEST 016 compile is running, status: R jobid 9506996 -16 min. TEST 016 compile is running, status: R jobid 9506996 -17 min. TEST 016 compile is running, status: R jobid 9506996 -qstat: 9506996.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506996.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -18 min. TEST 016 compile is finished, status: - jobid 9506996 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_016.exe --rwxr-xr-x 1 jongkim ncar 272728712 Apr 19 15:53 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_016.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016/compile_016_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_016' -Removing test failure flag file for compile_016 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_016 -++ date +%s -+ echo ' 1681919689, 1' -+ elapsed=1036 -+ echo 'Elapsed time 1036 seconds. Compile 016' -Elapsed time 1036 seconds. Compile 016 -+ '[' 0 -eq 0 ']' -Compile 016 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=19839 -PID=19839 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' -+ export COMPILE_NR=017 -+ COMPILE_NR=017 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_017' -Removing test failure flag file for compile_017 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_017 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017.env -++ export JOB_NR=138 -++ JOB_NR=138 -++ export COMPILE_NR=017 -++ COMPILE_NR=017 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=017 -+ TEST_NR=017 -+ export JBNME=compile_017 -+ JBNME=compile_017 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -++ date +%s -+ echo -n 'compile_017, 1681918902,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507030 -TEST 017 compile is waiting to enter the queue -TEST 017 compile is submitted -1 min. TEST 017 compile is waiting in a queue, status: Q jobid 9507030 -2 min. TEST 017 compile is waiting in a queue, status: Q jobid 9507030 -3 min. TEST 017 compile is running, status: R jobid 9507030 -4 min. TEST 017 compile is running, status: R jobid 9507030 -5 min. TEST 017 compile is running, status: R jobid 9507030 -6 min. TEST 017 compile is running, status: R jobid 9507030 -7 min. TEST 017 compile is running, status: R jobid 9507030 -8 min. TEST 017 compile is running, status: R jobid 9507030 -9 min. TEST 017 compile is running, status: R jobid 9507030 -10 min. TEST 017 compile is running, status: R jobid 9507030 -11 min. TEST 017 compile is running, status: R jobid 9507030 -12 min. TEST 017 compile is running, status: R jobid 9507030 -13 min. TEST 017 compile is running, status: R jobid 9507030 -14 min. TEST 017 compile is running, status: R jobid 9507030 -15 min. TEST 017 compile is running, status: R jobid 9507030 -16 min. TEST 017 compile is running, status: R jobid 9507030 -qstat: 9507030.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507030.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -17 min. TEST 017 compile is finished, status: - jobid 9507030 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_017.exe --rwxr-xr-x 1 jongkim ncar 272901872 Apr 19 15:57 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_017.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017/compile_017_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_017' -Removing test failure flag file for compile_017 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_017 -++ date +%s -+ echo ' 1681919882, 1' -+ elapsed=980 -+ echo 'Elapsed time 980 seconds. Compile 017' -Elapsed time 980 seconds. Compile 017 -+ '[' 0 -eq 0 ']' -Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=19838 -PID=19838 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' -+ export COMPILE_NR=018 -+ COMPILE_NR=018 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_018' -Removing test failure flag file for compile_018 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_018 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018.env -++ export JOB_NR=140 -++ JOB_NR=140 -++ export COMPILE_NR=018 -++ COMPILE_NR=018 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=018 -+ TEST_NR=018 -+ export JBNME=compile_018 -+ JBNME=compile_018 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -++ date +%s -+ echo -n 'compile_018, 1681918902,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507031 -TEST 018 compile is waiting to enter the queue -TEST 018 compile is submitted -1 min. TEST 018 compile is waiting in a queue, status: Q jobid 9507031 -2 min. TEST 018 compile is waiting in a queue, status: Q jobid 9507031 -3 min. TEST 018 compile is running, status: R jobid 9507031 -4 min. TEST 018 compile is running, status: R jobid 9507031 -5 min. TEST 018 compile is running, status: R jobid 9507031 -6 min. TEST 018 compile is running, status: R jobid 9507031 -qstat: 9507031.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507031.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -7 min. TEST 018 compile is finished, status: - jobid 9507031 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_018.exe --rwxr-xr-x 1 jongkim ncar 497104040 Apr 19 15:47 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_018.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018/compile_018_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_018' -Removing test failure flag file for compile_018 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_018 -++ date +%s -+ echo ' 1681919270, 1' -+ elapsed=368 -+ echo 'Elapsed time 368 seconds. Compile 018' -Elapsed time 368 seconds. Compile 018 -+ '[' 0 -eq 0 ']' -Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=19840 -PID=19840 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' -+ export COMPILE_NR=019 -+ COMPILE_NR=019 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_019' -Removing test failure flag file for compile_019 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_019 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019.env -++ export JOB_NR=143 -++ JOB_NR=143 -++ export COMPILE_NR=019 -++ COMPILE_NR=019 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=019 -+ TEST_NR=019 -+ export JBNME=compile_019 -+ JBNME=compile_019 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -++ date +%s -+ echo -n 'compile_019, 1681918902,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507032 -TEST 019 compile is waiting to enter the queue -TEST 019 compile is submitted -1 min. TEST 019 compile is waiting in a queue, status: Q jobid 9507032 -2 min. TEST 019 compile is waiting in a queue, status: Q jobid 9507032 -3 min. TEST 019 compile is running, status: R jobid 9507032 -4 min. TEST 019 compile is running, status: R jobid 9507032 -5 min. TEST 019 compile is running, status: R jobid 9507032 -6 min. TEST 019 compile is running, status: R jobid 9507032 -7 min. TEST 019 compile is running, status: R jobid 9507032 -8 min. TEST 019 compile is running, status: R jobid 9507032 -qstat: 9507032.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507032.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -9 min. TEST 019 compile is finished, status: - jobid 9507032 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_019.exe --rwxr-xr-x 1 jongkim ncar 497150376 Apr 19 15:49 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_019.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019/compile_019_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_019' -Removing test failure flag file for compile_019 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_019 -++ date +%s -+ echo ' 1681919392, 1' -+ elapsed=490 -+ echo 'Elapsed time 490 seconds. Compile 019' -Elapsed time 490 seconds. Compile 019 -+ '[' 0 -eq 0 ']' -Compile 019 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=23377 -PID=23377 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-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' -+ MAKE_OPT='-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' -+ export COMPILE_NR=020 -+ COMPILE_NR=020 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_020' -Removing test failure flag file for compile_020 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_020 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020.env -++ export JOB_NR=145 -++ JOB_NR=145 -++ export COMPILE_NR=020 -++ COMPILE_NR=020 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=020 -+ TEST_NR=020 -+ export JBNME=compile_020 -+ JBNME=compile_020 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -++ date +%s -+ echo -n 'compile_020, 1681918962,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507050 -TEST 020 compile is waiting to enter the queue -TEST 020 compile is submitted -1 min. TEST 020 compile is waiting in a queue, status: Q jobid 9507050 -2 min. TEST 020 compile is running, status: R jobid 9507050 -3 min. TEST 020 compile is running, status: R jobid 9507050 -4 min. TEST 020 compile is running, status: R jobid 9507050 -5 min. TEST 020 compile is running, status: R jobid 9507050 -6 min. TEST 020 compile is running, status: R jobid 9507050 -7 min. TEST 020 compile is running, status: R jobid 9507050 -8 min. TEST 020 compile is running, status: R jobid 9507050 -9 min. TEST 020 compile is running, status: R jobid 9507050 -10 min. TEST 020 compile is running, status: R jobid 9507050 -11 min. TEST 020 compile is running, status: R jobid 9507050 -12 min. TEST 020 compile is running, status: R jobid 9507050 -13 min. TEST 020 compile is running, status: R jobid 9507050 -14 min. TEST 020 compile is running, status: R jobid 9507050 -15 min. TEST 020 compile is running, status: R jobid 9507050 -16 min. TEST 020 compile is running, status: R jobid 9507050 -17 min. TEST 020 compile is running, status: R jobid 9507050 -18 min. TEST 020 compile is running, status: R jobid 9507050 -19 min. TEST 020 compile is running, status: R jobid 9507050 -20 min. TEST 020 compile is running, status: R jobid 9507050 -qstat: 9507050.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507050.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 020 compile is finished, status: - jobid 9507050 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_020.exe --rwxr-xr-x 1 jongkim ncar 296056624 Apr 19 16:02 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_020.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020/compile_020_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_020' -Removing test failure flag file for compile_020 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_020 -++ date +%s -+ echo ' 1681920188, 1' -+ elapsed=1226 -+ echo 'Elapsed time 1226 seconds. Compile 020' -Elapsed time 1226 seconds. Compile 020 -+ '[' 0 -eq 0 ']' -Compile 020 elapsed time 1146 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 -+ echo PID=23500 -PID=23500 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-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 -DDEBUG=ON' -+ MAKE_OPT='-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 -DDEBUG=ON' -+ export COMPILE_NR=021 -+ COMPILE_NR=021 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_021' -Removing test failure flag file for compile_021 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_021 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021.env -++ export JOB_NR=159 -++ JOB_NR=159 -++ export COMPILE_NR=021 -++ COMPILE_NR=021 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=021 -+ TEST_NR=021 -+ export JBNME=compile_021 -+ JBNME=compile_021 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -++ date +%s -+ echo -n 'compile_021, 1681918963,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507052 -TEST 021 compile is waiting to enter the queue -TEST 021 compile is submitted -1 min. TEST 021 compile is waiting in a queue, status: Q jobid 9507052 -2 min. TEST 021 compile is running, status: R jobid 9507052 -3 min. TEST 021 compile is running, status: R jobid 9507052 -4 min. TEST 021 compile is running, status: R jobid 9507052 -5 min. TEST 021 compile is running, status: R jobid 9507052 -6 min. TEST 021 compile is running, status: R jobid 9507052 -7 min. TEST 021 compile is running, status: R jobid 9507052 -qstat: 9507052.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507052.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -8 min. TEST 021 compile is finished, status: - jobid 9507052 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_021.exe --rwxr-xr-x 1 jongkim ncar 687198528 Apr 19 15:49 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_021.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021/compile_021_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_021' -Removing test failure flag file for compile_021 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_021 -++ date +%s -+ echo ' 1681919392, 1' -+ elapsed=429 -+ echo 'Elapsed time 429 seconds. Compile 021' -Elapsed time 429 seconds. Compile 021 -+ '[' 0 -eq 0 ']' -Compile 021 elapsed time 355 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=33333 -PID=33333 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON' -+ MAKE_OPT='-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON' -+ export COMPILE_NR=022 -+ COMPILE_NR=022 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_022' -Removing test failure flag file for compile_022 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_022 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022.env -++ export JOB_NR=161 -++ JOB_NR=161 -++ export COMPILE_NR=022 -++ COMPILE_NR=022 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=022 -+ TEST_NR=022 -+ export JBNME=compile_022 -+ JBNME=compile_022 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -++ date +%s -+ echo -n 'compile_022, 1681919023,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507062 -TEST 022 compile is waiting to enter the queue -TEST 022 compile is submitted -1 min. TEST 022 compile is waiting in a queue, status: Q jobid 9507062 -2 min. TEST 022 compile is running, status: R jobid 9507062 -3 min. TEST 022 compile is running, status: R jobid 9507062 -4 min. TEST 022 compile is running, status: R jobid 9507062 -5 min. TEST 022 compile is running, status: R jobid 9507062 -6 min. TEST 022 compile is running, status: R jobid 9507062 -7 min. TEST 022 compile is running, status: R jobid 9507062 -8 min. TEST 022 compile is running, status: R jobid 9507062 -9 min. TEST 022 compile is running, status: R jobid 9507062 -10 min. TEST 022 compile is running, status: R jobid 9507062 -11 min. TEST 022 compile is running, status: R jobid 9507062 -12 min. TEST 022 compile is running, status: R jobid 9507062 -13 min. TEST 022 compile is running, status: R jobid 9507062 -14 min. TEST 022 compile is running, status: R jobid 9507062 -15 min. TEST 022 compile is running, status: R jobid 9507062 -16 min. TEST 022 compile is running, status: R jobid 9507062 -17 min. TEST 022 compile is running, status: R jobid 9507062 -18 min. TEST 022 compile is running, status: R jobid 9507062 -19 min. TEST 022 compile is running, status: R jobid 9507062 -20 min. TEST 022 compile is running, status: R jobid 9507062 -21 min. TEST 022 compile is running, status: R jobid 9507062 -22 min. TEST 022 compile is running, status: R jobid 9507062 -23 min. TEST 022 compile is running, status: R jobid 9507062 -24 min. TEST 022 compile is running, status: R jobid 9507062 -25 min. TEST 022 compile is running, status: R jobid 9507062 -26 min. TEST 022 compile is running, status: R jobid 9507062 -27 min. TEST 022 compile is running, status: R jobid 9507062 -qstat: 9507062.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507062.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -28 min. TEST 022 compile is finished, status: - jobid 9507062 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_022.exe --rwxr-xr-x 1 jongkim ncar 302209256 Apr 19 16:10 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_022.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022/compile_022_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_022' -Removing test failure flag file for compile_022 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_022 -++ date +%s -+ echo ' 1681920671, 1' -+ elapsed=1648 -+ echo 'Elapsed time 1648 seconds. Compile 022' -Elapsed time 1648 seconds. Compile 022 -+ '[' 0 -eq 0 ']' -Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=41419 -PID=41419 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' -+ MAKE_OPT='-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' -+ export COMPILE_NR=023 -+ COMPILE_NR=023 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_023' -Removing test failure flag file for compile_023 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_023 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023.env -++ export JOB_NR=163 -++ JOB_NR=163 -++ export COMPILE_NR=023 -++ COMPILE_NR=023 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=023 -+ TEST_NR=023 -+ export JBNME=compile_023 -+ JBNME=compile_023 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -++ date +%s -+ echo -n 'compile_023, 1681919090,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507074 -TEST 023 compile is waiting to enter the queue -TEST 023 compile is submitted -1 min. TEST 023 compile is waiting in a queue, status: Q jobid 9507074 -2 min. TEST 023 compile is waiting in a queue, status: Q jobid 9507074 -3 min. TEST 023 compile is running, status: R jobid 9507074 -4 min. TEST 023 compile is running, status: R jobid 9507074 -5 min. TEST 023 compile is running, status: R jobid 9507074 -6 min. TEST 023 compile is running, status: R jobid 9507074 -7 min. TEST 023 compile is running, status: R jobid 9507074 -8 min. TEST 023 compile is running, status: R jobid 9507074 -9 min. TEST 023 compile is running, status: R jobid 9507074 -10 min. TEST 023 compile is running, status: R jobid 9507074 -11 min. TEST 023 compile is running, status: R jobid 9507074 -12 min. TEST 023 compile is running, status: R jobid 9507074 -13 min. TEST 023 compile is running, status: R jobid 9507074 -14 min. TEST 023 compile is running, status: R jobid 9507074 -15 min. TEST 023 compile is running, status: R jobid 9507074 -16 min. TEST 023 compile is running, status: R jobid 9507074 -17 min. TEST 023 compile is running, status: R jobid 9507074 -18 min. TEST 023 compile is running, status: R jobid 9507074 -19 min. TEST 023 compile is running, status: R jobid 9507074 -20 min. TEST 023 compile is running, status: R jobid 9507074 -qstat: 9507074.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507074.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 023 compile is finished, status: - jobid 9507074 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_023.exe --rwxr-xr-x 1 jongkim ncar 292205152 Apr 19 16:04 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_023.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023/compile_023_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_023' -Removing test failure flag file for compile_023 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_023 -++ date +%s -+ echo ' 1681920310, 1' -+ elapsed=1220 -+ echo 'Elapsed time 1220 seconds. Compile 023' -Elapsed time 1220 seconds. Compile 023 -+ '[' 0 -eq 0 ']' -Compile 023 elapsed time 1130 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 -+ echo PID=11955 -PID=11955 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export MAKE_OPT=-DAPP=NG-GODAS -+ MAKE_OPT=-DAPP=NG-GODAS -+ export COMPILE_NR=024 -+ COMPILE_NR=024 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_024' -Removing test failure flag file for compile_024 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_024 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024.env -++ export JOB_NR=167 -++ JOB_NR=167 -++ export COMPILE_NR=024 -++ COMPILE_NR=024 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=024 -+ TEST_NR=024 -+ export JBNME=compile_024 -+ JBNME=compile_024 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -++ date +%s -+ echo -n 'compile_024, 1681919271,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507106 -TEST 024 compile is waiting to enter the queue -TEST 024 compile is submitted -1 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 -2 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 -3 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 -4 min. TEST 024 compile is running, status: R jobid 9507106 -5 min. TEST 024 compile is running, status: R jobid 9507106 -6 min. TEST 024 compile is running, status: R jobid 9507106 -7 min. TEST 024 compile is running, status: R jobid 9507106 -8 min. TEST 024 compile is running, status: R jobid 9507106 -9 min. TEST 024 compile is running, status: R jobid 9507106 -10 min. TEST 024 compile is running, status: R jobid 9507106 -11 min. TEST 024 compile is running, status: R jobid 9507106 -qstat: 9507106.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507106.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -12 min. TEST 024 compile is finished, status: - jobid 9507106 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_024.exe --rwxr-xr-x 1 jongkim ncar 296489880 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_024.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024/compile_024_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_024' -Removing test failure flag file for compile_024 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_024 -++ date +%s -+ echo ' 1681919945, 1' -+ elapsed=673 -+ echo 'Elapsed time 673 seconds. Compile 024' -Elapsed time 673 seconds. Compile 024 -+ '[' 0 -eq 0 ']' -Compile 024 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=24558 -PID=24558 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=NG-GODAS -DDEBUG=ON' -+ MAKE_OPT='-DAPP=NG-GODAS -DDEBUG=ON' -+ export COMPILE_NR=025 -+ COMPILE_NR=025 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_025' -Removing test failure flag file for compile_025 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_025 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025.env -++ export JOB_NR=181 -++ JOB_NR=181 -++ export COMPILE_NR=025 -++ COMPILE_NR=025 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=025 -+ TEST_NR=025 -+ export JBNME=compile_025 -+ JBNME=compile_025 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -++ date +%s -+ echo -n 'compile_025, 1681919392,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507134 -TEST 025 compile is waiting to enter the queue -TEST 025 compile is submitted -1 min. TEST 025 compile is waiting in a queue, status: Q jobid 9507134 -2 min. TEST 025 compile is waiting in a queue, status: Q jobid 9507134 -3 min. TEST 025 compile is running, status: R jobid 9507134 -4 min. TEST 025 compile is running, status: R jobid 9507134 -5 min. TEST 025 compile is running, status: R jobid 9507134 -qstat: 9507134.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507134.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -6 min. TEST 025 compile is finished, status: - jobid 9507134 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_025.exe --rwxr-xr-x 1 jongkim ncar 372675624 Apr 19 15:54 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_025.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025/compile_025_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_025' -Removing test failure flag file for compile_025 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_025 -++ date +%s -+ echo ' 1681919702, 1' -+ elapsed=310 -+ echo 'Elapsed time 310 seconds. Compile 025' -Elapsed time 310 seconds. Compile 025 -+ '[' 0 -eq 0 ']' -Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -+ echo PID=24767 -PID=24767 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=NG-GODAS -DFASTER=ON' -+ MAKE_OPT='-DAPP=NG-GODAS -DFASTER=ON' -+ export COMPILE_NR=026 -+ COMPILE_NR=026 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_026' -Removing test failure flag file for compile_026 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_026 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026.env -++ export JOB_NR=183 -++ JOB_NR=183 -++ export COMPILE_NR=026 -++ COMPILE_NR=026 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=026 -+ TEST_NR=026 -+ export JBNME=compile_026 -+ JBNME=compile_026 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -++ date +%s -+ echo -n 'compile_026, 1681919393,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507135 -TEST 026 compile is waiting to enter the queue -TEST 026 compile is submitted -1 min. TEST 026 compile is waiting in a queue, status: Q jobid 9507135 -2 min. TEST 026 compile is waiting in a queue, status: Q jobid 9507135 -3 min. TEST 026 compile is running, status: R jobid 9507135 -4 min. TEST 026 compile is running, status: R jobid 9507135 -5 min. TEST 026 compile is running, status: R jobid 9507135 -6 min. TEST 026 compile is running, status: R jobid 9507135 -7 min. TEST 026 compile is running, status: R jobid 9507135 -8 min. TEST 026 compile is running, status: R jobid 9507135 -9 min. TEST 026 compile is running, status: R jobid 9507135 -qstat: 9507135.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507135.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -10 min. TEST 026 compile is finished, status: - jobid 9507135 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_026.exe --rwxr-xr-x 1 jongkim ncar 296456376 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_026.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026/compile_026_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_026' -Removing test failure flag file for compile_026 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_026 -++ date +%s -+ echo ' 1681919948, 1' -+ elapsed=555 -+ echo 'Elapsed time 555 seconds. Compile 026' -Elapsed time 555 seconds. Compile 026 -+ '[' 0 -eq 0 ']' -Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=47281 -PID=47281 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export MAKE_OPT=-DAPP=LND -+ MAKE_OPT=-DAPP=LND -+ export COMPILE_NR=027 -+ COMPILE_NR=027 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_027' -Removing test failure flag file for compile_027 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_027 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027.env -++ export JOB_NR=185 -++ JOB_NR=185 -++ export COMPILE_NR=027 -++ COMPILE_NR=027 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=027 -+ TEST_NR=027 -+ export JBNME=compile_027 -+ JBNME=compile_027 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -++ date +%s -+ echo -n 'compile_027, 1681919689,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507178 -TEST 027 compile is waiting to enter the queue -TEST 027 compile is submitted -1 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 -2 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 -3 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 -4 min. TEST 027 compile is running, status: R jobid 9507178 -5 min. TEST 027 compile is running, status: R jobid 9507178 -qstat: 9507178.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507178.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -6 min. TEST 027 compile is finished, status: - jobid 9507178 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_027.exe --rwxr-xr-x 1 jongkim ncar 220506216 Apr 19 15:59 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_027.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027/compile_027_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_027' -Removing test failure flag file for compile_027 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_027 -++ date +%s -+ echo ' 1681920007, 1' -+ elapsed=318 -+ echo 'Elapsed time 318 seconds. Compile 027' -Elapsed time 318 seconds. Compile 027 -+ '[' 0 -eq 0 ']' -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=50604 -PID=50604 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km' -+ MAKE_OPT='-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km' -+ export COMPILE_NR=028 -+ COMPILE_NR=028 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_028' -Removing test failure flag file for compile_028 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_028 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028.env -++ export JOB_NR=188 -++ JOB_NR=188 -++ export COMPILE_NR=028 -++ COMPILE_NR=028 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=028 -+ TEST_NR=028 -+ export JBNME=compile_028 -+ JBNME=compile_028 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -++ date +%s -+ echo -n 'compile_028, 1681919702,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507181 -TEST 028 compile is waiting to enter the queue -TEST 028 compile is submitted -1 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -2 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -3 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -4 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -5 min. TEST 028 compile is running, status: R jobid 9507181 -6 min. TEST 028 compile is running, status: R jobid 9507181 -7 min. TEST 028 compile is running, status: R jobid 9507181 -8 min. TEST 028 compile is running, status: R jobid 9507181 -9 min. TEST 028 compile is running, status: R jobid 9507181 -10 min. TEST 028 compile is running, status: R jobid 9507181 -11 min. TEST 028 compile is running, status: R jobid 9507181 -12 min. TEST 028 compile is running, status: R jobid 9507181 -13 min. TEST 028 compile is running, status: R jobid 9507181 -14 min. TEST 028 compile is running, status: R jobid 9507181 -15 min. TEST 028 compile is running, status: R jobid 9507181 -16 min. TEST 028 compile is running, status: R jobid 9507181 -17 min. TEST 028 compile is running, status: R jobid 9507181 -18 min. TEST 028 compile is running, status: R jobid 9507181 -19 min. TEST 028 compile is running, status: R jobid 9507181 -20 min. TEST 028 compile is running, status: R jobid 9507181 -qstat: 9507181.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507181.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 028 compile is finished, status: - jobid 9507181 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_028.exe --rwxr-xr-x 1 jongkim ncar 283964880 Apr 19 16:14 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_028.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028/compile_028_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_028' -Removing test failure flag file for compile_028 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_028 -++ date +%s -+ echo ' 1681920929, 1' -+ elapsed=1227 -+ echo 'Elapsed time 1227 seconds. Compile 028' -Elapsed time 1227 seconds. Compile 028 -+ '[' 0 -eq 0 ']' -Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=64019 -PID=64019 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ export COMPILE_NR=029 -+ COMPILE_NR=029 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_029' -Removing test failure flag file for compile_029 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_029 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029.env -++ export JOB_NR=190 -++ JOB_NR=190 -++ export COMPILE_NR=029 -++ COMPILE_NR=029 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=029 -+ TEST_NR=029 -+ export JBNME=compile_029 -+ JBNME=compile_029 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -++ date +%s -+ echo -n 'compile_029, 1681919882,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507198 -TEST 029 compile is waiting to enter the queue -TEST 029 compile is submitted -1 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -2 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -3 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -4 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -5 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -6 min. TEST 029 compile is running, status: R jobid 9507198 -7 min. TEST 029 compile is running, status: R jobid 9507198 -8 min. TEST 029 compile is running, status: R jobid 9507198 -9 min. TEST 029 compile is running, status: R jobid 9507198 -10 min. TEST 029 compile is running, status: R jobid 9507198 -11 min. TEST 029 compile is running, status: R jobid 9507198 -12 min. TEST 029 compile is running, status: R jobid 9507198 -13 min. TEST 029 compile is running, status: R jobid 9507198 -14 min. TEST 029 compile is running, status: R jobid 9507198 -15 min. TEST 029 compile is running, status: R jobid 9507198 -16 min. TEST 029 compile is running, status: R jobid 9507198 -17 min. TEST 029 compile is running, status: R jobid 9507198 -18 min. TEST 029 compile is running, status: R jobid 9507198 -19 min. TEST 029 compile is running, status: R jobid 9507198 -20 min. TEST 029 compile is running, status: R jobid 9507198 -21 min. TEST 029 compile is running, status: R jobid 9507198 -qstat: 9507198.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507198.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -22 min. TEST 029 compile is finished, status: - jobid 9507198 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_029.exe --rwxr-xr-x 1 jongkim ncar 283794768 Apr 19 16:19 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_029.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029/compile_029_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_029' -Removing test failure flag file for compile_029 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_029 -++ date +%s -+ echo ' 1681921156, 1' -+ elapsed=1274 -+ echo 'Elapsed time 1274 seconds. Compile 029' -Elapsed time 1274 seconds. Compile 029 -+ '[' 0 -eq 0 ']' -Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=65756 -PID=65756 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON' -+ export COMPILE_NR=030 -+ COMPILE_NR=030 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_030' -Removing test failure flag file for compile_030 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_030 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030.env -++ export JOB_NR=192 -++ JOB_NR=192 -++ export COMPILE_NR=030 -++ COMPILE_NR=030 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=030 -+ TEST_NR=030 -+ export JBNME=compile_030 -+ JBNME=compile_030 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -++ date +%s -+ echo -n 'compile_030, 1681919931,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507202 -TEST 030 compile is waiting to enter the queue -TEST 030 compile is submitted -1 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -2 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -3 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -4 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -5 min. TEST 030 compile is running, status: R jobid 9507202 -6 min. TEST 030 compile is running, status: R jobid 9507202 -7 min. TEST 030 compile is running, status: R jobid 9507202 -8 min. TEST 030 compile is running, status: R jobid 9507202 -9 min. TEST 030 compile is running, status: R jobid 9507202 -10 min. TEST 030 compile is running, status: R jobid 9507202 -11 min. TEST 030 compile is running, status: R jobid 9507202 -12 min. TEST 030 compile is running, status: R jobid 9507202 -13 min. TEST 030 compile is running, status: R jobid 9507202 -14 min. TEST 030 compile is running, status: R jobid 9507202 -15 min. TEST 030 compile is running, status: R jobid 9507202 -16 min. TEST 030 compile is running, status: R jobid 9507202 -17 min. TEST 030 compile is running, status: R jobid 9507202 -18 min. TEST 030 compile is running, status: R jobid 9507202 -19 min. TEST 030 compile is running, status: R jobid 9507202 -20 min. TEST 030 compile is running, status: R jobid 9507202 -21 min. TEST 030 compile is running, status: R jobid 9507202 -qstat: 9507202.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507202.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -22 min. TEST 030 compile is finished, status: - jobid 9507202 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_030.exe --rwxr-xr-x 1 jongkim ncar 283659832 Apr 19 16:19 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_030.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030/compile_030_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_030' -Removing test failure flag file for compile_030 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_030 -++ date +%s -+ echo ' 1681921216, 1' -+ elapsed=1285 -+ echo 'Elapsed time 1285 seconds. Compile 030' -Elapsed time 1285 seconds. Compile 030 -+ '[' 0 -eq 0 ']' -Compile 030 elapsed time 1009 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=66428 -PID=66428 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ export COMPILE_NR=031 -+ COMPILE_NR=031 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_031' -Removing test failure flag file for compile_031 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_031 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031.env -++ export JOB_NR=194 -++ JOB_NR=194 -++ export COMPILE_NR=031 -++ COMPILE_NR=031 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=031 -+ TEST_NR=031 -+ export JBNME=compile_031 -+ JBNME=compile_031 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -++ date +%s -+ echo -n 'compile_031, 1681919945,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507203 -TEST 031 compile is waiting to enter the queue -TEST 031 compile is submitted -1 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -2 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -3 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -4 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -5 min. TEST 031 compile is running, status: R jobid 9507203 -6 min. TEST 031 compile is running, status: R jobid 9507203 -7 min. TEST 031 compile is running, status: R jobid 9507203 -8 min. TEST 031 compile is running, status: R jobid 9507203 -9 min. TEST 031 compile is running, status: R jobid 9507203 -10 min. TEST 031 compile is running, status: R jobid 9507203 -11 min. TEST 031 compile is running, status: R jobid 9507203 -12 min. TEST 031 compile is running, status: R jobid 9507203 -13 min. TEST 031 compile is running, status: R jobid 9507203 -14 min. TEST 031 compile is running, status: R jobid 9507203 -15 min. TEST 031 compile is running, status: R jobid 9507203 -16 min. TEST 031 compile is running, status: R jobid 9507203 -17 min. TEST 031 compile is running, status: R jobid 9507203 -18 min. TEST 031 compile is running, status: R jobid 9507203 -19 min. TEST 031 compile is running, status: R jobid 9507203 -qstat: 9507203.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507203.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -20 min. TEST 031 compile is finished, status: - jobid 9507203 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_031.exe --rwxr-xr-x 1 jongkim ncar 360438480 Apr 19 16:17 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_031.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031/compile_031_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_031' -Removing test failure flag file for compile_031 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_031 -++ date +%s -+ echo ' 1681921114, 1' -+ elapsed=1169 -+ echo 'Elapsed time 1169 seconds. Compile 031' -Elapsed time 1169 seconds. Compile 031 -+ '[' 0 -eq 0 ']' -Compile 031 elapsed time 910 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=66712 -PID=66712 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON' -+ export COMPILE_NR=032 -+ COMPILE_NR=032 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_032' -Removing test failure flag file for compile_032 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_032 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032.env -++ export JOB_NR=198 -++ JOB_NR=198 -++ export COMPILE_NR=032 -++ COMPILE_NR=032 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=032 -+ TEST_NR=032 -+ export JBNME=compile_032 -+ JBNME=compile_032 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -++ date +%s -+ echo -n 'compile_032, 1681919949,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507204 -TEST 032 compile is waiting to enter the queue -TEST 032 compile is submitted -1 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -2 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -3 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -4 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -5 min. TEST 032 compile is running, status: R jobid 9507204 -6 min. TEST 032 compile is running, status: R jobid 9507204 -7 min. TEST 032 compile is running, status: R jobid 9507204 -8 min. TEST 032 compile is running, status: R jobid 9507204 -9 min. TEST 032 compile is running, status: R jobid 9507204 -10 min. TEST 032 compile is running, status: R jobid 9507204 -11 min. TEST 032 compile is running, status: R jobid 9507204 -12 min. TEST 032 compile is running, status: R jobid 9507204 -13 min. TEST 032 compile is running, status: R jobid 9507204 -14 min. TEST 032 compile is running, status: R jobid 9507204 -15 min. TEST 032 compile is running, status: R jobid 9507204 -16 min. TEST 032 compile is running, status: R jobid 9507204 -17 min. TEST 032 compile is running, status: R jobid 9507204 -18 min. TEST 032 compile is running, status: R jobid 9507204 -19 min. TEST 032 compile is finished, status: E jobid 9507204 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_032.exe --rwxr-xr-x 1 jongkim ncar 277182056 Apr 19 16:17 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_032.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032/compile_032_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_032' -Removing test failure flag file for compile_032 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_032 -++ date +%s -+ echo ' 1681921053, 1' -+ elapsed=1104 -+ echo 'Elapsed time 1104 seconds. Compile 032' -Elapsed time 1104 seconds. Compile 032 -+ '[' 0 -eq 0 ']' -Compile 032 elapsed time 902 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=71838 -PID=71838 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' -+ export COMPILE_NR=033 -+ COMPILE_NR=033 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_033' -Removing test failure flag file for compile_033 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_033 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033.env -++ export JOB_NR=200 -++ JOB_NR=200 -++ export COMPILE_NR=033 -++ COMPILE_NR=033 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=033 -+ TEST_NR=033 -+ export JBNME=compile_033 -+ JBNME=compile_033 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -++ date +%s -+ echo -n 'compile_033, 1681920008,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507214 -TEST 033 compile is waiting to enter the queue -TEST 033 compile is submitted -1 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -2 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -3 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -4 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -5 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -6 min. TEST 033 compile is running, status: R jobid 9507214 -7 min. TEST 033 compile is running, status: R jobid 9507214 -8 min. TEST 033 compile is running, status: R jobid 9507214 -9 min. TEST 033 compile is running, status: R jobid 9507214 -10 min. TEST 033 compile is running, status: R jobid 9507214 -qstat: 9507214.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507214.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -11 min. TEST 033 compile is finished, status: - jobid 9507214 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_033.exe --rwxr-xr-x 1 jongkim ncar 605857224 Apr 19 16:10 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_033.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033/compile_033_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_033' -Removing test failure flag file for compile_033 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_033 -++ date +%s -+ echo ' 1681920629, 1' -+ elapsed=621 -+ echo 'Elapsed time 621 seconds. Compile 033' -Elapsed time 621 seconds. Compile 033 -+ '[' 0 -eq 0 ']' -Compile 033 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=7648 -PID=7648 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON' -+ export COMPILE_NR=034 -+ COMPILE_NR=034 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_034' -Removing test failure flag file for compile_034 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_034 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034.env -++ export JOB_NR=202 -++ JOB_NR=202 -++ export COMPILE_NR=034 -++ COMPILE_NR=034 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=034 -+ TEST_NR=034 -+ export JBNME=compile_034 -+ JBNME=compile_034 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -++ date +%s -+ echo -n 'compile_034, 1681920189,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507232 -TEST 034 compile is waiting to enter the queue -TEST 034 compile is submitted -1 min. TEST 034 compile is waiting in a queue, status: Q jobid 9507232 -2 min. TEST 034 compile is waiting in a queue, status: Q jobid 9507232 -3 min. TEST 034 compile is running, status: R jobid 9507232 -4 min. TEST 034 compile is running, status: R jobid 9507232 -5 min. TEST 034 compile is running, status: R jobid 9507232 -6 min. TEST 034 compile is running, status: R jobid 9507232 -7 min. TEST 034 compile is running, status: R jobid 9507232 -8 min. TEST 034 compile is running, status: R jobid 9507232 -9 min. TEST 034 compile is running, status: R jobid 9507232 -10 min. TEST 034 compile is running, status: R jobid 9507232 -11 min. TEST 034 compile is running, status: R jobid 9507232 -12 min. TEST 034 compile is running, status: R jobid 9507232 -13 min. TEST 034 compile is running, status: R jobid 9507232 -14 min. TEST 034 compile is running, status: R jobid 9507232 -15 min. TEST 034 compile is running, status: R jobid 9507232 -16 min. TEST 034 compile is running, status: R jobid 9507232 -17 min. TEST 034 compile is running, status: R jobid 9507232 -18 min. TEST 034 compile is running, status: R jobid 9507232 -19 min. TEST 034 compile is running, status: R jobid 9507232 -20 min. TEST 034 compile is running, status: R jobid 9507232 -21 min. TEST 034 compile is running, status: R jobid 9507232 -qstat: 9507232.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507232.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -22 min. TEST 034 compile is finished, status: - jobid 9507232 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_034.exe --rwxr-xr-x 1 jongkim ncar 277009936 Apr 19 16:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_034.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034/compile_034_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_034' -Removing test failure flag file for compile_034 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_034 -++ date +%s -+ echo ' 1681921525, 1' -+ elapsed=1336 -+ echo 'Elapsed time 1336 seconds. Compile 034' -Elapsed time 1336 seconds. Compile 034 -+ '[' 0 -eq 0 ']' -Compile 034 elapsed time 1223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 323.247808 -0:The maximum resident set size (KB) = 2698376 - -Test 001 cpld_control_p8_mixedmode PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 283.218478 -0:The maximum resident set size (KB) = 1437616 - -Test 002 cpld_control_gfsv17 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8 -Checking test 003 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 325.782515 -0:The maximum resident set size (KB) = 2715216 - -Test 003 cpld_control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 191.654366 -0:The maximum resident set size (KB) = 2576416 - -Test 004 cpld_restart_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_qr_p8 -Checking test 005 cpld_control_qr_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 333.837542 -0:The maximum resident set size (KB) = 2719236 - -Test 005 cpld_control_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_qr_p8 -Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 203.500991 -0:The maximum resident set size (KB) = 2593572 - -Test 006 cpld_restart_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_2threads_p8 -Checking test 007 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 319.449605 -0:The maximum resident set size (KB) = 3178008 - -Test 007 cpld_2threads_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 326.626662 -0:The maximum resident set size (KB) = 2720184 - -Test 008 cpld_decomp_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_mpi_p8 -Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 280.797767 -0:The maximum resident set size (KB) = 2680248 - -Test 009 cpld_mpi_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_ciceC_p8 -Checking test 010 cpld_control_ciceC_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 326.237034 -0:The maximum resident set size (KB) = 2715460 - -Test 010 cpld_control_ciceC_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 636.580120 -0:The maximum resident set size (KB) = 3352812 - -Test 011 cpld_control_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 388.553701 -0:The maximum resident set size (KB) = 3276636 - -Test 012 cpld_restart_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 295.894239 -0:The maximum resident set size (KB) = 1435532 - -Test 013 cpld_control_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 196.843420 -0:The maximum resident set size (KB) = 1453108 - -Test 014 cpld_control_nowave_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 351.699327 -0:The maximum resident set size (KB) = 2778712 - -Test 015 cpld_debug_p8 PASS Tries: 2 - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 302.184823 -0:The maximum resident set size (KB) = 1453924 - -Test 016 cpld_debug_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 278.779000 -0:The maximum resident set size (KB) = 1456852 - -Test 017 cpld_control_noaero_p8_agrid PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing 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 - -0:The total amount of wall time = 606.860800 -0:The maximum resident set size (KB) = 2586392 - -Test 018 cpld_control_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - -0:The total amount of wall time = 165.249660 -0:The maximum resident set size (KB) = 2601676 - -Test 019 cpld_warmstart_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - -0:The total amount of wall time = 84.682398 -0:The maximum resident set size (KB) = 2018848 - -Test 020 cpld_restart_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid 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 sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing 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 - -0:The total amount of wall time = 142.357770 -0:The maximum resident set size (KB) = 454412 - -Test 021 control_CubedSphereGrid PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - -0:The total amount of wall time = 140.270029 -0:The maximum resident set size (KB) = 454272 - -Test 022 control_CubedSphereGrid_parallel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_latlon -Checking test 023 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 148.352084 -0:The maximum resident set size (KB) = 454344 - -Test 023 control_latlon PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 150.000772 -0:The maximum resident set size (KB) = 454348 - -Test 024 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c48 -Checking test 025 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 447.470574 -0:The maximum resident set size (KB) = 633508 - -Test 025 control_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c192 -Checking test 026 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 596.749778 -0:The maximum resident set size (KB) = 560248 - -Test 026 control_c192 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384 -Checking test 027 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 590.272811 -0:The maximum resident set size (KB) = 902584 - -Test 027 control_c384 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384gdas -Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - 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 = 525.948979 -0:The maximum resident set size (KB) = 1027116 - -Test 028 control_c384gdas PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy -Checking test 029 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 98.211706 -0:The maximum resident set size (KB) = 459220 - -Test 029 control_stochy PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_restart -Checking test 030 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 53.437383 -0:The maximum resident set size (KB) = 226704 - -Test 030 control_stochy_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp -Checking test 031 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 90.843569 -0:The maximum resident set size (KB) = 458280 - -Test 031 control_lndp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr4 -Checking test 032 control_iovr4 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 - -0:The total amount of wall time = 148.875263 -0:The maximum resident set size (KB) = 454416 - -Test 032 control_iovr4 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr5 -Checking test 033 control_iovr5 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 - -0:The total amount of wall time = 148.723548 -0:The maximum resident set size (KB) = 454288 - -Test 033 control_iovr5 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8 -Checking test 034 control_p8 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 - -0:The total amount of wall time = 184.886156 -0:The maximum resident set size (KB) = 1423940 - -Test 034 control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_p8 -Checking test 035 control_restart_p8 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 - -0:The total amount of wall time = 96.956799 -0:The maximum resident set size (KB) = 583176 - -Test 035 control_restart_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_qr_p8 -Checking test 036 control_qr_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 182.303264 -0:The maximum resident set size (KB) = 1427236 - -Test 036 control_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 99.138111 -0:The maximum resident set size (KB) = 596908 - -Test 037 control_restart_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 190.798621 -0:The maximum resident set size (KB) = 1418764 - -Test 038 control_decomp_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 173.993645 -0:The maximum resident set size (KB) = 1510432 - -Test 039 control_2threads_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_lndp -Checking test 040 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -0:The total amount of wall time = 338.425811 -0:The maximum resident set size (KB) = 1424948 - -Test 040 control_p8_lndp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp 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 - -0:The total amount of wall time = 258.756869 -0:The maximum resident set size (KB) = 1480300 - -Test 041 control_p8_rrtmgp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_mynn -Checking test 042 control_p8_mynn 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 - -0:The total amount of wall time = 187.198473 -0:The maximum resident set size (KB) = 1427956 - -Test 042 control_p8_mynn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/merra2_thompson -Checking test 043 merra2_thompson 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 - -0:The total amount of wall time = 209.432933 -0:The maximum resident set size (KB) = 1429696 - -Test 043 merra2_thompson PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control -Checking test 044 regional_control 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 - -0:The total amount of wall time = 345.645007 -0:The maximum resident set size (KB) = 604808 - -Test 044 regional_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart -Checking test 045 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 170.776429 -0:The maximum resident set size (KB) = 594212 - -Test 045 regional_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_qr -Checking test 046 regional_control_qr 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 - -0:The total amount of wall time = 346.584383 -0:The maximum resident set size (KB) = 604832 - -Test 046 regional_control_qr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart_qr -Checking test 047 regional_restart_qr results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 177.857864 -0:The maximum resident set size (KB) = 594208 - -Test 047 regional_restart_qr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_decomp -Checking test 048 regional_decomp 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 - -0:The total amount of wall time = 361.479547 -0:The maximum resident set size (KB) = 598916 - -Test 048 regional_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2threads -Checking test 049 regional_2threads 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 - -0:The total amount of wall time = 205.169488 -0:The maximum resident set size (KB) = 611504 - -Test 049 regional_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_noquilt -Checking test 050 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -0:The total amount of wall time = 364.785237 -0:The maximum resident set size (KB) = 599052 - -Test 050 regional_noquilt PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK - -0:The total amount of wall time = 338.888919 -0:The maximum resident set size (KB) = 596728 - -Test 051 regional_netcdf_parallel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp 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 - -0:The total amount of wall time = 346.737229 -0:The maximum resident set size (KB) = 604824 - -Test 052 regional_2dwrtdecomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_wofs -Checking test 053 regional_wofs 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 - -0:The total amount of wall time = 429.869366 -0:The maximum resident set size (KB) = 275828 - -Test 053 regional_wofs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control -Checking test 054 rap_control 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 - -0:The total amount of wall time = 476.057633 -0:The maximum resident set size (KB) = 823364 - -Test 054 rap_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb 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 - -0:The total amount of wall time = 262.213664 -0:The maximum resident set size (KB) = 952080 - -Test 055 regional_spp_sppt_shum_skeb PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_decomp -Checking test 056 rap_decomp 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 - -0:The total amount of wall time = 506.633123 -0:The maximum resident set size (KB) = 822220 - -Test 056 rap_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads -Checking test 057 rap_2threads 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 - -0:The total amount of wall time = 461.546221 -0:The maximum resident set size (KB) = 893584 - -Test 057 rap_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart -Checking test 058 rap_restart 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 - -0:The total amount of wall time = 244.002679 -0:The maximum resident set size (KB) = 571484 - -Test 058 rap_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 482.582957 -0:The maximum resident set size (KB) = 823424 - -Test 059 rap_sfcdiff PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 507.450761 -0:The maximum resident set size (KB) = 822240 - -Test 060 rap_sfcdiff_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart 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 - -0:The total amount of wall time = 360.950337 -0:The maximum resident set size (KB) = 570544 - -Test 061 rap_sfcdiff_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control -Checking test 062 hrrr_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 466.603670 -0:The maximum resident set size (KB) = 820848 - -Test 062 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 488.455334 -0:The maximum resident set size (KB) = 820848 - -Test 063 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads -Checking test 064 hrrr_control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 442.141825 -0:The maximum resident set size (KB) = 888488 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart -Checking test 065 hrrr_control_restart 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 - -0:The total amount of wall time = 344.086012 -0:The maximum resident set size (KB) = 566352 - -Test 065 hrrr_control_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta -Checking test 066 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 476.729680 -0:The maximum resident set size (KB) = 819452 - -Test 066 rrfs_v1beta PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl -Checking test 067 rrfs_v1nssl 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 - -0:The total amount of wall time = 587.560475 -0:The maximum resident set size (KB) = 508704 - -Test 067 rrfs_v1nssl PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn 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 - -0:The total amount of wall time = 565.648225 -0:The maximum resident set size (KB) = 502516 - -Test 068 rrfs_v1nssl_nohailnoccn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 155.222855 -0:The maximum resident set size (KB) = 675236 - -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 95.558075 -0:The maximum resident set size (KB) = 693964 - -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 135.446161 -0:The maximum resident set size (KB) = 654004 - -Test 071 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 156.980562 -0:The maximum resident set size (KB) = 677892 - -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 71.902954 -0:The maximum resident set size (KB) = 632128 - -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg -Checking test 074 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 398.825305 -0:The maximum resident set size (KB) = 527700 - -Test 074 control_csawmg PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt -Checking test 075 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 396.293106 -0:The maximum resident set size (KB) = 528372 - -Test 075 control_csawmgt PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras -Checking test 076 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 209.019942 -0:The maximum resident set size (KB) = 491216 - -Test 076 control_ras PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam -Checking test 077 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -0:The total amount of wall time = 130.339794 -0:The maximum resident set size (KB) = 206284 - -Test 077 control_wam PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_faster -Checking test 078 control_p8_faster 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 - -0:The total amount of wall time = 173.370956 -0:The maximum resident set size (KB) = 1423728 - -Test 078 control_p8_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_faster -Checking test 079 regional_control_faster 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 - -0:The total amount of wall time = 327.839386 -0:The maximum resident set size (KB) = 604604 - -Test 079 regional_control_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug 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.958124 -0:The maximum resident set size (KB) = 703832 - -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 497.351031 -0:The maximum resident set size (KB) = 725300 - -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_debug -Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 779.758074 -0:The maximum resident set size (KB) = 682884 - -Test 082 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_debug -Checking test 083 control_CubedSphereGrid_debug 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 - -0:The total amount of wall time = 155.705236 -0:The maximum resident set size (KB) = 617584 - -Test 083 control_CubedSphereGrid_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel_debug -Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 157.345775 -0:The maximum resident set size (KB) = 615524 - -Test 084 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_debug -Checking test 085 control_stochy_debug 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.707591 -0:The maximum resident set size (KB) = 621172 - -Test 085 control_stochy_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp_debug -Checking test 086 control_lndp_debug 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.546108 -0:The maximum resident set size (KB) = 620028 - -Test 086 control_lndp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg_debug -Checking test 087 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 249.229441 -0:The maximum resident set size (KB) = 666408 - -Test 087 control_csawmg_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt_debug -Checking test 088 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 245.216343 -0:The maximum resident set size (KB) = 667396 - -Test 088 control_csawmgt_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras_debug -Checking test 089 control_ras_debug 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.219816 -0:The maximum resident set size (KB) = 630452 - -Test 089 control_ras_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_diag_debug -Checking test 090 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 160.454000 -0:The maximum resident set size (KB) = 674936 - -Test 090 control_diag_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_debug_p8 -Checking test 091 control_debug_p8 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.846871 -0:The maximum resident set size (KB) = 1442392 - -Test 091 control_debug_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_debug -Checking test 092 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -0:The total amount of wall time = 1038.893894 -0:The maximum resident set size (KB) = 625264 - -Test 092 regional_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug -Checking test 093 rap_control_debug 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.544591 -0:The maximum resident set size (KB) = 986676 - -Test 093 rap_control_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug -Checking test 094 hrrr_control_debug 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.380766 -0:The maximum resident set size (KB) = 984240 - -Test 094 hrrr_control_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_drag_suite_debug -Checking test 095 rap_unified_drag_suite_debug 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.901845 -0:The maximum resident set size (KB) = 986636 - -Test 095 rap_unified_drag_suite_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_diag_debug -Checking test 096 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 298.537588 -0:The maximum resident set size (KB) = 1069996 - -Test 096 rap_diag_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_cires_ugwp_debug -Checking test 097 rap_cires_ugwp_debug 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.691711 -0:The maximum resident set size (KB) = 985896 - -Test 097 rap_cires_ugwp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_ugwp_debug -Checking test 098 rap_unified_ugwp_debug 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.833698 -0:The maximum resident set size (KB) = 986736 - -Test 098 rap_unified_ugwp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_lndp_debug -Checking test 099 rap_lndp_debug 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.859725 -0:The maximum resident set size (KB) = 987288 - -Test 099 rap_lndp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_flake_debug -Checking test 100 rap_flake_debug 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.913373 -0:The maximum resident set size (KB) = 986672 - -Test 100 rap_flake_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_progcld_thompson_debug -Checking test 101 rap_progcld_thompson_debug 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.536893 -0:The maximum resident set size (KB) = 986688 - -Test 101 rap_progcld_thompson_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_debug -Checking test 102 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 297.647128 -0:The maximum resident set size (KB) = 984640 - -Test 102 rap_noah_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_debug -Checking test 103 rap_sfcdiff_debug 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.596968 -0:The maximum resident set size (KB) = 986568 - -Test 103 rap_sfcdiff_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 581.022047 -0:The maximum resident set size (KB) = 985188 - -Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta_debug -Checking test 105 rrfs_v1beta_debug 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.265867 -0:The maximum resident set size (KB) = 983392 - -Test 105 rrfs_v1beta_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam_debug -Checking test 106 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -0:The total amount of wall time = 290.837122 -0:The maximum resident set size (KB) = 235304 - -Test 106 control_wam_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 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 - -0:The total amount of wall time = 248.192314 -0:The maximum resident set size (KB) = 851296 - -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn32_phy32 -Checking test 108 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 404.180404 -0:The maximum resident set size (KB) = 707964 - -Test 108 rap_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_dyn32_phy32 -Checking test 109 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 210.697131 -0:The maximum resident set size (KB) = 706508 - -Test 109 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads_dyn32_phy32 -Checking test 110 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 390.548730 -0:The maximum resident set size (KB) = 759508 - -Test 110 rap_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads_dyn32_phy32 -Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 200.770576 -0:The maximum resident set size (KB) = 756388 - -Test 111 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp_dyn32_phy32 -Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 219.220429 -0:The maximum resident set size (KB) = 704308 - -Test 112 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart_dyn32_phy32 -Checking test 113 rap_restart_dyn32_phy32 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 - -0:The total amount of wall time = 298.960030 -0:The maximum resident set size (KB) = 544696 - -Test 113 rap_restart_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart_dyn32_phy32 -Checking test 114 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 230.804297 -0:The maximum resident set size (KB) = 536892 - -Test 114 hrrr_control_restart_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32 -Checking test 115 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 274.277225 -0:The maximum resident set size (KB) = 730884 - -Test 115 rap_control_dyn64_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug_dyn32_phy32 -Checking test 116 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 284.092107 -0:The maximum resident set size (KB) = 872876 - -Test 116 rap_control_debug_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug_dyn32_phy32 -Checking test 117 hrrr_control_debug_dyn32_phy32 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.807695 -0:The maximum resident set size (KB) = 871116 - -Test 117 hrrr_control_debug_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32_debug -Checking test 118 rap_control_dyn64_phy32_debug 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.275408 -0:The maximum resident set size (KB) = 890092 - -Test 118 rap_control_dyn64_phy32_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm -Checking test 119 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -0:The total amount of wall time = 263.337718 -0:The maximum resident set size (KB) = 741796 - -Test 119 hafs_regional_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_thompson_gfdlsf -Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -0:The total amount of wall time = 291.218797 -0:The maximum resident set size (KB) = 1099660 - -Test 120 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn -Checking test 121 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 459.257499 -0:The maximum resident set size (KB) = 740560 - -Test 121 hafs_regional_atm_ocn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_wav -Checking test 122 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1028.036737 -0:The maximum resident set size (KB) = 768168 - -Test 122 hafs_regional_atm_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn_wav -Checking test 123 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - 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 = 1143.844600 -0:The maximum resident set size (KB) = 792436 - -Test 123 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_1nest_atm -Checking test 124 hafs_regional_1nest_atm 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 = 376.961886 -0:The maximum resident set size (KB) = 300192 - -Test 124 hafs_regional_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_telescopic_2nests_atm -Checking test 125 hafs_regional_telescopic_2nests_atm 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 - -0:The total amount of wall time = 428.291238 -0:The maximum resident set size (KB) = 320464 - -Test 125 hafs_regional_telescopic_2nests_atm PASS Tries: 2 - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_1nest_atm -Checking test 126 hafs_global_1nest_atm 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 = 175.049290 -0:The maximum resident set size (KB) = 214512 - -Test 126 hafs_global_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_multiple_4nests_atm -Checking test 127 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - -0:The total amount of wall time = 485.414990 -0:The maximum resident set size (KB) = 302640 - -Test 127 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_specified_moving_1nest_atm -Checking test 128 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -0:The total amount of wall time = 249.288476 -0:The maximum resident set size (KB) = 317396 - -Test 128 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm -Checking test 129 hafs_regional_storm_following_1nest_atm 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 = 229.504894 -0:The maximum resident set size (KB) = 317972 - -Test 129 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -0:The total amount of wall time = 300.472312 -0:The maximum resident set size (KB) = 376048 - -Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_storm_following_1nest_atm -Checking test 131 hafs_global_storm_following_1nest_atm 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.161907 -0:The maximum resident set size (KB) = 233180 - -Test 131 hafs_global_storm_following_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -0:The total amount of wall time = 766.907498 -0:The maximum resident set size (KB) = 402892 - -Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 724.022212 -0:The maximum resident set size (KB) = 427020 - -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn -Checking test 134 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 405.888203 -0:The maximum resident set size (KB) = 755532 - -Test 134 hafs_regional_docn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn_oisst -Checking test 135 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 399.660057 -0:The maximum resident set size (KB) = 734800 - -Test 135 hafs_regional_docn_oisst PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_datm_cdeps -Checking test 136 hafs_regional_datm_cdeps 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 = 1272.203095 -0:The maximum resident set size (KB) = 887888 - -Test 136 hafs_regional_datm_cdeps PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr -Checking test 137 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 168.375777 -0:The maximum resident set size (KB) = 716692 - -Test 137 datm_cdeps_control_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_restart_cfsr -Checking test 138 datm_cdeps_restart_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 100.451768 -0:The maximum resident set size (KB) = 715916 - -Test 138 datm_cdeps_restart_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_gefs -Checking test 139 datm_cdeps_control_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 162.952423 -0:The maximum resident set size (KB) = 607484 - -Test 139 datm_cdeps_control_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_iau_gefs -Checking test 140 datm_cdeps_iau_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 163.800197 -0:The maximum resident set size (KB) = 607444 - -Test 140 datm_cdeps_iau_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_stochy_gefs -Checking test 141 datm_cdeps_stochy_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 163.599324 -0:The maximum resident set size (KB) = 607500 - -Test 141 datm_cdeps_stochy_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_ciceC_cfsr -Checking test 142 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 167.851939 -0:The maximum resident set size (KB) = 716692 - -Test 142 datm_cdeps_ciceC_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_cfsr -Checking test 143 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 177.420459 -0:The maximum resident set size (KB) = 716700 - -Test 143 datm_cdeps_bulk_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_gefs -Checking test 144 datm_cdeps_bulk_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 154.810043 -0:The maximum resident set size (KB) = 607416 - -Test 144 datm_cdeps_bulk_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_cfsr -Checking test 145 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - -0:The total amount of wall time = 432.039969 -0:The maximum resident set size (KB) = 514328 - -Test 145 datm_cdeps_mx025_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_gefs -Checking test 146 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - -0:The total amount of wall time = 420.306111 -0:The maximum resident set size (KB) = 494736 - -Test 146 datm_cdeps_mx025_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_multiple_files_cfsr -Checking test 147 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 166.376409 -0:The maximum resident set size (KB) = 717068 - -Test 147 datm_cdeps_multiple_files_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_3072x1536_cfsr -Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.021302 -0:The maximum resident set size (KB) = 1942028 - -Test 148 datm_cdeps_3072x1536_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_gfs -Checking test 149 datm_cdeps_gfs results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 268.804073 -0:The maximum resident set size (KB) = 1942004 - -Test 149 datm_cdeps_gfs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_debug_cfsr -Checking test 150 datm_cdeps_debug_cfsr results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - -0:The total amount of wall time = 369.027478 -0:The maximum resident set size (KB) = 700640 - -Test 150 datm_cdeps_debug_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr_faster -Checking test 151 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-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.297973 -0:The maximum resident set size (KB) = 728684 - -Test 151 datm_cdeps_control_cfsr_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3 -Checking test 152 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - 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.216235 -0:The maximum resident set size (KB) = 208244 - -Test 152 datm_cdeps_lnd_gswp3 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3_rst -Checking test 153 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -0:The total amount of wall time = 15.821305 -0:The maximum resident set size (KB) = 208232 - -Test 153 datm_cdeps_lnd_gswp3_rst PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_atmlnd_sbs -Checking test 154 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - -0:The total amount of wall time = 236.712703 -0:The maximum resident set size (KB) = 1462932 - -Test 154 control_p8_atmlnd_sbs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmwav_control_noaero_p8 -Checking test 155 atmwav_control_noaero_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - -0:The total amount of wall time = 103.280325 -0:The maximum resident set size (KB) = 1434340 - -Test 155 atmwav_control_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_atmwav -Checking test 156 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -0:The total amount of wall time = 102.909689 -0:The maximum resident set size (KB) = 474692 - -Test 156 control_atmwav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8 -Checking test 157 atmaero_control_p8 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 - -0:The total amount of wall time = 252.567753 -0:The maximum resident set size (KB) = 2704052 - -Test 157 atmaero_control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad 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 - -0:The total amount of wall time = 309.250990 -0:The maximum resident set size (KB) = 2758208 - -Test 158 atmaero_control_p8_rad PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro 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 - -0:The total amount of wall time = 309.759897 -0:The maximum resident set size (KB) = 2764556 - -Test 159 atmaero_control_p8_rad_micro PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq -Checking test 160 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 751.258022 -0:The maximum resident set size (KB) = 999360 - -Test 160 regional_atmaq PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 699.046862 -0:The maximum resident set size (KB) = 999160 - -Test 161 regional_atmaq_faster PASS - -Wed Apr 19 09:16:44 MDT 2023 +Fri Apr 21 13:23:30 MDT 2023 Start Regression test -Test 008 compile FAIL - -Test 008 compile FAIL - -Compile 001 elapsed time 1524 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 478 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 422 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 1474 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1390 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 455 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1071 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 007 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 993 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 011 elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1804 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 969 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 011 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1146 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 021 elapsed time 355 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1130 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 024 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 397 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1114 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 021 elapsed time 340 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1105 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 024 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 429 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1009 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 910 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 902 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 989 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1015 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 288 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1020 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14153,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.247808 -0:The maximum resident set size (KB) = 2698376 +0:The total amount of wall time = 324.519956 +0:The maximum resident set size (KB) = 2698440 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14224,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.218478 -0:The maximum resident set size (KB) = 1437616 +0:The total amount of wall time = 283.118296 +0:The maximum resident set size (KB) = 1437688 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14296,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.782515 -0:The maximum resident set size (KB) = 2715216 +0:The total amount of wall time = 322.808786 +0:The maximum resident set size (KB) = 2715196 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14356,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 191.654366 -0:The maximum resident set size (KB) = 2576416 +0:The total amount of wall time = 186.085532 +0:The maximum resident set size (KB) = 2576488 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14428,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 333.837542 -0:The maximum resident set size (KB) = 2719236 +0:The total amount of wall time = 320.882650 +0:The maximum resident set size (KB) = 2719364 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14488,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 203.500991 -0:The maximum resident set size (KB) = 2593572 +0:The total amount of wall time = 200.080221 +0:The maximum resident set size (KB) = 2593640 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14548,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.449605 -0:The maximum resident set size (KB) = 3178008 +0:The total amount of wall time = 250.324959 +0:The maximum resident set size (KB) = 3178164 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14608,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.626662 -0:The maximum resident set size (KB) = 2720184 +0:The total amount of wall time = 321.796032 +0:The maximum resident set size (KB) = 2720236 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14668,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.797767 -0:The maximum resident set size (KB) = 2680248 +0:The total amount of wall time = 278.563096 +0:The maximum resident set size (KB) = 2680208 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14740,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.237034 -0:The maximum resident set size (KB) = 2715460 +0:The total amount of wall time = 322.504974 +0:The maximum resident set size (KB) = 2715312 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -14800,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 636.580120 -0:The maximum resident set size (KB) = 3352812 +0:The total amount of wall time = 635.473410 +0:The maximum resident set size (KB) = 3351932 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -14860,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 388.553701 -0:The maximum resident set size (KB) = 3276636 +0:The total amount of wall time = 386.942961 +0:The maximum resident set size (KB) = 3276112 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14931,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.894239 -0:The maximum resident set size (KB) = 1435532 +0:The total amount of wall time = 287.924072 +0:The maximum resident set size (KB) = 1435696 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -15000,14 +949,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 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 = 196.843420 -0:The maximum resident set size (KB) = 1453108 +0:The total amount of wall time = 198.067762 +0:The maximum resident set size (KB) = 1453008 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -15060,14 +1009,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.699327 -0:The maximum resident set size (KB) = 2778712 +0:The total amount of wall time = 351.436859 +0:The maximum resident set size (KB) = 2778756 -Test 015 cpld_debug_p8 PASS Tries: 2 +Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -15119,14 +1068,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.184823 -0:The maximum resident set size (KB) = 1453924 +0:The total amount of wall time = 301.265299 +0:The maximum resident set size (KB) = 1454024 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -15188,14 +1137,14 @@ Checking test 017 cpld_control_noaero_p8_agrid 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.779000 -0:The maximum resident set size (KB) = 1456852 +0:The total amount of wall time = 251.765652 +0:The maximum resident set size (KB) = 1456912 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -15245,14 +1194,14 @@ Checking test 018 cpld_control_c48 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 = 606.860800 -0:The maximum resident set size (KB) = 2586392 +0:The total amount of wall time = 601.613846 +0:The maximum resident set size (KB) = 2586480 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -15302,14 +1251,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 165.249660 -0:The maximum resident set size (KB) = 2601676 +0:The total amount of wall time = 163.439060 +0:The maximum resident set size (KB) = 2601536 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -15359,14 +1308,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.682398 -0:The maximum resident set size (KB) = 2018848 +0:The total amount of wall time = 85.281952 +0:The maximum resident set size (KB) = 2019616 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -15393,28 +1342,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.357770 -0:The maximum resident set size (KB) = 454412 +0:The total amount of wall time = 143.325584 +0:The maximum resident set size (KB) = 454260 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.270029 -0:The maximum resident set size (KB) = 454272 +0:The total amount of wall time = 140.253719 +0:The maximum resident set size (KB) = 454216 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15425,14 +1374,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.352084 -0:The maximum resident set size (KB) = 454344 +0:The total amount of wall time = 147.236305 +0:The maximum resident set size (KB) = 454296 Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -15443,14 +1392,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.000772 -0:The maximum resident set size (KB) = 454348 +0:The total amount of wall time = 150.193007 +0:The maximum resident set size (KB) = 454288 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15489,14 +1438,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 447.470574 -0:The maximum resident set size (KB) = 633508 +0:The total amount of wall time = 444.470436 +0:The maximum resident set size (KB) = 633524 Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15507,14 +1456,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.749778 -0:The maximum resident set size (KB) = 560248 +0:The total amount of wall time = 599.519531 +0:The maximum resident set size (KB) = 560304 Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -15525,14 +1474,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 590.272811 -0:The maximum resident set size (KB) = 902584 +0:The total amount of wall time = 586.513005 +0:The maximum resident set size (KB) = 899512 Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -15575,14 +1524,14 @@ Checking test 028 control_c384gdas 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 = 525.948979 -0:The maximum resident set size (KB) = 1027116 +0:The total amount of wall time = 517.549484 +0:The maximum resident set size (KB) = 1027252 Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -15593,28 +1542,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.211706 -0:The maximum resident set size (KB) = 459220 +0:The total amount of wall time = 98.793386 +0:The maximum resident set size (KB) = 459240 Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.437383 -0:The maximum resident set size (KB) = 226704 +0:The total amount of wall time = 53.174056 +0:The maximum resident set size (KB) = 226480 Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -15625,14 +1574,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.843569 -0:The maximum resident set size (KB) = 458280 +0:The total amount of wall time = 90.734473 +0:The maximum resident set size (KB) = 458276 Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15647,14 +1596,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.875263 -0:The maximum resident set size (KB) = 454416 +0:The total amount of wall time = 147.550293 +0:The maximum resident set size (KB) = 454228 Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15669,14 +1618,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.723548 -0:The maximum resident set size (KB) = 454288 +0:The total amount of wall time = 148.294688 +0:The maximum resident set size (KB) = 454220 Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15723,14 +1672,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.886156 -0:The maximum resident set size (KB) = 1423940 +0:The total amount of wall time = 183.019509 +0:The maximum resident set size (KB) = 1423916 Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -15769,14 +1718,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.956799 -0:The maximum resident set size (KB) = 583176 +0:The total amount of wall time = 95.944739 +0:The maximum resident set size (KB) = 582868 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15823,14 +1772,14 @@ Checking test 036 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 182.303264 -0:The maximum resident set size (KB) = 1427236 +0:The total amount of wall time = 183.529750 +0:The maximum resident set size (KB) = 1427212 Test 036 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -15869,14 +1818,14 @@ Checking test 037 control_restart_qr_p8 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 = 99.138111 -0:The maximum resident set size (KB) = 596908 +0:The total amount of wall time = 97.405363 +0:The maximum resident set size (KB) = 596860 Test 037 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15919,14 +1868,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 190.798621 -0:The maximum resident set size (KB) = 1418764 +0:The total amount of wall time = 190.730726 +0:The maximum resident set size (KB) = 1418408 Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15969,14 +1918,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.993645 -0:The maximum resident set size (KB) = 1510432 +0:The total amount of wall time = 171.118969 +0:The maximum resident set size (KB) = 1509200 Test 039 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15995,14 +1944,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 338.425811 +0:The total amount of wall time = 335.711546 0:The maximum resident set size (KB) = 1424948 Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16049,14 +1998,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 258.756869 -0:The maximum resident set size (KB) = 1480300 +0:The total amount of wall time = 255.776175 +0:The maximum resident set size (KB) = 1480304 Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16103,14 +2052,14 @@ Checking test 042 control_p8_mynn results .... Comparing 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.198473 -0:The maximum resident set size (KB) = 1427956 +0:The total amount of wall time = 184.704349 +0:The maximum resident set size (KB) = 1427940 Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16157,14 +2106,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.432933 -0:The maximum resident set size (KB) = 1429696 +0:The total amount of wall time = 201.847984 +0:The maximum resident set size (KB) = 1429724 Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16175,28 +2124,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 345.645007 -0:The maximum resident set size (KB) = 604808 +0:The total amount of wall time = 340.684976 +0:The maximum resident set size (KB) = 604856 Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.776429 -0:The maximum resident set size (KB) = 594212 +0:The total amount of wall time = 175.307742 +0:The maximum resident set size (KB) = 594236 Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16207,28 +2156,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.584383 -0:The maximum resident set size (KB) = 604832 +0:The total amount of wall time = 341.766730 +0:The maximum resident set size (KB) = 604828 Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.857864 -0:The maximum resident set size (KB) = 594208 +0:The total amount of wall time = 177.924105 +0:The maximum resident set size (KB) = 594172 Test 047 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16239,14 +2188,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 361.479547 -0:The maximum resident set size (KB) = 598916 +0:The total amount of wall time = 363.628035 +0:The maximum resident set size (KB) = 598888 Test 048 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16257,14 +2206,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 205.169488 -0:The maximum resident set size (KB) = 611504 +0:The total amount of wall time = 204.270757 +0:The maximum resident set size (KB) = 611600 Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -16272,28 +2221,28 @@ Checking test 050 regional_noquilt 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 = 364.785237 -0:The maximum resident set size (KB) = 599052 +0:The total amount of wall time = 356.822041 +0:The maximum resident set size (KB) = 599032 Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 338.888919 -0:The maximum resident set size (KB) = 596728 +0:The total amount of wall time = 339.817267 +0:The maximum resident set size (KB) = 596732 Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16304,14 +2253,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.737229 -0:The maximum resident set size (KB) = 604824 +0:The total amount of wall time = 340.159184 +0:The maximum resident set size (KB) = 604832 Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16322,14 +2271,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 429.869366 -0:The maximum resident set size (KB) = 275828 +0:The total amount of wall time = 431.846936 +0:The maximum resident set size (KB) = 275892 Test 053 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16376,14 +2325,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.057633 -0:The maximum resident set size (KB) = 823364 +0:The total amount of wall time = 481.913263 +0:The maximum resident set size (KB) = 823376 Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -16394,14 +2343,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 262.213664 -0:The maximum resident set size (KB) = 952080 +0:The total amount of wall time = 261.659529 +0:The maximum resident set size (KB) = 952340 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16448,14 +2397,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.633123 -0:The maximum resident set size (KB) = 822220 +0:The total amount of wall time = 504.691957 +0:The maximum resident set size (KB) = 822192 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16502,14 +2451,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 461.546221 -0:The maximum resident set size (KB) = 893584 +0:The total amount of wall time = 462.180223 +0:The maximum resident set size (KB) = 893540 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -16548,14 +2497,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 244.002679 -0:The maximum resident set size (KB) = 571484 +0:The total amount of wall time = 239.216202 +0:The maximum resident set size (KB) = 571332 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16602,14 +2551,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 482.582957 -0:The maximum resident set size (KB) = 823424 +0:The total amount of wall time = 484.678902 +0:The maximum resident set size (KB) = 823340 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16656,14 +2605,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 507.450761 -0:The maximum resident set size (KB) = 822240 +0:The total amount of wall time = 504.403689 +0:The maximum resident set size (KB) = 822328 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -16702,14 +2651,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 360.950337 -0:The maximum resident set size (KB) = 570544 +0:The total amount of wall time = 359.800845 +0:The maximum resident set size (KB) = 570656 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16756,14 +2705,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 466.603670 -0:The maximum resident set size (KB) = 820848 +0:The total amount of wall time = 462.437771 +0:The maximum resident set size (KB) = 820816 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16810,14 +2759,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 488.455334 -0:The maximum resident set size (KB) = 820848 +0:The total amount of wall time = 485.078210 +0:The maximum resident set size (KB) = 820648 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16864,14 +2813,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.141825 -0:The maximum resident set size (KB) = 888488 +0:The total amount of wall time = 440.016661 +0:The maximum resident set size (KB) = 888408 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -16910,14 +2859,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.086012 -0:The maximum resident set size (KB) = 566352 +0:The total amount of wall time = 343.926956 +0:The maximum resident set size (KB) = 566572 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16964,14 +2913,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.729680 -0:The maximum resident set size (KB) = 819452 +0:The total amount of wall time = 476.645696 +0:The maximum resident set size (KB) = 819472 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16986,14 +2935,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 587.560475 -0:The maximum resident set size (KB) = 508704 +0:The total amount of wall time = 589.871051 +0:The maximum resident set size (KB) = 508796 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17008,14 +2957,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 565.648225 -0:The maximum resident set size (KB) = 502516 +0:The total amount of wall time = 569.606949 +0:The maximum resident set size (KB) = 502712 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17024,14 +2973,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 155.222855 -0:The maximum resident set size (KB) = 675236 +0:The total amount of wall time = 152.907438 +0:The maximum resident set size (KB) = 675324 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17040,14 +2989,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 95.558075 -0:The maximum resident set size (KB) = 693964 +0:The total amount of wall time = 93.245534 +0:The maximum resident set size (KB) = 693856 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17056,14 +3005,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 135.446161 -0:The maximum resident set size (KB) = 654004 +0:The total amount of wall time = 137.550660 +0:The maximum resident set size (KB) = 654104 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17072,26 +3021,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 156.980562 -0:The maximum resident set size (KB) = 677892 +0:The total amount of wall time = 153.935152 +0:The maximum resident set size (KB) = 677920 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.902954 -0:The maximum resident set size (KB) = 632128 +0:The total amount of wall time = 70.610874 +0:The maximum resident set size (KB) = 632208 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -17102,14 +3051,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.825305 -0:The maximum resident set size (KB) = 527700 +0:The total amount of wall time = 400.249782 +0:The maximum resident set size (KB) = 527740 Test 074 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -17120,14 +3069,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 396.293106 -0:The maximum resident set size (KB) = 528372 +0:The total amount of wall time = 394.323575 +0:The maximum resident set size (KB) = 528404 Test 075 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -17138,26 +3087,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 209.019942 -0:The maximum resident set size (KB) = 491216 +0:The total amount of wall time = 205.739704 +0:The maximum resident set size (KB) = 491288 Test 076 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.339794 -0:The maximum resident set size (KB) = 206284 +0:The total amount of wall time = 129.525401 +0:The maximum resident set size (KB) = 206292 Test 077 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -17204,14 +3153,14 @@ Checking test 078 control_p8_faster results .... Comparing 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.370956 -0:The maximum resident set size (KB) = 1423728 +0:The total amount of wall time = 167.029387 +0:The maximum resident set size (KB) = 1423720 Test 078 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -17222,56 +3171,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 327.839386 -0:The maximum resident set size (KB) = 604604 +0:The total amount of wall time = 324.581453 +0:The maximum resident set size (KB) = 604708 Test 079 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug 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.958124 -0:The maximum resident set size (KB) = 703832 +0:The total amount of wall time = 871.802541 +0:The maximum resident set size (KB) = 704768 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 497.351031 -0:The maximum resident set size (KB) = 725300 +0:The total amount of wall time = 499.740002 +0:The maximum resident set size (KB) = 724256 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 779.758074 -0:The maximum resident set size (KB) = 682884 +0:The total amount of wall time = 782.177368 +0:The maximum resident set size (KB) = 683284 Test 082 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -17298,334 +3247,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.705236 -0:The maximum resident set size (KB) = 617584 +0:The total amount of wall time = 157.352526 +0:The maximum resident set size (KB) = 617452 Test 083 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.345775 -0:The maximum resident set size (KB) = 615524 +0:The total amount of wall time = 156.062841 +0:The maximum resident set size (KB) = 615548 Test 084 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_debug Checking test 085 control_stochy_debug 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.707591 -0:The maximum resident set size (KB) = 621172 +0:The total amount of wall time = 175.308146 +0:The maximum resident set size (KB) = 621216 Test 085 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp_debug Checking test 086 control_lndp_debug 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.546108 -0:The maximum resident set size (KB) = 620028 +0:The total amount of wall time = 157.292235 +0:The maximum resident set size (KB) = 620000 Test 086 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.229441 -0:The maximum resident set size (KB) = 666408 +0:The total amount of wall time = 248.097119 +0:The maximum resident set size (KB) = 666368 Test 087 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.216343 -0:The maximum resident set size (KB) = 667396 +0:The total amount of wall time = 244.860441 +0:The maximum resident set size (KB) = 667372 Test 088 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras_debug Checking test 089 control_ras_debug 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.219816 -0:The maximum resident set size (KB) = 630452 +0:The total amount of wall time = 162.424074 +0:The maximum resident set size (KB) = 630328 Test 089 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.454000 -0:The maximum resident set size (KB) = 674936 +0:The total amount of wall time = 159.185965 +0:The maximum resident set size (KB) = 674836 Test 090 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_debug_p8 Checking test 091 control_debug_p8 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.846871 -0:The maximum resident set size (KB) = 1442392 +0:The total amount of wall time = 176.308639 +0:The maximum resident set size (KB) = 1442356 Test 091 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1038.893894 -0:The maximum resident set size (KB) = 625264 +0:The total amount of wall time = 1036.935412 +0:The maximum resident set size (KB) = 625924 Test 092 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug Checking test 093 rap_control_debug 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.544591 -0:The maximum resident set size (KB) = 986676 +0:The total amount of wall time = 287.084698 +0:The maximum resident set size (KB) = 986496 Test 093 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug Checking test 094 hrrr_control_debug 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.380766 -0:The maximum resident set size (KB) = 984240 +0:The total amount of wall time = 281.600489 +0:The maximum resident set size (KB) = 984084 Test 094 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug 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.901845 -0:The maximum resident set size (KB) = 986636 +0:The total amount of wall time = 287.472533 +0:The maximum resident set size (KB) = 986652 Test 095 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.537588 -0:The maximum resident set size (KB) = 1069996 +0:The total amount of wall time = 297.992960 +0:The maximum resident set size (KB) = 1069984 Test 096 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug 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.691711 -0:The maximum resident set size (KB) = 985896 +0:The total amount of wall time = 291.742725 +0:The maximum resident set size (KB) = 985792 Test 097 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug 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.833698 -0:The maximum resident set size (KB) = 986736 +0:The total amount of wall time = 295.201147 +0:The maximum resident set size (KB) = 986816 Test 098 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_lndp_debug Checking test 099 rap_lndp_debug 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.859725 -0:The maximum resident set size (KB) = 987288 +0:The total amount of wall time = 290.173800 +0:The maximum resident set size (KB) = 987444 Test 099 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_flake_debug Checking test 100 rap_flake_debug 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.913373 -0:The maximum resident set size (KB) = 986672 +0:The total amount of wall time = 287.976333 +0:The maximum resident set size (KB) = 986616 Test 100 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug 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.536893 -0:The maximum resident set size (KB) = 986688 +0:The total amount of wall time = 286.456969 +0:The maximum resident set size (KB) = 986588 Test 101 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.647128 -0:The maximum resident set size (KB) = 984640 +0:The total amount of wall time = 282.083508 +0:The maximum resident set size (KB) = 984456 Test 102 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug 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.596968 -0:The maximum resident set size (KB) = 986568 +0:The total amount of wall time = 286.240114 +0:The maximum resident set size (KB) = 986356 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 581.022047 -0:The maximum resident set size (KB) = 985188 +0:The total amount of wall time = 474.892403 +0:The maximum resident set size (KB) = 985280 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug 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.265867 -0:The maximum resident set size (KB) = 983392 +0:The total amount of wall time = 282.222650 +0:The maximum resident set size (KB) = 983432 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 290.837122 -0:The maximum resident set size (KB) = 235304 +0:The total amount of wall time = 299.066112 +0:The maximum resident set size (KB) = 235296 Test 106 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -17636,14 +3585,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 248.192314 -0:The maximum resident set size (KB) = 851296 +0:The total amount of wall time = 239.645019 +0:The maximum resident set size (KB) = 851052 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17690,14 +3639,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 404.180404 -0:The maximum resident set size (KB) = 707964 +0:The total amount of wall time = 402.020825 +0:The maximum resident set size (KB) = 707908 Test 108 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17744,14 +3693,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 210.697131 -0:The maximum resident set size (KB) = 706508 +0:The total amount of wall time = 209.381857 +0:The maximum resident set size (KB) = 706424 Test 109 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17798,14 +3747,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 390.548730 -0:The maximum resident set size (KB) = 759508 +0:The total amount of wall time = 386.799841 +0:The maximum resident set size (KB) = 759676 Test 110 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17852,14 +3801,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 200.770576 -0:The maximum resident set size (KB) = 756388 +0:The total amount of wall time = 201.205524 +0:The maximum resident set size (KB) = 756484 Test 111 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17906,14 +3855,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 219.220429 -0:The maximum resident set size (KB) = 704308 +0:The total amount of wall time = 218.799957 +0:The maximum resident set size (KB) = 704432 Test 112 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -17952,14 +3901,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 298.960030 -0:The maximum resident set size (KB) = 544696 +0:The total amount of wall time = 296.595500 +0:The maximum resident set size (KB) = 544672 Test 113 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -17998,14 +3947,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 230.804297 -0:The maximum resident set size (KB) = 536892 +0:The total amount of wall time = 107.270669 +0:The maximum resident set size (KB) = 537424 Test 114 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -18052,81 +4001,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 274.277225 -0:The maximum resident set size (KB) = 730884 +0:The total amount of wall time = 274.048274 +0:The maximum resident set size (KB) = 730388 Test 115 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.092107 -0:The maximum resident set size (KB) = 872876 +0:The total amount of wall time = 287.017359 +0:The maximum resident set size (KB) = 872972 Test 116 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 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.807695 -0:The maximum resident set size (KB) = 871116 +0:The total amount of wall time = 283.245002 +0:The maximum resident set size (KB) = 871140 Test 117 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug 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.275408 -0:The maximum resident set size (KB) = 890092 +0:The total amount of wall time = 289.687981 +0:The maximum resident set size (KB) = 890056 Test 118 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 263.337718 -0:The maximum resident set size (KB) = 741796 +0:The total amount of wall time = 261.333436 +0:The maximum resident set size (KB) = 742668 Test 119 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 291.218797 -0:The maximum resident set size (KB) = 1099660 +0:The total amount of wall time = 294.815274 +0:The maximum resident set size (KB) = 1099664 Test 120 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18135,14 +4084,14 @@ Checking test 121 hafs_regional_atm_ocn 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 = 459.257499 -0:The maximum resident set size (KB) = 740560 +0:The total amount of wall time = 454.040584 +0:The maximum resident set size (KB) = 741072 Test 121 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18151,14 +4100,14 @@ Checking test 122 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1028.036737 -0:The maximum resident set size (KB) = 768168 +0:The total amount of wall time = 1022.908737 +0:The maximum resident set size (KB) = 768840 Test 122 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18169,28 +4118,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1143.844600 -0:The maximum resident set size (KB) = 792436 +0:The total amount of wall time = 1108.879963 +0:The maximum resident set size (KB) = 792712 Test 123 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm 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 = 376.961886 -0:The maximum resident set size (KB) = 300192 +0:The total amount of wall time = 377.178905 +0:The maximum resident set size (KB) = 300764 Test 124 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18199,28 +4148,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 428.291238 -0:The maximum resident set size (KB) = 320464 +0:The total amount of wall time = 418.540193 +0:The maximum resident set size (KB) = 320444 -Test 125 hafs_regional_telescopic_2nests_atm PASS Tries: 2 +Test 125 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm 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 = 175.049290 -0:The maximum resident set size (KB) = 214512 +0:The total amount of wall time = 172.018136 +0:The maximum resident set size (KB) = 213700 Test 126 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18238,14 +4187,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 485.414990 -0:The maximum resident set size (KB) = 302640 +0:The total amount of wall time = 484.704166 +0:The maximum resident set size (KB) = 302524 Test 127 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18254,28 +4203,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 249.288476 -0:The maximum resident set size (KB) = 317396 +0:The total amount of wall time = 243.374540 +0:The maximum resident set size (KB) = 318936 Test 128 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm 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 = 229.504894 -0:The maximum resident set size (KB) = 317972 +0:The total amount of wall time = 227.031099 +0:The maximum resident set size (KB) = 317752 Test 129 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18284,42 +4233,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 300.472312 -0:The maximum resident set size (KB) = 376048 +0:The total amount of wall time = 282.631944 +0:The maximum resident set size (KB) = 375972 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm 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.161907 -0:The maximum resident set size (KB) = 233180 +0:The total amount of wall time = 66.853354 +0:The maximum resident set size (KB) = 234016 Test 131 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 766.907498 -0:The maximum resident set size (KB) = 402892 +0:The total amount of wall time = 768.075635 +0:The maximum resident set size (KB) = 402732 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18330,14 +4279,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 724.022212 -0:The maximum resident set size (KB) = 427020 +0:The total amount of wall time = 723.795493 +0:The maximum resident set size (KB) = 426604 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18345,14 +4294,14 @@ Checking test 134 hafs_regional_docn 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 = 405.888203 -0:The maximum resident set size (KB) = 755532 +0:The total amount of wall time = 389.591145 +0:The maximum resident set size (KB) = 755448 Test 134 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18360,131 +4309,131 @@ Checking test 135 hafs_regional_docn_oisst 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 = 399.660057 -0:The maximum resident set size (KB) = 734800 +0:The total amount of wall time = 394.331574 +0:The maximum resident set size (KB) = 735456 Test 135 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps 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 = 1272.203095 -0:The maximum resident set size (KB) = 887888 +0:The total amount of wall time = 1268.985930 +0:The maximum resident set size (KB) = 887848 Test 136 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.375777 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 166.872791 +0:The maximum resident set size (KB) = 727772 Test 137 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.451768 -0:The maximum resident set size (KB) = 715916 +0:The total amount of wall time = 99.624296 +0:The maximum resident set size (KB) = 704856 Test 138 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.952423 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 161.703123 +0:The maximum resident set size (KB) = 607440 Test 139 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.800197 -0:The maximum resident set size (KB) = 607444 +0:The total amount of wall time = 159.030606 +0:The maximum resident set size (KB) = 607468 Test 140 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.599324 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 164.820867 +0:The maximum resident set size (KB) = 607456 Test 141 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.851939 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 162.864883 +0:The maximum resident set size (KB) = 716680 Test 142 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 177.420459 -0:The maximum resident set size (KB) = 716700 +0:The total amount of wall time = 168.512628 +0:The maximum resident set size (KB) = 717176 Test 143 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 154.810043 -0:The maximum resident set size (KB) = 607416 +0:The total amount of wall time = 161.004640 +0:The maximum resident set size (KB) = 607492 Test 144 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -18493,14 +4442,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 432.039969 -0:The maximum resident set size (KB) = 514328 +0:The total amount of wall time = 415.369157 +0:The maximum resident set size (KB) = 514264 Test 145 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -18509,77 +4458,77 @@ Checking test 146 datm_cdeps_mx025_gefs 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 = 420.306111 -0:The maximum resident set size (KB) = 494736 +0:The total amount of wall time = 416.438795 +0:The maximum resident set size (KB) = 494816 Test 146 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.376409 -0:The maximum resident set size (KB) = 717068 +0:The total amount of wall time = 166.644257 +0:The maximum resident set size (KB) = 716720 Test 147 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.021302 -0:The maximum resident set size (KB) = 1942028 +0:The total amount of wall time = 255.611279 +0:The maximum resident set size (KB) = 1910064 Test 148 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 268.804073 -0:The maximum resident set size (KB) = 1942004 +0:The total amount of wall time = 257.571916 +0:The maximum resident set size (KB) = 1941108 Test 149 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 369.027478 -0:The maximum resident set size (KB) = 700640 +0:The total amount of wall time = 369.353290 +0:The maximum resident set size (KB) = 700732 Test 150 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.297973 -0:The maximum resident set size (KB) = 728684 +0:The total amount of wall time = 166.831336 +0:The maximum resident set size (KB) = 716744 Test 151 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 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 @@ -18588,14 +4537,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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.216235 -0:The maximum resident set size (KB) = 208244 +0:The total amount of wall time = 10.709243 +0:The maximum resident set size (KB) = 208688 Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst 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 @@ -18604,14 +4553,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 15.821305 -0:The maximum resident set size (KB) = 208232 +0:The total amount of wall time = 15.693225 +0:The maximum resident set size (KB) = 208248 Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -18696,14 +4645,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 236.712703 -0:The maximum resident set size (KB) = 1462932 +0:The total amount of wall time = 237.255222 +0:The maximum resident set size (KB) = 1462940 Test 154 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmwav_control_noaero_p8 Checking test 155 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -18746,14 +4695,14 @@ Checking test 155 atmwav_control_noaero_p8 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 = 103.280325 -0:The maximum resident set size (KB) = 1434340 +0:The total amount of wall time = 101.540638 +0:The maximum resident set size (KB) = 1434376 Test 155 atmwav_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_atmwav Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -18797,14 +4746,14 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 102.909689 -0:The maximum resident set size (KB) = 474692 +0:The total amount of wall time = 101.155118 +0:The maximum resident set size (KB) = 474472 Test 156 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8 Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -18848,14 +4797,14 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 252.567753 -0:The maximum resident set size (KB) = 2704052 +0:The total amount of wall time = 243.896824 +0:The maximum resident set size (KB) = 2704068 Test 157 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -18899,14 +4848,14 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.250990 -0:The maximum resident set size (KB) = 2758208 +0:The total amount of wall time = 307.088496 +0:The maximum resident set size (KB) = 2757996 Test 158 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad_micro Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -18950,14 +4899,14 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.759897 -0:The maximum resident set size (KB) = 2764556 +0:The total amount of wall time = 311.157547 +0:The maximum resident set size (KB) = 2764584 Test 159 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -18973,14 +4922,14 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 751.258022 -0:The maximum resident set size (KB) = 999360 +0:The total amount of wall time = 727.375377 +0:The maximum resident set size (KB) = 999612 Test 160 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq_faster Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -18996,18 +4945,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 699.046862 -0:The maximum resident set size (KB) = 999160 +0:The total amount of wall time = 703.434730 +0:The maximum resident set size (KB) = 999268 Test 161 regional_atmaq_faster PASS -FAILED TESTS: -Test compile_008 failed in run_compile failed - -REGRESSION TEST FAILED -Wed Apr 19 10:48:06 MDT 2023 -Elapsed time: 01h:31m:23s. Have a nice day! -Wed Apr 19 10:51:42 MDT 2023 -Start Regression test -Compile 001 elapsed time 1767 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +REGRESSION TEST WAS SUCCESSFUL +Fri Apr 21 15:17:35 MDT 2023 +Elapsed time: 01h:54m:05s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index dbac64b60b..a448ac5e45 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed Apr 19 04:24:02 UTC 2023 +Fri Apr 21 20:03:16 UTC 2023 Start Regression test -Compile 001 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 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 003 elapsed time 336 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 110 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 408 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 344 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 350 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 234 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 405 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 327 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 331 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 680.646046 -0: The maximum resident set size (KB) = 704428 +0: The total amount of wall time = 685.754207 +0: The maximum resident set size (KB) = 707088 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 666.147917 - 0: The maximum resident set size (KB) = 477052 + 0: The total amount of wall time = 645.658326 + 0: The maximum resident set size (KB) = 478852 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 832.146500 - 0: The maximum resident set size (KB) = 489944 + 0: The total amount of wall time = 827.448455 + 0: The maximum resident set size (KB) = 488764 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 909.898955 - 0: The maximum resident set size (KB) = 1235664 + 0: The total amount of wall time = 883.943395 + 0: The maximum resident set size (KB) = 1233284 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.089770 - 0: The maximum resident set size (KB) = 831268 + 0: The total amount of wall time = 1461.481846 + 0: The maximum resident set size (KB) = 829732 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1443.933834 - 0: The maximum resident set size (KB) = 831784 + 0: The total amount of wall time = 1420.600032 + 0: The maximum resident set size (KB) = 832296 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1345.133923 - 0: The maximum resident set size (KB) = 895496 + 0: The total amount of wall time = 1320.895143 + 0: The maximum resident set size (KB) = 900324 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.846781 - 0: The maximum resident set size (KB) = 550624 + 0: The total amount of wall time = 712.371835 + 0: The maximum resident set size (KB) = 550820 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1485.722729 - 0: The maximum resident set size (KB) = 833180 + 0: The total amount of wall time = 1460.235117 + 0: The maximum resident set size (KB) = 831300 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.122415 - 0: The maximum resident set size (KB) = 831540 + 0: The total amount of wall time = 1450.169646 + 0: The maximum resident set size (KB) = 831856 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1080.389159 - 0: The maximum resident set size (KB) = 550884 + 0: The total amount of wall time = 1048.602920 + 0: The maximum resident set size (KB) = 550848 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1451.774578 - 0: The maximum resident set size (KB) = 821200 + 0: The total amount of wall time = 1416.628887 + 0: The maximum resident set size (KB) = 826692 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1344.397048 - 0: The maximum resident set size (KB) = 896228 + 0: The total amount of wall time = 1298.646632 + 0: The maximum resident set size (KB) = 893940 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1427.506159 - 0: The maximum resident set size (KB) = 827200 + 0: The total amount of wall time = 1407.631640 + 0: The maximum resident set size (KB) = 822928 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1050.556873 - 0: The maximum resident set size (KB) = 542588 + 0: The total amount of wall time = 1064.019766 + 0: The maximum resident set size (KB) = 551732 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.598944 - 0: The maximum resident set size (KB) = 827152 + 0: The total amount of wall time = 1473.555726 + 0: The maximum resident set size (KB) = 832336 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 771.725536 - 0: The maximum resident set size (KB) = 666864 + 0: The total amount of wall time = 789.215541 + 0: The maximum resident set size (KB) = 669488 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1054.406908 - 0: The maximum resident set size (KB) = 665304 + 0: The total amount of wall time = 1024.336600 + 0: The maximum resident set size (KB) = 666648 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 751.921859 - 0: The maximum resident set size (KB) = 644860 + 0: The total amount of wall time = 732.482214 + 0: The maximum resident set size (KB) = 644996 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 791.307102 - 0: The maximum resident set size (KB) = 671504 + 0: The total amount of wall time = 778.384203 + 0: The maximum resident set size (KB) = 670092 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 395.550929 - 0: The maximum resident set size (KB) = 633828 + 0: The total amount of wall time = 406.540805 + 0: The maximum resident set size (KB) = 632324 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.938123 - 0: The maximum resident set size (KB) = 527812 + 0: The total amount of wall time = 122.335229 + 0: The maximum resident set size (KB) = 526668 Test 022 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 672.416956 - 0: The maximum resident set size (KB) = 592300 + 0: The total amount of wall time = 615.470758 + 0: The maximum resident set size (KB) = 592296 Test 023 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug Checking test 024 rap_control_debug 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.643562 - 0: The maximum resident set size (KB) = 839284 + 0: The total amount of wall time = 172.474629 + 0: The maximum resident set size (KB) = 841140 Test 024 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug Checking test 025 hrrr_control_debug 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.278008 - 0: The maximum resident set size (KB) = 836940 + 0: The total amount of wall time = 168.437426 + 0: The maximum resident set size (KB) = 835852 Test 025 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.834951 - 0: The maximum resident set size (KB) = 925124 + 0: The total amount of wall time = 210.682550 + 0: The maximum resident set size (KB) = 922624 Test 026 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug 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.640521 - 0: The maximum resident set size (KB) = 835272 + 0: The total amount of wall time = 269.877852 + 0: The maximum resident set size (KB) = 840996 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.697154 - 0: The maximum resident set size (KB) = 840756 + 0: The total amount of wall time = 172.929537 + 0: The maximum resident set size (KB) = 841240 Test 028 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.315546 - 0: The maximum resident set size (KB) = 840824 + 0: The total amount of wall time = 173.358292 + 0: The maximum resident set size (KB) = 834672 Test 029 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.008339 - 0: The maximum resident set size (KB) = 478828 + 0: The total amount of wall time = 102.810316 + 0: The maximum resident set size (KB) = 484560 Test 030 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy_debug Checking test 031 control_stochy_debug 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.544021 - 0: The maximum resident set size (KB) = 476980 + 0: The total amount of wall time = 117.450603 + 0: The maximum resident set size (KB) = 477252 Test 031 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_debug_p8 Checking test 032 control_debug_p8 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.300045 - 0: The maximum resident set size (KB) = 1230572 + 0: The total amount of wall time = 117.623415 + 0: The maximum resident set size (KB) = 1226480 Test 032 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 614.313753 - 0: The maximum resident set size (KB) = 678680 + 0: The total amount of wall time = 624.358942 + 0: The maximum resident set size (KB) = 685308 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 747.889449 - 0: The maximum resident set size (KB) = 681772 + 0: The total amount of wall time = 742.594878 + 0: The maximum resident set size (KB) = 682036 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.578758 - 0: The maximum resident set size (KB) = 657180 + 0: The total amount of wall time = 590.182539 + 0: The maximum resident set size (KB) = 658428 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.268404 - 0: The maximum resident set size (KB) = 190840 + 0: The total amount of wall time = 183.796772 + 0: The maximum resident set size (KB) = 194908 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1458.230588 - 0: The maximum resident set size (KB) = 687220 + 0: The total amount of wall time = 1455.594933 + 0: The maximum resident set size (KB) = 686188 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 748.738115 - 0: The maximum resident set size (KB) = 683552 + 0: The total amount of wall time = 751.083337 + 0: The maximum resident set size (KB) = 682424 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1368.599506 - 0: The maximum resident set size (KB) = 729864 + 0: The total amount of wall time = 1375.653263 + 0: The maximum resident set size (KB) = 727304 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 660.831761 - 0: The maximum resident set size (KB) = 726496 + 0: The total amount of wall time = 670.354670 + 0: The maximum resident set size (KB) = 728912 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 743.348105 - 0: The maximum resident set size (KB) = 681364 + 0: The total amount of wall time = 742.760271 + 0: The maximum resident set size (KB) = 684568 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1098.700591 - 0: The maximum resident set size (KB) = 506900 + 0: The total amount of wall time = 1059.836923 + 0: The maximum resident set size (KB) = 511216 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 367.716802 - 0: The maximum resident set size (KB) = 508488 + 0: The total amount of wall time = 361.944052 + 0: The maximum resident set size (KB) = 512796 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,58 +1468,128 @@ Checking test 044 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1076.884315 - 0: The maximum resident set size (KB) = 713480 + 0: The total amount of wall time = 1083.345711 + 0: The maximum resident set size (KB) = 708152 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 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.680183 - 0: The maximum resident set size (KB) = 702736 + 0: The total amount of wall time = 174.573852 + 0: The maximum resident set size (KB) = 703144 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 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.315544 - 0: The maximum resident set size (KB) = 698488 + 0: The total amount of wall time = 172.216297 + 0: The maximum resident set size (KB) = 701488 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.524994 - 0: The maximum resident set size (KB) = 717740 + 0: The total amount of wall time = 204.191701 + 0: The maximum resident set size (KB) = 720396 Test 047 rap_control_dyn64_phy32_debug PASS -Test 048 cpld_control_p8 FAIL + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1679.149683 + 0: The maximum resident set size (KB) = 1428860 + +Test 048 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 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 = 1236.448140 - 0: The maximum resident set size (KB) = 1334628 + 0: The total amount of wall time = 1221.029659 + 0: The maximum resident set size (KB) = 1331116 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1641,107 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1063.404887 - 0: The maximum resident set size (KB) = 1437596 + 0: The total amount of wall time = 806.567312 + 0: The maximum resident set size (KB) = 1436080 -Test 050 cpld_debug_p8 PASS +Test 050 cpld_debug_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 176.945975 - 0: The maximum resident set size (KB) = 666164 + 0: The total amount of wall time = 170.101565 + 0: The maximum resident set size (KB) = 664976 Test 051 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 048 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 19 05:37:06 UTC 2023 -Elapsed time: 01h:13m:05s. Have a nice day! -Wed Apr 19 15:19:04 UTC 2023 -Start Regression test - -Compile 001 elapsed time 301 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25554/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1759.168579 - 0: The maximum resident set size (KB) = 1431884 - -Test 001 cpld_control_p8 PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Apr 19 16:01:59 UTC 2023 -Elapsed time: 00h:42m:56s. Have a nice day! +Sat Apr 22 01:34:56 UTC 2023 +Elapsed time: 05h:31m:41s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7547bba493..09f4a6a267 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Wed Apr 19 05:14:13 UTC 2023 +Fri Apr 21 19:48:25 UTC 2023 Start Regression test -Compile 001 elapsed time 607 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 608 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 568 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 515 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 499 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 011 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 206 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 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 001 elapsed time 603 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 625 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 573 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 219 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 516 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 693 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 496 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 011 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 019 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 561 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 637 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 565 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 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 480 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 588 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 501 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 477 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 563 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 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 656 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 572 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 024 elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 558 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 581 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 480 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.048700 - 0: The maximum resident set size (KB) = 3125044 + 0: The total amount of wall time = 313.845767 + 0: The maximum resident set size (KB) = 3129184 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.857809 - 0: The maximum resident set size (KB) = 1718772 + 0: The total amount of wall time = 226.885053 + 0: The maximum resident set size (KB) = 1721264 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.569251 - 0: The maximum resident set size (KB) = 3171912 + 0: The total amount of wall time = 340.722766 + 0: The maximum resident set size (KB) = 3168428 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 200.852386 - 0: The maximum resident set size (KB) = 3046024 + 0: The total amount of wall time = 194.480249 + 0: The maximum resident set size (KB) = 3036384 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.830725 - 0: The maximum resident set size (KB) = 3197504 + 0: The total amount of wall time = 342.880460 + 0: The maximum resident set size (KB) = 3182432 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 213.488305 - 0: The maximum resident set size (KB) = 3059564 + 0: The total amount of wall time = 196.493429 + 0: The maximum resident set size (KB) = 3059500 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.930570 - 0: The maximum resident set size (KB) = 3507132 + 0: The total amount of wall time = 351.206456 + 0: The maximum resident set size (KB) = 3508708 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.914323 - 0: The maximum resident set size (KB) = 3161776 + 0: The total amount of wall time = 352.210609 + 0: The maximum resident set size (KB) = 3154860 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.861282 - 0: The maximum resident set size (KB) = 3010656 + 0: The total amount of wall time = 286.531103 + 0: The maximum resident set size (KB) = 3014564 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.767329 - 0: The maximum resident set size (KB) = 3172388 + 0: The total amount of wall time = 343.661918 + 0: The maximum resident set size (KB) = 3181744 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 590.644271 - 0: The maximum resident set size (KB) = 3260324 + 0: The total amount of wall time = 582.103889 + 0: The maximum resident set size (KB) = 3246940 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 402.702727 - 0: The maximum resident set size (KB) = 3146812 + 0: The total amount of wall time = 388.929073 + 0: The maximum resident set size (KB) = 3144876 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 737.980807 - 0: The maximum resident set size (KB) = 4018056 + 0: The total amount of wall time = 712.878992 + 0: The maximum resident set size (KB) = 4062416 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 458.395467 - 0: The maximum resident set size (KB) = 3956160 + 0: The total amount of wall time = 442.544723 + 0: The maximum resident set size (KB) = 3954656 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.693705 - 0: The maximum resident set size (KB) = 1714236 + 0: The total amount of wall time = 263.828328 + 0: The maximum resident set size (KB) = 1710940 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.027192 - 0: The maximum resident set size (KB) = 1743512 + 0: The total amount of wall time = 264.079039 + 0: The maximum resident set size (KB) = 1762972 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.383815 - 0: The maximum resident set size (KB) = 3225088 + 0: The total amount of wall time = 520.635401 + 0: The maximum resident set size (KB) = 3229780 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 366.193999 - 0: The maximum resident set size (KB) = 1720992 + 0: The total amount of wall time = 356.385664 + 0: The maximum resident set size (KB) = 1733072 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.137714 - 0: The maximum resident set size (KB) = 1758644 + 0: The total amount of wall time = 275.161546 + 0: The maximum resident set size (KB) = 1716768 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 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 = 586.299489 - 0: The maximum resident set size (KB) = 2808376 + 0: The total amount of wall time = 576.795053 + 0: The maximum resident set size (KB) = 2796864 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 156.009819 - 0: The maximum resident set size (KB) = 2791888 + 0: The total amount of wall time = 154.939661 + 0: The maximum resident set size (KB) = 2803208 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 84.165865 - 0: The maximum resident set size (KB) = 2230360 + 0: The total amount of wall time = 80.324876 + 0: The maximum resident set size (KB) = 2228680 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.077420 - 0: The maximum resident set size (KB) = 3166148 + 0: The total amount of wall time = 323.842588 + 0: The maximum resident set size (KB) = 3158164 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.420675 - 0: The maximum resident set size (KB) = 626220 + 0: The total amount of wall time = 131.680836 + 0: The maximum resident set size (KB) = 626232 Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.668250 - 0: The maximum resident set size (KB) = 634132 + 0: The total amount of wall time = 128.308982 + 0: The maximum resident set size (KB) = 623452 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,16 +1556,16 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.839381 - 0: The maximum resident set size (KB) = 631216 + 0: The total amount of wall time = 134.753068 + 0: The maximum resident set size (KB) = 628812 Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.364210 - 0: The maximum resident set size (KB) = 629728 + 0: The total amount of wall time = 136.711069 + 0: The maximum resident set size (KB) = 628248 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 364.696485 -0: The maximum resident set size (KB) = 820352 +0: The total amount of wall time = 369.811489 +0: The maximum resident set size (KB) = 822568 Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.736386 - 0: The maximum resident set size (KB) = 767184 + 0: The total amount of wall time = 526.251915 + 0: The maximum resident set size (KB) = 762728 Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.519196 - 0: The maximum resident set size (KB) = 1260496 + 0: The total amount of wall time = 525.803939 + 0: The maximum resident set size (KB) = 1260384 Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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.313605 - 0: The maximum resident set size (KB) = 1379948 + 0: The total amount of wall time = 458.959745 + 0: The maximum resident set size (KB) = 1371616 Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.799079 - 0: The maximum resident set size (KB) = 634436 + 0: The total amount of wall time = 87.834032 + 0: The maximum resident set size (KB) = 636592 Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.687137 - 0: The maximum resident set size (KB) = 483236 + 0: The total amount of wall time = 48.443286 + 0: The maximum resident set size (KB) = 489676 Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.720044 - 0: The maximum resident set size (KB) = 628380 + 0: The total amount of wall time = 81.306858 + 0: The maximum resident set size (KB) = 630596 Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.386728 - 0: The maximum resident set size (KB) = 625980 + 0: The total amount of wall time = 136.631196 + 0: The maximum resident set size (KB) = 631996 Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.586866 - 0: The maximum resident set size (KB) = 628564 + 0: The total amount of wall time = 137.055690 + 0: The maximum resident set size (KB) = 630856 Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.215430 - 0: The maximum resident set size (KB) = 1578756 + 0: The total amount of wall time = 168.680255 + 0: The maximum resident set size (KB) = 1589520 Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.303210 - 0: The maximum resident set size (KB) = 859616 + 0: The total amount of wall time = 89.532858 + 0: The maximum resident set size (KB) = 861480 Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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.706263 - 0: The maximum resident set size (KB) = 1590428 + 0: The total amount of wall time = 169.719193 + 0: The maximum resident set size (KB) = 1597084 Test 039 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.153834 - 0: The maximum resident set size (KB) = 858800 + 0: The total amount of wall time = 91.670313 + 0: The maximum resident set size (KB) = 855404 Test 040 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.236236 - 0: The maximum resident set size (KB) = 1582176 + 0: The total amount of wall time = 175.847306 + 0: The maximum resident set size (KB) = 1579652 Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.341601 - 0: The maximum resident set size (KB) = 1677604 + 0: The total amount of wall time = 160.543874 + 0: The maximum resident set size (KB) = 1674820 Test 042 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.278428 - 0: The maximum resident set size (KB) = 1593348 + 0: The total amount of wall time = 313.431372 + 0: The maximum resident set size (KB) = 1602056 Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.501157 - 0: The maximum resident set size (KB) = 1656576 + 0: The total amount of wall time = 224.841525 + 0: The maximum resident set size (KB) = 1667828 Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.142754 - 0: The maximum resident set size (KB) = 1610620 + 0: The total amount of wall time = 173.090905 + 0: The maximum resident set size (KB) = 1586108 Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.661732 - 0: The maximum resident set size (KB) = 1598528 + 0: The total amount of wall time = 193.815663 + 0: The maximum resident set size (KB) = 1597328 Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.271674 - 0: The maximum resident set size (KB) = 868120 + 0: The total amount of wall time = 296.130830 + 0: The maximum resident set size (KB) = 865512 Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.281345 - 0: The maximum resident set size (KB) = 861608 + 0: The total amount of wall time = 150.026495 + 0: The maximum resident set size (KB) = 860736 Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.818400 - 0: The maximum resident set size (KB) = 867480 + 0: The total amount of wall time = 295.435789 + 0: The maximum resident set size (KB) = 867424 Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.539828 - 0: The maximum resident set size (KB) = 861632 + 0: The total amount of wall time = 151.293518 + 0: The maximum resident set size (KB) = 863980 Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.239723 - 0: The maximum resident set size (KB) = 859244 + 0: The total amount of wall time = 312.853424 + 0: The maximum resident set size (KB) = 863532 Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 185.827407 - 0: The maximum resident set size (KB) = 851908 + 0: The total amount of wall time = 181.396503 + 0: The maximum resident set size (KB) = 847156 Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt 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 = 324.296149 - 0: The maximum resident set size (KB) = 854096 + 0: The total amount of wall time = 317.418019 + 0: The maximum resident set size (KB) = 853672 Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 297.267587 - 0: The maximum resident set size (KB) = 859588 + 0: The total amount of wall time = 295.545573 + 0: The maximum resident set size (KB) = 862004 Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.187933 - 0: The maximum resident set size (KB) = 869104 + 0: The total amount of wall time = 297.919046 + 0: The maximum resident set size (KB) = 864244 Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 377.693710 - 0: The maximum resident set size (KB) = 627636 + 0: The total amount of wall time = 379.936380 + 0: The maximum resident set size (KB) = 625532 Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.204313 - 0: The maximum resident set size (KB) = 1047036 + 0: The total amount of wall time = 459.236767 + 0: The maximum resident set size (KB) = 1054504 Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 232.324710 - 0: The maximum resident set size (KB) = 1181092 + 0: The total amount of wall time = 235.196168 + 0: The maximum resident set size (KB) = 1182864 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.746454 - 0: The maximum resident set size (KB) = 997152 + 0: The total amount of wall time = 479.025563 + 0: The maximum resident set size (KB) = 999488 Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.195100 - 0: The maximum resident set size (KB) = 1133276 + 0: The total amount of wall time = 434.379803 + 0: The maximum resident set size (KB) = 1131304 Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.462214 - 0: The maximum resident set size (KB) = 969252 + 0: The total amount of wall time = 232.648211 + 0: The maximum resident set size (KB) = 962296 Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.069547 - 0: The maximum resident set size (KB) = 1060728 + 0: The total amount of wall time = 460.229518 + 0: The maximum resident set size (KB) = 1038372 Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.585766 - 0: The maximum resident set size (KB) = 996448 + 0: The total amount of wall time = 482.165978 + 0: The maximum resident set size (KB) = 1000240 Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing 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.315234 - 0: The maximum resident set size (KB) = 981628 + 0: The total amount of wall time = 341.473494 + 0: The maximum resident set size (KB) = 985732 Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.629352 - 0: The maximum resident set size (KB) = 1051872 + 0: The total amount of wall time = 442.898679 + 0: The maximum resident set size (KB) = 1051840 Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing 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.562913 - 0: The maximum resident set size (KB) = 993224 + 0: The total amount of wall time = 465.947576 + 0: The maximum resident set size (KB) = 998636 Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.500288 - 0: The maximum resident set size (KB) = 1134808 + 0: The total amount of wall time = 418.819054 + 0: The maximum resident set size (KB) = 1138980 Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.840204 - 0: The maximum resident set size (KB) = 972344 + 0: The total amount of wall time = 329.386755 + 0: The maximum resident set size (KB) = 983252 Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.975900 - 0: The maximum resident set size (KB) = 1060044 + 0: The total amount of wall time = 456.885537 + 0: The maximum resident set size (KB) = 1038784 Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.559210 - 0: The maximum resident set size (KB) = 692212 + 0: The total amount of wall time = 535.161206 + 0: The maximum resident set size (KB) = 690708 Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.111181 - 0: The maximum resident set size (KB) = 755484 + 0: The total amount of wall time = 523.267471 + 0: The maximum resident set size (KB) = 753488 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.509812 - 0: The maximum resident set size (KB) = 1028244 + 0: The total amount of wall time = 144.706119 + 0: The maximum resident set size (KB) = 1028268 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.055677 - 0: The maximum resident set size (KB) = 937808 + 0: The total amount of wall time = 88.963342 + 0: The maximum resident set size (KB) = 942660 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.916751 - 0: The maximum resident set size (KB) = 942284 + 0: The total amount of wall time = 128.305485 + 0: The maximum resident set size (KB) = 947144 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.482604 - 0: The maximum resident set size (KB) = 1037388 + 0: The total amount of wall time = 147.053916 + 0: The maximum resident set size (KB) = 1037472 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.072787 - 0: The maximum resident set size (KB) = 930520 + 0: The total amount of wall time = 68.517204 + 0: The maximum resident set size (KB) = 929536 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.175962 - 0: The maximum resident set size (KB) = 722900 + 0: The total amount of wall time = 340.970335 + 0: The maximum resident set size (KB) = 724540 Test 077 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.691959 - 0: The maximum resident set size (KB) = 720208 + 0: The total amount of wall time = 337.681849 + 0: The maximum resident set size (KB) = 727608 Test 078 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.027985 - 0: The maximum resident set size (KB) = 715624 + 0: The total amount of wall time = 180.517807 + 0: The maximum resident set size (KB) = 722936 Test 079 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.087068 - 0: The maximum resident set size (KB) = 634292 + 0: The total amount of wall time = 111.141245 + 0: The maximum resident set size (KB) = 631808 Test 080 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.466000 - 0: The maximum resident set size (KB) = 1592160 + 0: The total amount of wall time = 152.497659 + 0: The maximum resident set size (KB) = 1592824 Test 081 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.233782 - 0: The maximum resident set size (KB) = 862644 + 0: The total amount of wall time = 271.046891 + 0: The maximum resident set size (KB) = 872680 Test 082 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 840.624263 - 0: The maximum resident set size (KB) = 1013340 + 0: The total amount of wall time = 830.878579 + 0: The maximum resident set size (KB) = 1019476 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.675723 - 0: The maximum resident set size (KB) = 968352 + 0: The total amount of wall time = 457.687845 + 0: The maximum resident set size (KB) = 966960 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.151979 - 0: The maximum resident set size (KB) = 969632 + 0: The total amount of wall time = 738.552028 + 0: The maximum resident set size (KB) = 957460 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 144.101932 - 0: The maximum resident set size (KB) = 792896 + 0: The total amount of wall time = 144.480896 + 0: The maximum resident set size (KB) = 788760 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.113523 - 0: The maximum resident set size (KB) = 788500 + 0: The total amount of wall time = 143.809119 + 0: The maximum resident set size (KB) = 790576 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.860949 - 0: The maximum resident set size (KB) = 791884 + 0: The total amount of wall time = 167.012943 + 0: The maximum resident set size (KB) = 797780 Test 088 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.649745 - 0: The maximum resident set size (KB) = 795276 + 0: The total amount of wall time = 144.668339 + 0: The maximum resident set size (KB) = 793716 Test 089 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.559604 - 0: The maximum resident set size (KB) = 835188 + 0: The total amount of wall time = 225.858928 + 0: The maximum resident set size (KB) = 843500 Test 090 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.969750 - 0: The maximum resident set size (KB) = 836856 + 0: The total amount of wall time = 223.361157 + 0: The maximum resident set size (KB) = 838300 Test 091 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras_debug Checking test 092 control_ras_debug 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.664144 - 0: The maximum resident set size (KB) = 805260 + 0: The total amount of wall time = 149.663483 + 0: The maximum resident set size (KB) = 802636 Test 092 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.950665 - 0: The maximum resident set size (KB) = 845144 + 0: The total amount of wall time = 150.678206 + 0: The maximum resident set size (KB) = 850308 Test 093 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.691400 - 0: The maximum resident set size (KB) = 1624156 + 0: The total amount of wall time = 166.583627 + 0: The maximum resident set size (KB) = 1615572 Test 094 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1002.366942 - 0: The maximum resident set size (KB) = 870188 + 0: The total amount of wall time = 995.547622 + 0: The maximum resident set size (KB) = 884460 Test 095 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug Checking test 096 rap_control_debug 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.861251 - 0: The maximum resident set size (KB) = 1166156 + 0: The total amount of wall time = 274.754605 + 0: The maximum resident set size (KB) = 1174144 Test 096 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug Checking test 097 hrrr_control_debug 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.695126 - 0: The maximum resident set size (KB) = 1169136 + 0: The total amount of wall time = 269.753968 + 0: The maximum resident set size (KB) = 1164252 Test 097 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug 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.922701 - 0: The maximum resident set size (KB) = 1168752 + 0: The total amount of wall time = 271.010235 + 0: The maximum resident set size (KB) = 1165596 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_diag_debug Checking test 099 rap_diag_debug 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.682045 - 0: The maximum resident set size (KB) = 1253452 + 0: The total amount of wall time = 285.852411 + 0: The maximum resident set size (KB) = 1251032 Test 099 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug 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.082130 - 0: The maximum resident set size (KB) = 1164392 + 0: The total amount of wall time = 271.675809 + 0: The maximum resident set size (KB) = 1171972 Test 100 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.960523 - 0: The maximum resident set size (KB) = 1175156 + 0: The total amount of wall time = 277.955627 + 0: The maximum resident set size (KB) = 1171204 Test 101 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_lndp_debug Checking test 102 rap_lndp_debug 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.654489 - 0: The maximum resident set size (KB) = 1165472 + 0: The total amount of wall time = 272.619395 + 0: The maximum resident set size (KB) = 1171592 Test 102 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_flake_debug Checking test 103 rap_flake_debug 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.416473 - 0: The maximum resident set size (KB) = 1167328 + 0: The total amount of wall time = 271.007058 + 0: The maximum resident set size (KB) = 1166604 Test 103 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug 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.038652 - 0: The maximum resident set size (KB) = 1171944 + 0: The total amount of wall time = 269.649000 + 0: The maximum resident set size (KB) = 1170824 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_debug Checking test 105 rap_noah_debug 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.892311 - 0: The maximum resident set size (KB) = 1169852 + 0: The total amount of wall time = 267.892200 + 0: The maximum resident set size (KB) = 1165860 Test 105 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug 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.593414 - 0: The maximum resident set size (KB) = 1163856 + 0: The total amount of wall time = 269.735326 + 0: The maximum resident set size (KB) = 1171156 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug 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.732704 - 0: The maximum resident set size (KB) = 1167232 + 0: The total amount of wall time = 444.977429 + 0: The maximum resident set size (KB) = 1168224 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug 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.161664 - 0: The maximum resident set size (KB) = 1161140 + 0: The total amount of wall time = 270.188909 + 0: The maximum resident set size (KB) = 1164980 Test 108 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 281.008746 - 0: The maximum resident set size (KB) = 523532 + 0: The total amount of wall time = 271.030404 + 0: The maximum resident set size (KB) = 526028 Test 109 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 225.365730 - 0: The maximum resident set size (KB) = 1071196 + 0: The total amount of wall time = 216.406266 + 0: The maximum resident set size (KB) = 1073684 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.392330 - 0: The maximum resident set size (KB) = 995660 + 0: The total amount of wall time = 382.353700 + 0: The maximum resident set size (KB) = 1009100 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 201.459526 - 0: The maximum resident set size (KB) = 954592 + 0: The total amount of wall time = 197.950261 + 0: The maximum resident set size (KB) = 952884 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.407213 - 0: The maximum resident set size (KB) = 1020964 + 0: The total amount of wall time = 363.650138 + 0: The maximum resident set size (KB) = 1025920 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 190.703510 - 0: The maximum resident set size (KB) = 1001412 + 0: The total amount of wall time = 186.947731 + 0: The maximum resident set size (KB) = 1004392 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.478155 - 0: The maximum resident set size (KB) = 899796 + 0: The total amount of wall time = 208.407845 + 0: The maximum resident set size (KB) = 902816 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.566555 - 0: The maximum resident set size (KB) = 949384 + 0: The total amount of wall time = 283.072889 + 0: The maximum resident set size (KB) = 941076 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 104.071311 - 0: The maximum resident set size (KB) = 861900 + 0: The total amount of wall time = 102.184101 + 0: The maximum resident set size (KB) = 862812 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 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 = 247.505389 - 0: The maximum resident set size (KB) = 971420 + 0: The total amount of wall time = 244.578370 + 0: The maximum resident set size (KB) = 967532 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 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.880986 - 0: The maximum resident set size (KB) = 1055564 + 0: The total amount of wall time = 266.501640 + 0: The maximum resident set size (KB) = 1053432 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.198500 - 0: The maximum resident set size (KB) = 1052700 + 0: The total amount of wall time = 263.109494 + 0: The maximum resident set size (KB) = 1052128 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug 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.931268 - 0: The maximum resident set size (KB) = 1092084 + 0: The total amount of wall time = 276.013436 + 0: The maximum resident set size (KB) = 1096724 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 236.081060 - 0: The maximum resident set size (KB) = 1045108 + 0: The total amount of wall time = 241.110790 + 0: The maximum resident set size (KB) = 1043160 Test 122 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 324.796742 - 0: The maximum resident set size (KB) = 1414292 + 0: The total amount of wall time = 309.118887 + 0: The maximum resident set size (KB) = 1399648 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 387.538532 - 0: The maximum resident set size (KB) = 1223576 + 0: The total amount of wall time = 391.374709 + 0: The maximum resident set size (KB) = 1221612 Test 124 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 743.235256 - 0: The maximum resident set size (KB) = 1245540 + 0: The total amount of wall time = 745.023783 + 0: The maximum resident set size (KB) = 1247500 Test 125 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 847.568297 - 0: The maximum resident set size (KB) = 1271868 + 0: The total amount of wall time = 841.290650 + 0: The maximum resident set size (KB) = 1259688 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm 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 = 320.685898 - 0: The maximum resident set size (KB) = 499744 + 0: The total amount of wall time = 318.079058 + 0: The maximum resident set size (KB) = 504332 Test 127 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 366.681780 - 0: The maximum resident set size (KB) = 509456 + 0: The total amount of wall time = 363.724567 + 0: The maximum resident set size (KB) = 513708 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm 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 = 149.243943 - 0: The maximum resident set size (KB) = 348240 + 0: The total amount of wall time = 148.081087 + 0: The maximum resident set size (KB) = 350400 Test 129 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 413.666357 - 0: The maximum resident set size (KB) = 451952 + 0: The total amount of wall time = 411.217716 + 0: The maximum resident set size (KB) = 422552 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.399616 - 0: The maximum resident set size (KB) = 522440 + 0: The total amount of wall time = 201.418022 + 0: The maximum resident set size (KB) = 520736 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm 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 = 191.385448 - 0: The maximum resident set size (KB) = 524480 + 0: The total amount of wall time = 189.602653 + 0: The maximum resident set size (KB) = 519200 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 225.239918 - 0: The maximum resident set size (KB) = 558700 + 0: The total amount of wall time = 222.832744 + 0: The maximum resident set size (KB) = 562000 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.478480 - 0: The maximum resident set size (KB) = 371540 + 0: The total amount of wall time = 59.869879 + 0: The maximum resident set size (KB) = 368308 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 709.842285 - 0: The maximum resident set size (KB) = 580008 + 0: The total amount of wall time = 722.447572 + 0: The maximum resident set size (KB) = 578176 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 483.505918 - 0: The maximum resident set size (KB) = 618044 + 0: The total amount of wall time = 483.535901 + 0: The maximum resident set size (KB) = 620020 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.455072 - 0: The maximum resident set size (KB) = 1234820 + 0: The total amount of wall time = 357.137667 + 0: The maximum resident set size (KB) = 1225568 Test 137 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.612792 - 0: The maximum resident set size (KB) = 1218460 + 0: The total amount of wall time = 356.823961 + 0: The maximum resident set size (KB) = 1212636 Test 138 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps 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 = 965.447061 - 0: The maximum resident set size (KB) = 1040256 + 0: The total amount of wall time = 954.011029 + 0: The maximum resident set size (KB) = 1041504 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.127299 - 0: The maximum resident set size (KB) = 1058584 + 0: The total amount of wall time = 152.245264 + 0: The maximum resident set size (KB) = 1070292 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.649635 - 0: The maximum resident set size (KB) = 1017456 + 0: The total amount of wall time = 91.113047 + 0: The maximum resident set size (KB) = 1010236 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.026390 - 0: The maximum resident set size (KB) = 963592 + 0: The total amount of wall time = 149.651808 + 0: The maximum resident set size (KB) = 961348 Test 142 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.152208 - 0: The maximum resident set size (KB) = 968144 + 0: The total amount of wall time = 152.982446 + 0: The maximum resident set size (KB) = 959748 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.195511 - 0: The maximum resident set size (KB) = 969552 + 0: The total amount of wall time = 154.464637 + 0: The maximum resident set size (KB) = 960892 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.554497 - 0: The maximum resident set size (KB) = 1064436 + 0: The total amount of wall time = 153.435664 + 0: The maximum resident set size (KB) = 1067460 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.035213 - 0: The maximum resident set size (KB) = 1062288 + 0: The total amount of wall time = 152.318899 + 0: The maximum resident set size (KB) = 1054336 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.895376 - 0: The maximum resident set size (KB) = 967068 + 0: The total amount of wall time = 150.977234 + 0: The maximum resident set size (KB) = 961736 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr 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 = 458.002044 - 0: The maximum resident set size (KB) = 879412 + 0: The total amount of wall time = 419.501905 + 0: The maximum resident set size (KB) = 884920 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs 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 = 459.538249 - 0: The maximum resident set size (KB) = 935800 + 0: The total amount of wall time = 429.839144 + 0: The maximum resident set size (KB) = 936652 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.093055 - 0: The maximum resident set size (KB) = 1059268 + 0: The total amount of wall time = 156.821041 + 0: The maximum resident set size (KB) = 1062268 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 217.838480 - 0: The maximum resident set size (KB) = 2306744 + 0: The total amount of wall time = 221.703392 + 0: The maximum resident set size (KB) = 2362296 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 219.263927 - 0: The maximum resident set size (KB) = 2354212 + 0: The total amount of wall time = 222.344843 + 0: The maximum resident set size (KB) = 2360852 Test 152 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 360.530708 - 0: The maximum resident set size (KB) = 980596 + 0: The total amount of wall time = 356.256004 + 0: The maximum resident set size (KB) = 993768 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.623201 - 0: The maximum resident set size (KB) = 1062244 + 0: The total amount of wall time = 152.167901 + 0: The maximum resident set size (KB) = 1069080 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 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 @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.768949 - 0: The maximum resident set size (KB) = 258304 + 0: The total amount of wall time = 6.859700 + 0: The maximum resident set size (KB) = 265580 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst 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 @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.298967 - 0: The maximum resident set size (KB) = 265548 + 0: The total amount of wall time = 12.597385 + 0: The maximum resident set size (KB) = 265384 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 206.961914 - 0: The maximum resident set size (KB) = 1587552 + 0: The total amount of wall time = 207.654375 + 0: The maximum resident set size (KB) = 1607796 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.375286 - 0: The maximum resident set size (KB) = 1607224 + 0: The total amount of wall time = 92.160044 + 0: The maximum resident set size (KB) = 1629748 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.163925 - 0: The maximum resident set size (KB) = 660180 + 0: The total amount of wall time = 86.575261 + 0: The maximum resident set size (KB) = 662320 Test 159 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.371520 - 0: The maximum resident set size (KB) = 2978856 + 0: The total amount of wall time = 230.038896 + 0: The maximum resident set size (KB) = 2966456 Test 160 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.810634 - 0: The maximum resident set size (KB) = 3044764 + 0: The total amount of wall time = 288.920746 + 0: The maximum resident set size (KB) = 3049556 Test 161 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.275001 - 0: The maximum resident set size (KB) = 3048520 + 0: The total amount of wall time = 286.236572 + 0: The maximum resident set size (KB) = 3048420 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 645.763304 - 0: The maximum resident set size (KB) = 1451852 + 0: The total amount of wall time = 644.020082 + 0: The maximum resident set size (KB) = 1449276 Test 163 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1197.774812 - 0: The maximum resident set size (KB) = 1378572 + 0: The total amount of wall time = 1184.873163 + 0: The maximum resident set size (KB) = 1222468 Test 164 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster 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.468073 - 0: The maximum resident set size (KB) = 1438220 + 0: The total amount of wall time = 556.870228 + 0: The maximum resident set size (KB) = 1413828 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 19 06:43:42 UTC 2023 -Elapsed time: 01h:29m:30s. Have a nice day! +Sat Apr 22 01:30:42 UTC 2023 +Elapsed time: 05h:42m:18s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 9ece7063c7..10e339b92a 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Thu Apr 20 01:22:51 UTC 2023 +Fri Apr 21 19:23:58 UTC 2023 Start Regression test -Compile 001 elapsed time 2030 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2031 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1943 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 339 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 270 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1711 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 007 elapsed time 1429 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3373 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1774 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 011 elapsed time 1682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2011 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 320 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1428 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 001 elapsed time 1992 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2067 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 280 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1698 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 007 elapsed time 1664 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3335 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1717 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 011 elapsed time 1664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 279 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1715 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 021 elapsed time 286 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2128 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1663 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 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1442 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1662 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1640 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 022 elapsed time 2119 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1683 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 024 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 309 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1735 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1696 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1705 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1638 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1662 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile 033 elapsed time 256 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1836 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 034 elapsed time 1822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.023100 - 0: The maximum resident set size (KB) = 1751236 + 0: The total amount of wall time = 443.630985 + 0: The maximum resident set size (KB) = 1748088 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.361741 - 0: The maximum resident set size (KB) = 1634784 + 0: The total amount of wall time = 331.183592 + 0: The maximum resident set size (KB) = 1644520 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.220807 - 0: The maximum resident set size (KB) = 1783208 + 0: The total amount of wall time = 488.318913 + 0: The maximum resident set size (KB) = 1798424 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.707039 - 0: The maximum resident set size (KB) = 1483892 + 0: The total amount of wall time = 291.252508 + 0: The maximum resident set size (KB) = 1484524 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 507.838849 - 0: The maximum resident set size (KB) = 1807104 + 0: The total amount of wall time = 491.324838 + 0: The maximum resident set size (KB) = 1796404 Test 005 cpld_control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.629254 - 0: The maximum resident set size (KB) = 1507292 + 0: The total amount of wall time = 284.363778 + 0: The maximum resident set size (KB) = 1501980 Test 006 cpld_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 518.598137 - 0: The maximum resident set size (KB) = 1993992 + 0: The total amount of wall time = 521.611812 + 0: The maximum resident set size (KB) = 2004188 Test 007 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 493.489545 - 0: The maximum resident set size (KB) = 1793188 + 0: The total amount of wall time = 492.194939 + 0: The maximum resident set size (KB) = 1766724 Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.890572 - 0: The maximum resident set size (KB) = 1748764 + 0: The total amount of wall time = 424.448168 + 0: The maximum resident set size (KB) = 1750292 Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.363646 - 0: The maximum resident set size (KB) = 1797360 + 0: The total amount of wall time = 494.573432 + 0: The maximum resident set size (KB) = 1808072 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.484684 - 0: The maximum resident set size (KB) = 1625508 + 0: The total amount of wall time = 368.322322 + 0: The maximum resident set size (KB) = 1620016 Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 364.712288 - 0: The maximum resident set size (KB) = 1670948 + 0: The total amount of wall time = 371.515692 + 0: The maximum resident set size (KB) = 1670540 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 739.488722 - 0: The maximum resident set size (KB) = 1810320 + 0: The total amount of wall time = 679.826066 + 0: The maximum resident set size (KB) = 1811208 Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 489.168997 - 0: The maximum resident set size (KB) = 1637708 + 0: The total amount of wall time = 474.215220 + 0: The maximum resident set size (KB) = 1633928 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid 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 = 390.448759 - 0: The maximum resident set size (KB) = 1686268 + 0: The total amount of wall time = 406.047024 + 0: The maximum resident set size (KB) = 1672424 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 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 = 726.859506 - 0: The maximum resident set size (KB) = 2777348 + 0: The total amount of wall time = 798.535254 + 0: The maximum resident set size (KB) = 2766512 Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 217.001570 - 0: The maximum resident set size (KB) = 2773168 + 0: The total amount of wall time = 222.475568 + 0: The maximum resident set size (KB) = 2767428 Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 118.497683 - 0: The maximum resident set size (KB) = 2205900 + 0: The total amount of wall time = 114.744559 + 0: The maximum resident set size (KB) = 2205308 Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.790463 - 0: The maximum resident set size (KB) = 1775280 + 0: The total amount of wall time = 480.888272 + 0: The maximum resident set size (KB) = 1777892 Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1294,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 200.224609 - 0: The maximum resident set size (KB) = 573800 + 0: The total amount of wall time = 188.426509 + 0: The maximum resident set size (KB) = 571816 Test 020 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 184.837725 - 0: The maximum resident set size (KB) = 573912 + 0: The total amount of wall time = 188.132647 + 0: The maximum resident set size (KB) = 574228 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,16 +1326,16 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.481641 - 0: The maximum resident set size (KB) = 570600 + 0: The total amount of wall time = 189.950633 + 0: The maximum resident set size (KB) = 573592 Test 022 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.020578 - 0: The maximum resident set size (KB) = 574816 + 0: The total amount of wall time = 196.680383 + 0: The maximum resident set size (KB) = 570252 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.623285 -0: The maximum resident set size (KB) = 799740 +0: The total amount of wall time = 603.166283 +0: The maximum resident set size (KB) = 793988 Test 024 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 767.489242 - 0: The maximum resident set size (KB) = 690204 + 0: The total amount of wall time = 743.418199 + 0: The maximum resident set size (KB) = 691972 Test 025 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1014.774079 - 0: The maximum resident set size (KB) = 1048440 + 0: The total amount of wall time = 958.148980 + 0: The maximum resident set size (KB) = 1059312 Test 026 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1476,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 882.546680 - 0: The maximum resident set size (KB) = 1191424 + 0: The total amount of wall time = 839.067430 + 0: The maximum resident set size (KB) = 1197748 Test 027 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1494,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.895933 - 0: The maximum resident set size (KB) = 572280 + 0: The total amount of wall time = 134.646865 + 0: The maximum resident set size (KB) = 576192 Test 028 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.197096 - 0: The maximum resident set size (KB) = 393264 + 0: The total amount of wall time = 69.854432 + 0: The maximum resident set size (KB) = 392044 Test 029 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.994735 - 0: The maximum resident set size (KB) = 577504 + 0: The total amount of wall time = 119.688203 + 0: The maximum resident set size (KB) = 573868 Test 030 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1548,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 220.796015 - 0: The maximum resident set size (KB) = 574636 + 0: The total amount of wall time = 198.595043 + 0: The maximum resident set size (KB) = 580532 Test 031 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.874858 - 0: The maximum resident set size (KB) = 572212 + 0: The total amount of wall time = 194.721438 + 0: The maximum resident set size (KB) = 571220 Test 032 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1624,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.810373 - 0: The maximum resident set size (KB) = 1531884 + 0: The total amount of wall time = 240.650993 + 0: The maximum resident set size (KB) = 1546696 Test 033 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.557604 - 0: The maximum resident set size (KB) = 776400 + 0: The total amount of wall time = 126.378364 + 0: The maximum resident set size (KB) = 775728 Test 034 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 035 control_qr_p8 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 = 236.610506 - 0: The maximum resident set size (KB) = 1553348 + 0: The total amount of wall time = 243.732579 + 0: The maximum resident set size (KB) = 1543412 Test 035 control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 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 = 130.466269 - 0: The maximum resident set size (KB) = 787096 + 0: The total amount of wall time = 131.908070 + 0: The maximum resident set size (KB) = 785884 Test 036 control_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.179512 - 0: The maximum resident set size (KB) = 1530352 + 0: The total amount of wall time = 241.155908 + 0: The maximum resident set size (KB) = 1521360 Test 037 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing 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.830156 - 0: The maximum resident set size (KB) = 1620136 + 0: The total amount of wall time = 224.822693 + 0: The maximum resident set size (KB) = 1613368 Test 038 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1896,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 442.108303 - 0: The maximum resident set size (KB) = 1555992 + 0: The total amount of wall time = 435.362457 + 0: The maximum resident set size (KB) = 1536500 Test 039 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 326.890762 - 0: The maximum resident set size (KB) = 1619692 + 0: The total amount of wall time = 320.835062 + 0: The maximum resident set size (KB) = 1602100 Test 040 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_mynn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.373856 - 0: The maximum resident set size (KB) = 1551524 + 0: The total amount of wall time = 242.330984 + 0: The maximum resident set size (KB) = 1535920 Test 041 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.080579 - 0: The maximum resident set size (KB) = 1561244 + 0: The total amount of wall time = 285.080429 + 0: The maximum resident set size (KB) = 1549260 Test 042 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2076,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 433.017172 - 0: The maximum resident set size (KB) = 786528 + 0: The total amount of wall time = 442.944459 + 0: The maximum resident set size (KB) = 786948 Test 043 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 245.348614 - 0: The maximum resident set size (KB) = 778380 + 0: The total amount of wall time = 225.249457 + 0: The maximum resident set size (KB) = 778636 Test 044 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 431.533698 - 0: The maximum resident set size (KB) = 787612 + 0: The total amount of wall time = 414.086159 + 0: The maximum resident set size (KB) = 785144 Test 045 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_restart_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 211.103906 - 0: The maximum resident set size (KB) = 780140 + 0: The total amount of wall time = 221.641734 + 0: The maximum resident set size (KB) = 775684 Test 046 regional_restart_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 446.018869 - 0: The maximum resident set size (KB) = 784592 + 0: The total amount of wall time = 442.557101 + 0: The maximum resident set size (KB) = 787796 Test 047 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 287.199903 - 0: The maximum resident set size (KB) = 774776 + 0: The total amount of wall time = 280.961931 + 0: The maximum resident set size (KB) = 770928 Test 048 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 415.347450 - 0: The maximum resident set size (KB) = 781704 + 0: The total amount of wall time = 425.871812 + 0: The maximum resident set size (KB) = 782440 Test 049 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_2dwrtdecomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.886244 - 0: The maximum resident set size (KB) = 788788 + 0: The total amount of wall time = 426.095455 + 0: The maximum resident set size (KB) = 784424 Test 050 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 639.612939 - 0: The maximum resident set size (KB) = 943796 + 0: The total amount of wall time = 623.215357 + 0: The maximum resident set size (KB) = 960468 Test 051 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 336.065726 - 0: The maximum resident set size (KB) = 1098680 + 0: The total amount of wall time = 343.522599 + 0: The maximum resident set size (KB) = 1096248 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 690.097590 - 0: The maximum resident set size (KB) = 959332 + 0: The total amount of wall time = 659.138053 + 0: The maximum resident set size (KB) = 958128 Test 053 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.250524 - 0: The maximum resident set size (KB) = 1028704 + 0: The total amount of wall time = 613.461286 + 0: The maximum resident set size (KB) = 1030120 Test 054 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.214728 - 0: The maximum resident set size (KB) = 842572 + 0: The total amount of wall time = 327.493920 + 0: The maximum resident set size (KB) = 835396 Test 055 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 660.524169 - 0: The maximum resident set size (KB) = 958148 + 0: The total amount of wall time = 647.072706 + 0: The maximum resident set size (KB) = 958632 Test 056 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 750.003970 - 0: The maximum resident set size (KB) = 936984 + 0: The total amount of wall time = 671.183145 + 0: The maximum resident set size (KB) = 933992 Test 057 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2570,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.212816 - 0: The maximum resident set size (KB) = 844540 + 0: The total amount of wall time = 470.966816 + 0: The maximum resident set size (KB) = 845672 Test 058 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 652.012777 - 0: The maximum resident set size (KB) = 955004 + 0: The total amount of wall time = 598.166330 + 0: The maximum resident set size (KB) = 956280 Test 059 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 657.066218 - 0: The maximum resident set size (KB) = 936668 + 0: The total amount of wall time = 643.000446 + 0: The maximum resident set size (KB) = 951820 Test 060 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 617.524370 - 0: The maximum resident set size (KB) = 1027948 + 0: The total amount of wall time = 586.053537 + 0: The maximum resident set size (KB) = 1021640 Test 061 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.022702 - 0: The maximum resident set size (KB) = 839844 + 0: The total amount of wall time = 455.903230 + 0: The maximum resident set size (KB) = 834076 Test 062 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.670666 - 0: The maximum resident set size (KB) = 958048 + 0: The total amount of wall time = 635.401598 + 0: The maximum resident set size (KB) = 944528 Test 063 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 821.298817 - 0: The maximum resident set size (KB) = 640556 + 0: The total amount of wall time = 757.369414 + 0: The maximum resident set size (KB) = 641540 Test 064 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 826.883533 - 0: The maximum resident set size (KB) = 631072 + 0: The total amount of wall time = 751.446673 + 0: The maximum resident set size (KB) = 637340 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 223.288108 - 0: The maximum resident set size (KB) = 909384 + 0: The total amount of wall time = 206.554490 + 0: The maximum resident set size (KB) = 901300 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.635281 - 0: The maximum resident set size (KB) = 869836 + 0: The total amount of wall time = 136.216368 + 0: The maximum resident set size (KB) = 870144 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 195.579389 - 0: The maximum resident set size (KB) = 868896 + 0: The total amount of wall time = 182.135329 + 0: The maximum resident set size (KB) = 868064 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2940,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 238.178758 - 0: The maximum resident set size (KB) = 917704 + 0: The total amount of wall time = 202.451376 + 0: The maximum resident set size (KB) = 914304 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 112.302736 - 0: The maximum resident set size (KB) = 848156 + 0: The total amount of wall time = 100.471581 + 0: The maximum resident set size (KB) = 846096 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2970,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 469.488152 - 0: The maximum resident set size (KB) = 669280 + 0: The total amount of wall time = 483.792711 + 0: The maximum resident set size (KB) = 670204 Test 071 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 472.256143 - 0: The maximum resident set size (KB) = 670184 + 0: The total amount of wall time = 473.206316 + 0: The maximum resident set size (KB) = 670568 Test 072 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 263.103841 - 0: The maximum resident set size (KB) = 638792 + 0: The total amount of wall time = 264.357137 + 0: The maximum resident set size (KB) = 633924 Test 073 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 155.862357 - 0: The maximum resident set size (KB) = 487904 + 0: The total amount of wall time = 164.899145 + 0: The maximum resident set size (KB) = 480668 Test 074 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.519259 - 0: The maximum resident set size (KB) = 1547740 + 0: The total amount of wall time = 217.277743 + 0: The maximum resident set size (KB) = 1551652 Test 075 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3090,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 428.268179 - 0: The maximum resident set size (KB) = 785376 + 0: The total amount of wall time = 389.987092 + 0: The maximum resident set size (KB) = 786368 Test 076 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1087.951622 - 0: The maximum resident set size (KB) = 958236 + 0: The total amount of wall time = 1082.810865 + 0: The maximum resident set size (KB) = 929788 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 636.002976 - 0: The maximum resident set size (KB) = 899112 + 0: The total amount of wall time = 626.758931 + 0: The maximum resident set size (KB) = 897408 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 971.875701 - 0: The maximum resident set size (KB) = 900720 + 0: The total amount of wall time = 968.562793 + 0: The maximum resident set size (KB) = 898912 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3166,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 188.898946 - 0: The maximum resident set size (KB) = 733456 + 0: The total amount of wall time = 189.025535 + 0: The maximum resident set size (KB) = 734512 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.438443 - 0: The maximum resident set size (KB) = 733076 + 0: The total amount of wall time = 188.753733 + 0: The maximum resident set size (KB) = 730688 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_debug Checking test 082 control_stochy_debug 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.319339 - 0: The maximum resident set size (KB) = 735068 + 0: The total amount of wall time = 213.060189 + 0: The maximum resident set size (KB) = 739788 Test 082 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.339202 - 0: The maximum resident set size (KB) = 736844 + 0: The total amount of wall time = 190.504080 + 0: The maximum resident set size (KB) = 738304 Test 083 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.943888 - 0: The maximum resident set size (KB) = 786612 + 0: The total amount of wall time = 302.509403 + 0: The maximum resident set size (KB) = 784688 Test 084 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.877596 - 0: The maximum resident set size (KB) = 782520 + 0: The total amount of wall time = 296.951173 + 0: The maximum resident set size (KB) = 780828 Test 085 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.276896 - 0: The maximum resident set size (KB) = 746524 + 0: The total amount of wall time = 194.856618 + 0: The maximum resident set size (KB) = 747392 Test 086 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.578336 - 0: The maximum resident set size (KB) = 791584 + 0: The total amount of wall time = 223.965022 + 0: The maximum resident set size (KB) = 790860 Test 087 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.010622 - 0: The maximum resident set size (KB) = 1559868 + 0: The total amount of wall time = 214.783883 + 0: The maximum resident set size (KB) = 1556540 Test 088 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1317.792560 - 0: The maximum resident set size (KB) = 805316 + 0: The total amount of wall time = 1279.188968 + 0: The maximum resident set size (KB) = 806432 Test 089 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.095472 - 0: The maximum resident set size (KB) = 1115896 + 0: The total amount of wall time = 351.317247 + 0: The maximum resident set size (KB) = 1108816 Test 090 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.479682 - 0: The maximum resident set size (KB) = 1113956 + 0: The total amount of wall time = 345.567716 + 0: The maximum resident set size (KB) = 1105116 Test 091 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug 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.895458 - 0: The maximum resident set size (KB) = 1115420 + 0: The total amount of wall time = 350.868033 + 0: The maximum resident set size (KB) = 1114440 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.580731 - 0: The maximum resident set size (KB) = 1196764 + 0: The total amount of wall time = 376.442306 + 0: The maximum resident set size (KB) = 1192512 Test 093 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.947968 - 0: The maximum resident set size (KB) = 1107136 + 0: The total amount of wall time = 355.569394 + 0: The maximum resident set size (KB) = 1109908 Test 094 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.066938 - 0: The maximum resident set size (KB) = 1116540 + 0: The total amount of wall time = 355.065703 + 0: The maximum resident set size (KB) = 1111856 Test 095 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_lndp_debug Checking test 096 rap_lndp_debug 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.447598 - 0: The maximum resident set size (KB) = 1110652 + 0: The total amount of wall time = 366.910950 + 0: The maximum resident set size (KB) = 1109576 Test 096 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_flake_debug Checking test 097 rap_flake_debug 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.727387 - 0: The maximum resident set size (KB) = 1117756 + 0: The total amount of wall time = 349.271185 + 0: The maximum resident set size (KB) = 1105132 Test 097 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug 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.552945 - 0: The maximum resident set size (KB) = 1111844 + 0: The total amount of wall time = 351.988066 + 0: The maximum resident set size (KB) = 1107632 Test 098 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_debug Checking test 099 rap_noah_debug 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.329701 - 0: The maximum resident set size (KB) = 1107444 + 0: The total amount of wall time = 343.453457 + 0: The maximum resident set size (KB) = 1113380 Test 099 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug 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.784204 - 0: The maximum resident set size (KB) = 1114204 + 0: The total amount of wall time = 355.031698 + 0: The maximum resident set size (KB) = 1115900 Test 100 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 577.619688 - 0: The maximum resident set size (KB) = 1108080 + 0: The total amount of wall time = 577.169911 + 0: The maximum resident set size (KB) = 1113624 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.219548 - 0: The maximum resident set size (KB) = 1110244 + 0: The total amount of wall time = 346.348804 + 0: The maximum resident set size (KB) = 1111072 Test 102 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 361.814200 - 0: The maximum resident set size (KB) = 433612 + 0: The total amount of wall time = 364.722562 + 0: The maximum resident set size (KB) = 432968 Test 103 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 354.452830 - 0: The maximum resident set size (KB) = 986824 + 0: The total amount of wall time = 301.648563 + 0: The maximum resident set size (KB) = 979260 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 620.502372 - 0: The maximum resident set size (KB) = 843384 + 0: The total amount of wall time = 535.712665 + 0: The maximum resident set size (KB) = 839668 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 338.040144 - 0: The maximum resident set size (KB) = 836352 + 0: The total amount of wall time = 278.418249 + 0: The maximum resident set size (KB) = 839700 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 576.454580 - 0: The maximum resident set size (KB) = 894424 + 0: The total amount of wall time = 505.019702 + 0: The maximum resident set size (KB) = 879956 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 324.716508 - 0: The maximum resident set size (KB) = 879288 + 0: The total amount of wall time = 269.089527 + 0: The maximum resident set size (KB) = 886724 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 317.177707 - 0: The maximum resident set size (KB) = 828512 + 0: The total amount of wall time = 298.957549 + 0: The maximum resident set size (KB) = 828132 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.966131 - 0: The maximum resident set size (KB) = 804300 + 0: The total amount of wall time = 432.291553 + 0: The maximum resident set size (KB) = 807572 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3866,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 149.883309 - 0: The maximum resident set size (KB) = 763372 + 0: The total amount of wall time = 140.258455 + 0: The maximum resident set size (KB) = 760480 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3920,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 345.872111 - 0: The maximum resident set size (KB) = 869968 + 0: The total amount of wall time = 324.036989 + 0: The maximum resident set size (KB) = 876780 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 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.750163 - 0: The maximum resident set size (KB) = 1005096 + 0: The total amount of wall time = 347.076640 + 0: The maximum resident set size (KB) = 999008 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.044103 - 0: The maximum resident set size (KB) = 993304 + 0: The total amount of wall time = 343.078375 + 0: The maximum resident set size (KB) = 992836 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug 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.196964 - 0: The maximum resident set size (KB) = 1030964 + 0: The total amount of wall time = 354.159035 + 0: The maximum resident set size (KB) = 1031380 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 590.226262 - 0: The maximum resident set size (KB) = 1226096 + 0: The total amount of wall time = 352.464767 + 0: The maximum resident set size (KB) = 1217452 Test 116 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1050.153711 - 0: The maximum resident set size (KB) = 1595064 + 0: The total amount of wall time = 470.490195 + 0: The maximum resident set size (KB) = 1502108 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +4003,14 @@ Checking test 118 hafs_regional_atm_ocn 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 = 736.682182 - 0: The maximum resident set size (KB) = 1305196 + 0: The total amount of wall time = 558.558158 + 0: The maximum resident set size (KB) = 1300624 Test 118 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 1102.865323 - 0: The maximum resident set size (KB) = 1326296 + 0: The total amount of wall time = 955.608380 + 0: The maximum resident set size (KB) = 1328064 Test 119 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1179.307395 - 0: The maximum resident set size (KB) = 1285844 + 0: The total amount of wall time = 1075.541877 + 0: The maximum resident set size (KB) = 1350700 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4052,14 @@ Checking test 121 hafs_regional_docn 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 = 568.395873 - 0: The maximum resident set size (KB) = 1306084 + 0: The total amount of wall time = 529.489892 + 0: The maximum resident set size (KB) = 1303712 Test 121 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst 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 = 560.591066 - 0: The maximum resident set size (KB) = 1291796 + 0: The total amount of wall time = 547.522988 + 0: The maximum resident set size (KB) = 1294196 Test 122 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 251.058189 - 0: The maximum resident set size (KB) = 965460 + 0: The total amount of wall time = 228.220423 + 0: The maximum resident set size (KB) = 979576 Test 123 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 172.540988 - 0: The maximum resident set size (KB) = 950172 + 0: The total amount of wall time = 148.822474 + 0: The maximum resident set size (KB) = 933456 Test 124 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs 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 = 349.339181 - 0: The maximum resident set size (KB) = 867640 + 0: The total amount of wall time = 208.932438 + 0: The maximum resident set size (KB) = 861900 Test 125 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs 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 = 278.714667 - 0: The maximum resident set size (KB) = 871204 + 0: The total amount of wall time = 223.586938 + 0: The maximum resident set size (KB) = 856936 Test 126 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs 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 = 292.379097 - 0: The maximum resident set size (KB) = 864304 + 0: The total amount of wall time = 221.337956 + 0: The maximum resident set size (KB) = 859412 Test 127 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 339.379104 - 0: The maximum resident set size (KB) = 967040 + 0: The total amount of wall time = 232.349424 + 0: The maximum resident set size (KB) = 970596 Test 128 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 235.326648 - 0: The maximum resident set size (KB) = 964820 + 0: The total amount of wall time = 227.914356 + 0: The maximum resident set size (KB) = 956028 Test 129 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs 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 = 281.581902 - 0: The maximum resident set size (KB) = 864592 + 0: The total amount of wall time = 228.414463 + 0: The maximum resident set size (KB) = 862196 Test 130 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr 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 = 703.920062 - 0: The maximum resident set size (KB) = 763532 + 0: The total amount of wall time = 603.563157 + 0: The maximum resident set size (KB) = 757408 Test 131 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs 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 = 644.202833 - 0: The maximum resident set size (KB) = 734992 + 0: The total amount of wall time = 583.113448 + 0: The maximum resident set size (KB) = 750000 Test 132 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 306.681288 - 0: The maximum resident set size (KB) = 978080 + 0: The total amount of wall time = 228.381820 + 0: The maximum resident set size (KB) = 965396 Test 133 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 496.885645 - 0: The maximum resident set size (KB) = 2258264 + 0: The total amount of wall time = 298.346503 + 0: The maximum resident set size (KB) = 2255560 Test 134 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs 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 = 559.186140 - 0: The maximum resident set size (KB) = 2257224 + 0: The total amount of wall time = 311.796535 + 0: The maximum resident set size (KB) = 2255584 Test 135 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 492.411281 - 0: The maximum resident set size (KB) = 936640 + 0: The total amount of wall time = 465.293722 + 0: The maximum resident set size (KB) = 930700 Test 136 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 299.380243 - 0: The maximum resident set size (KB) = 960472 + 0: The total amount of wall time = 217.595538 + 0: The maximum resident set size (KB) = 971744 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 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 @@ -4282,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 101.955401 - 0: The maximum resident set size (KB) = 251272 + 0: The total amount of wall time = 23.698417 + 0: The maximum resident set size (KB) = 241464 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst 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 @@ -4298,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 33.361801 - 0: The maximum resident set size (KB) = 242508 + 0: The total amount of wall time = 47.016365 + 0: The maximum resident set size (KB) = 241360 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 325.163839 - 0: The maximum resident set size (KB) = 1586652 + 0: The total amount of wall time = 307.760864 + 0: The maximum resident set size (KB) = 1591116 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmwav_control_noaero_p8 Checking test 141 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4440,14 +4440,14 @@ Checking test 141 atmwav_control_noaero_p8 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 = 170.514760 - 0: The maximum resident set size (KB) = 1557856 + 0: The total amount of wall time = 137.929911 + 0: The maximum resident set size (KB) = 1570172 Test 141 atmwav_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,14 +4491,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 148.328805 - 0: The maximum resident set size (KB) = 601436 + 0: The total amount of wall time = 169.980371 + 0: The maximum resident set size (KB) = 593792 Test 142 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4542,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing 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.697515 - 0: The maximum resident set size (KB) = 1630036 + 0: The total amount of wall time = 373.495836 + 0: The maximum resident set size (KB) = 1633712 Test 143 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 408.763218 - 0: The maximum resident set size (KB) = 1666180 + 0: The total amount of wall time = 451.676386 + 0: The maximum resident set size (KB) = 1658448 Test 144 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,12 +4644,12 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.357374 - 0: The maximum resident set size (KB) = 1687724 + 0: The total amount of wall time = 424.931475 + 0: The maximum resident set size (KB) = 1668052 Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 20 04:16:07 UTC 2023 -Elapsed time: 02h:53m:17s. Have a nice day! +Fri Apr 21 22:18:48 UTC 2023 +Elapsed time: 02h:54m:50s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7d407a508e..b246ac86e7 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Tue Apr 18 21:17:16 CDT 2023 +Sat Apr 22 13:01:49 CDT 2023 Start Regression test -Compile 001 elapsed time 772 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 734 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 275 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 247 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 652 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 613 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 592 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 011 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 215 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 623 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 021 elapsed time 192 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 774 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 587 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 229 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 587 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 646 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 603 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 614 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 804 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 811 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 816 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 326 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 655 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 808 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 594 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 011 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 634 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 021 elapsed time 206 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 755 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 621 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 024 elapsed time 213 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 231 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 603 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 614 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 628 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 526 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 725 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.718450 - 0: The maximum resident set size (KB) = 3143460 + 0: The total amount of wall time = 340.349049 + 0: The maximum resident set size (KB) = 3147532 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 230.093113 - 0: The maximum resident set size (KB) = 1725740 + 0: The total amount of wall time = 223.706663 + 0: The maximum resident set size (KB) = 1724024 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.180306 - 0: The maximum resident set size (KB) = 3182832 + 0: The total amount of wall time = 344.363159 + 0: The maximum resident set size (KB) = 3187464 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.174792 - 0: The maximum resident set size (KB) = 3050576 + 0: The total amount of wall time = 216.954052 + 0: The maximum resident set size (KB) = 3056136 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.581084 - 0: The maximum resident set size (KB) = 3199764 + 0: The total amount of wall time = 346.982369 + 0: The maximum resident set size (KB) = 3198052 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 212.720346 - 0: The maximum resident set size (KB) = 3066276 + 0: The total amount of wall time = 207.826832 + 0: The maximum resident set size (KB) = 3068292 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.467723 - 0: The maximum resident set size (KB) = 3526200 + 0: The total amount of wall time = 408.547569 + 0: The maximum resident set size (KB) = 3520552 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.113537 - 0: The maximum resident set size (KB) = 3176272 + 0: The total amount of wall time = 342.283899 + 0: The maximum resident set size (KB) = 3183040 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.387723 - 0: The maximum resident set size (KB) = 3026164 + 0: The total amount of wall time = 282.510653 + 0: The maximum resident set size (KB) = 3030508 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.976199 - 0: The maximum resident set size (KB) = 3184976 + 0: The total amount of wall time = 341.641213 + 0: The maximum resident set size (KB) = 3186056 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 638.377104 - 0: The maximum resident set size (KB) = 3263516 + 0: The total amount of wall time = 643.549427 + 0: The maximum resident set size (KB) = 3269232 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 443.868189 - 0: The maximum resident set size (KB) = 3162992 + 0: The total amount of wall time = 439.877977 + 0: The maximum resident set size (KB) = 3165276 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 883.317458 - 0: The maximum resident set size (KB) = 4029452 + 0: The total amount of wall time = 880.891270 + 0: The maximum resident set size (KB) = 4042604 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 548.910824 - 0: The maximum resident set size (KB) = 3957072 + 0: The total amount of wall time = 545.150846 + 0: The maximum resident set size (KB) = 3980456 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.454861 - 0: The maximum resident set size (KB) = 1720948 + 0: The total amount of wall time = 283.390650 + 0: The maximum resident set size (KB) = 1718268 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 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 = 286.427995 - 0: The maximum resident set size (KB) = 1774832 + 0: The total amount of wall time = 261.768945 + 0: The maximum resident set size (KB) = 1766080 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 552.314100 - 0: The maximum resident set size (KB) = 3238632 + 0: The total amount of wall time = 561.042129 + 0: The maximum resident set size (KB) = 3244036 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 374.461026 - 0: The maximum resident set size (KB) = 1703108 + 0: The total amount of wall time = 388.093541 + 0: The maximum resident set size (KB) = 1731364 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid 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 = 293.732408 - 0: The maximum resident set size (KB) = 1777012 + 0: The total amount of wall time = 290.571138 + 0: The maximum resident set size (KB) = 1773020 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.942742 - 0: The maximum resident set size (KB) = 2814532 + 0: The total amount of wall time = 497.909250 + 0: The maximum resident set size (KB) = 2814372 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 143.068892 - 0: The maximum resident set size (KB) = 2800788 + 0: The total amount of wall time = 141.830701 + 0: The maximum resident set size (KB) = 2801312 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 75.047038 - 0: The maximum resident set size (KB) = 2244616 + 0: The total amount of wall time = 79.897323 + 0: The maximum resident set size (KB) = 2246568 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.866733 - 0: The maximum resident set size (KB) = 3177480 + 0: The total amount of wall time = 357.242648 + 0: The maximum resident set size (KB) = 3182100 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 155.300785 - 0: The maximum resident set size (KB) = 629796 + 0: The total amount of wall time = 130.933245 + 0: The maximum resident set size (KB) = 631584 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 163.569592 - 0: The maximum resident set size (KB) = 633228 + 0: The total amount of wall time = 128.912409 + 0: The maximum resident set size (KB) = 634400 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 155.188989 - 0: The maximum resident set size (KB) = 630976 + 0: The total amount of wall time = 134.141163 + 0: The maximum resident set size (KB) = 634432 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.571469 - 0: The maximum resident set size (KB) = 629156 + 0: The total amount of wall time = 137.229937 + 0: The maximum resident set size (KB) = 633716 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing 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.540957 -0: The maximum resident set size (KB) = 824000 +0: The total amount of wall time = 346.639114 +0: The maximum resident set size (KB) = 823652 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 550.512659 - 0: The maximum resident set size (KB) = 772992 + 0: The total amount of wall time = 528.366183 + 0: The maximum resident set size (KB) = 775104 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 610.724931 - 0: The maximum resident set size (KB) = 1193148 + 0: The total amount of wall time = 587.749641 + 0: The maximum resident set size (KB) = 1235512 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 511.442372 - 0: The maximum resident set size (KB) = 1336432 + 0: The total amount of wall time = 575.456429 + 0: The maximum resident set size (KB) = 1340248 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.666914 - 0: The maximum resident set size (KB) = 632316 + 0: The total amount of wall time = 87.940240 + 0: The maximum resident set size (KB) = 639996 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.100244 - 0: The maximum resident set size (KB) = 486172 + 0: The total amount of wall time = 56.707512 + 0: The maximum resident set size (KB) = 485732 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.675926 - 0: The maximum resident set size (KB) = 631892 + 0: The total amount of wall time = 96.133819 + 0: The maximum resident set size (KB) = 633616 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.766805 - 0: The maximum resident set size (KB) = 631108 + 0: The total amount of wall time = 137.304691 + 0: The maximum resident set size (KB) = 634328 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.552965 - 0: The maximum resident set size (KB) = 627324 + 0: The total amount of wall time = 137.709563 + 0: The maximum resident set size (KB) = 628224 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.267938 - 0: The maximum resident set size (KB) = 1603796 + 0: The total amount of wall time = 174.704934 + 0: The maximum resident set size (KB) = 1613060 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.405014 - 0: The maximum resident set size (KB) = 877864 + 0: The total amount of wall time = 90.355714 + 0: The maximum resident set size (KB) = 874280 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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.359188 - 0: The maximum resident set size (KB) = 1613188 + 0: The total amount of wall time = 175.870726 + 0: The maximum resident set size (KB) = 1605476 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 94.038915 - 0: The maximum resident set size (KB) = 869596 + 0: The total amount of wall time = 91.815738 + 0: The maximum resident set size (KB) = 867680 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.322574 - 0: The maximum resident set size (KB) = 1585960 + 0: The total amount of wall time = 181.534516 + 0: The maximum resident set size (KB) = 1586024 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.052248 - 0: The maximum resident set size (KB) = 1684796 + 0: The total amount of wall time = 182.436807 + 0: The maximum resident set size (KB) = 1685320 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.576183 - 0: The maximum resident set size (KB) = 1613112 + 0: The total amount of wall time = 320.134426 + 0: The maximum resident set size (KB) = 1614384 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.258734 - 0: The maximum resident set size (KB) = 1627996 + 0: The total amount of wall time = 233.165065 + 0: The maximum resident set size (KB) = 1679124 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.757772 - 0: The maximum resident set size (KB) = 1602460 + 0: The total amount of wall time = 177.869777 + 0: The maximum resident set size (KB) = 1603732 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.493109 - 0: The maximum resident set size (KB) = 1610752 + 0: The total amount of wall time = 189.897204 + 0: The maximum resident set size (KB) = 1613224 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.208235 - 0: The maximum resident set size (KB) = 871836 + 0: The total amount of wall time = 296.250519 + 0: The maximum resident set size (KB) = 872352 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.940440 - 0: The maximum resident set size (KB) = 861424 + 0: The total amount of wall time = 150.441789 + 0: The maximum resident set size (KB) = 863096 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.505610 - 0: The maximum resident set size (KB) = 870656 + 0: The total amount of wall time = 296.284969 + 0: The maximum resident set size (KB) = 871928 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_restart_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.724136 - 0: The maximum resident set size (KB) = 861616 + 0: The total amount of wall time = 150.668417 + 0: The maximum resident set size (KB) = 864368 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 311.533598 - 0: The maximum resident set size (KB) = 858652 + 0: The total amount of wall time = 314.138155 + 0: The maximum resident set size (KB) = 864560 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.498546 - 0: The maximum resident set size (KB) = 848496 + 0: The total amount of wall time = 208.330174 + 0: The maximum resident set size (KB) = 847248 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 314.415975 - 0: The maximum resident set size (KB) = 860712 + 0: The total amount of wall time = 316.868419 + 0: The maximum resident set size (KB) = 862092 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.867565 - 0: The maximum resident set size (KB) = 869536 + 0: The total amount of wall time = 291.317738 + 0: The maximum resident set size (KB) = 872028 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.068994 - 0: The maximum resident set size (KB) = 873640 + 0: The total amount of wall time = 294.729708 + 0: The maximum resident set size (KB) = 865656 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.826360 - 0: The maximum resident set size (KB) = 629436 + 0: The total amount of wall time = 384.669585 + 0: The maximum resident set size (KB) = 628844 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.005699 - 0: The maximum resident set size (KB) = 1066248 + 0: The total amount of wall time = 473.138083 + 0: The maximum resident set size (KB) = 1071160 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.780722 - 0: The maximum resident set size (KB) = 1176668 + 0: The total amount of wall time = 287.503634 + 0: The maximum resident set size (KB) = 1188932 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.832677 - 0: The maximum resident set size (KB) = 1002444 + 0: The total amount of wall time = 506.940735 + 0: The maximum resident set size (KB) = 1009544 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.644115 - 0: The maximum resident set size (KB) = 1146848 + 0: The total amount of wall time = 495.992707 + 0: The maximum resident set size (KB) = 1143224 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing 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.520504 - 0: The maximum resident set size (KB) = 967692 + 0: The total amount of wall time = 231.469637 + 0: The maximum resident set size (KB) = 979324 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.082184 - 0: The maximum resident set size (KB) = 1052224 + 0: The total amount of wall time = 481.524676 + 0: The maximum resident set size (KB) = 1061140 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.022963 - 0: The maximum resident set size (KB) = 1003748 + 0: The total amount of wall time = 488.616673 + 0: The maximum resident set size (KB) = 1012884 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.096581 - 0: The maximum resident set size (KB) = 996404 + 0: The total amount of wall time = 345.169361 + 0: The maximum resident set size (KB) = 995408 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.365833 - 0: The maximum resident set size (KB) = 1054344 + 0: The total amount of wall time = 465.362285 + 0: The maximum resident set size (KB) = 1067784 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.133249 - 0: The maximum resident set size (KB) = 1005908 + 0: The total amount of wall time = 496.633956 + 0: The maximum resident set size (KB) = 1002428 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.891664 - 0: The maximum resident set size (KB) = 1143668 + 0: The total amount of wall time = 472.964130 + 0: The maximum resident set size (KB) = 1146328 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.619886 - 0: The maximum resident set size (KB) = 979216 + 0: The total amount of wall time = 338.996321 + 0: The maximum resident set size (KB) = 984604 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.179464 - 0: The maximum resident set size (KB) = 1059704 + 0: The total amount of wall time = 483.758640 + 0: The maximum resident set size (KB) = 1063556 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 567.493298 - 0: The maximum resident set size (KB) = 698396 + 0: The total amount of wall time = 557.382468 + 0: The maximum resident set size (KB) = 701552 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.217911 - 0: The maximum resident set size (KB) = 765948 + 0: The total amount of wall time = 544.909232 + 0: The maximum resident set size (KB) = 763976 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.527839 - 0: The maximum resident set size (KB) = 1005180 + 0: The total amount of wall time = 155.346733 + 0: The maximum resident set size (KB) = 1004724 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 101.244927 - 0: The maximum resident set size (KB) = 909892 + 0: The total amount of wall time = 104.178417 + 0: The maximum resident set size (KB) = 914000 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.160320 - 0: The maximum resident set size (KB) = 954992 + 0: The total amount of wall time = 136.460323 + 0: The maximum resident set size (KB) = 943912 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.438610 - 0: The maximum resident set size (KB) = 1036780 + 0: The total amount of wall time = 160.257335 + 0: The maximum resident set size (KB) = 1038208 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.941576 - 0: The maximum resident set size (KB) = 936928 + 0: The total amount of wall time = 67.900861 + 0: The maximum resident set size (KB) = 935628 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.565472 - 0: The maximum resident set size (KB) = 720200 + 0: The total amount of wall time = 342.601558 + 0: The maximum resident set size (KB) = 725024 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.441009 - 0: The maximum resident set size (KB) = 728432 + 0: The total amount of wall time = 337.820731 + 0: The maximum resident set size (KB) = 722960 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.363579 - 0: The maximum resident set size (KB) = 723120 + 0: The total amount of wall time = 184.159346 + 0: The maximum resident set size (KB) = 726288 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.176332 - 0: The maximum resident set size (KB) = 640200 + 0: The total amount of wall time = 112.182828 + 0: The maximum resident set size (KB) = 648892 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.438295 - 0: The maximum resident set size (KB) = 1602056 + 0: The total amount of wall time = 153.211896 + 0: The maximum resident set size (KB) = 1601916 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.584898 - 0: The maximum resident set size (KB) = 872956 + 0: The total amount of wall time = 268.545515 + 0: The maximum resident set size (KB) = 867936 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.868937 - 0: The maximum resident set size (KB) = 1065512 + 0: The total amount of wall time = 823.938870 + 0: The maximum resident set size (KB) = 1066060 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 486.549286 - 0: The maximum resident set size (KB) = 930988 + 0: The total amount of wall time = 470.623706 + 0: The maximum resident set size (KB) = 979260 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.461387 - 0: The maximum resident set size (KB) = 966748 + 0: The total amount of wall time = 753.487954 + 0: The maximum resident set size (KB) = 970608 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.679283 - 0: The maximum resident set size (KB) = 788072 + 0: The total amount of wall time = 149.832720 + 0: The maximum resident set size (KB) = 796516 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 158.061851 - 0: The maximum resident set size (KB) = 793004 + 0: The total amount of wall time = 155.925682 + 0: The maximum resident set size (KB) = 793144 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_debug Checking test 088 control_stochy_debug 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.919235 - 0: The maximum resident set size (KB) = 794888 + 0: The total amount of wall time = 169.063351 + 0: The maximum resident set size (KB) = 804208 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp_debug Checking test 089 control_lndp_debug 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.285917 - 0: The maximum resident set size (KB) = 793008 + 0: The total amount of wall time = 190.861094 + 0: The maximum resident set size (KB) = 801584 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.720940 - 0: The maximum resident set size (KB) = 849040 + 0: The total amount of wall time = 260.560003 + 0: The maximum resident set size (KB) = 846920 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt_debug Checking test 091 control_csawmgt_debug 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.177120 - 0: The maximum resident set size (KB) = 789588 + 0: The total amount of wall time = 258.914282 + 0: The maximum resident set size (KB) = 842304 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.898761 - 0: The maximum resident set size (KB) = 801856 + 0: The total amount of wall time = 179.201496 + 0: The maximum resident set size (KB) = 805632 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_diag_debug Checking test 093 control_diag_debug 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.366995 - 0: The maximum resident set size (KB) = 850188 + 0: The total amount of wall time = 173.877021 + 0: The maximum resident set size (KB) = 848340 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.552187 - 0: The maximum resident set size (KB) = 1623372 + 0: The total amount of wall time = 195.892904 + 0: The maximum resident set size (KB) = 1625116 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1000.797831 - 0: The maximum resident set size (KB) = 890888 + 0: The total amount of wall time = 996.269674 + 0: The maximum resident set size (KB) = 885456 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.722174 - 0: The maximum resident set size (KB) = 1174604 + 0: The total amount of wall time = 275.745979 + 0: The maximum resident set size (KB) = 1168932 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug Checking test 097 hrrr_control_debug 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.963207 - 0: The maximum resident set size (KB) = 1164592 + 0: The total amount of wall time = 271.590196 + 0: The maximum resident set size (KB) = 1168596 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug 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.741707 - 0: The maximum resident set size (KB) = 1167308 + 0: The total amount of wall time = 280.528576 + 0: The maximum resident set size (KB) = 1173592 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_diag_debug Checking test 099 rap_diag_debug 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.372876 - 0: The maximum resident set size (KB) = 1252540 + 0: The total amount of wall time = 288.454772 + 0: The maximum resident set size (KB) = 1263052 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.398344 - 0: The maximum resident set size (KB) = 1170612 + 0: The total amount of wall time = 275.417120 + 0: The maximum resident set size (KB) = 1170928 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug 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.854797 - 0: The maximum resident set size (KB) = 1172612 + 0: The total amount of wall time = 284.750515 + 0: The maximum resident set size (KB) = 1173148 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_lndp_debug Checking test 102 rap_lndp_debug 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.449935 - 0: The maximum resident set size (KB) = 1171376 + 0: The total amount of wall time = 282.531938 + 0: The maximum resident set size (KB) = 1175336 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.375702 - 0: The maximum resident set size (KB) = 1168908 + 0: The total amount of wall time = 274.982551 + 0: The maximum resident set size (KB) = 1173488 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug 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.620865 - 0: The maximum resident set size (KB) = 1170908 + 0: The total amount of wall time = 276.614952 + 0: The maximum resident set size (KB) = 1176848 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_debug Checking test 105 rap_noah_debug 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.157400 - 0: The maximum resident set size (KB) = 1168396 + 0: The total amount of wall time = 267.427999 + 0: The maximum resident set size (KB) = 1169628 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug 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.519247 - 0: The maximum resident set size (KB) = 1174836 + 0: The total amount of wall time = 276.141650 + 0: The maximum resident set size (KB) = 1173796 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.901576 - 0: The maximum resident set size (KB) = 1164904 + 0: The total amount of wall time = 457.003310 + 0: The maximum resident set size (KB) = 1171896 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug 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.187722 - 0: The maximum resident set size (KB) = 1160600 + 0: The total amount of wall time = 275.502771 + 0: The maximum resident set size (KB) = 1178176 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 293.271130 - 0: The maximum resident set size (KB) = 527316 + 0: The total amount of wall time = 289.936492 + 0: The maximum resident set size (KB) = 521536 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 256.961402 - 0: The maximum resident set size (KB) = 1088720 + 0: The total amount of wall time = 252.647918 + 0: The maximum resident set size (KB) = 1087688 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.778640 - 0: The maximum resident set size (KB) = 1010444 + 0: The total amount of wall time = 383.758112 + 0: The maximum resident set size (KB) = 1006020 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 197.815621 - 0: The maximum resident set size (KB) = 952020 + 0: The total amount of wall time = 203.432345 + 0: The maximum resident set size (KB) = 960216 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.557347 - 0: The maximum resident set size (KB) = 1016196 + 0: The total amount of wall time = 400.134561 + 0: The maximum resident set size (KB) = 1030680 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 205.639857 - 0: The maximum resident set size (KB) = 1007188 + 0: The total amount of wall time = 206.607952 + 0: The maximum resident set size (KB) = 1006572 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 211.533046 - 0: The maximum resident set size (KB) = 915468 + 0: The total amount of wall time = 215.344012 + 0: The maximum resident set size (KB) = 902636 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.062178 - 0: The maximum resident set size (KB) = 952872 + 0: The total amount of wall time = 282.287813 + 0: The maximum resident set size (KB) = 954616 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.922028 - 0: The maximum resident set size (KB) = 868764 + 0: The total amount of wall time = 103.415718 + 0: The maximum resident set size (KB) = 869096 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.899477 - 0: The maximum resident set size (KB) = 974616 + 0: The total amount of wall time = 250.548117 + 0: The maximum resident set size (KB) = 975360 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 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.985592 - 0: The maximum resident set size (KB) = 1053704 + 0: The total amount of wall time = 273.325041 + 0: The maximum resident set size (KB) = 1059336 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 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.774497 - 0: The maximum resident set size (KB) = 1049636 + 0: The total amount of wall time = 282.257416 + 0: The maximum resident set size (KB) = 1053436 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug 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.066178 - 0: The maximum resident set size (KB) = 1098800 + 0: The total amount of wall time = 285.234600 + 0: The maximum resident set size (KB) = 1103200 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.208026 - 0: The maximum resident set size (KB) = 1054420 + 0: The total amount of wall time = 269.737592 + 0: The maximum resident set size (KB) = 1055196 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 424.929690 - 0: The maximum resident set size (KB) = 1423424 + 0: The total amount of wall time = 398.032081 + 0: The maximum resident set size (KB) = 1422116 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn 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.936575 - 0: The maximum resident set size (KB) = 1225844 + 0: The total amount of wall time = 386.481844 + 0: The maximum resident set size (KB) = 1229488 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 728.128958 - 0: The maximum resident set size (KB) = 1263108 + 0: The total amount of wall time = 733.354407 + 0: The maximum resident set size (KB) = 1261740 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 828.246699 - 0: The maximum resident set size (KB) = 1221524 + 0: The total amount of wall time = 832.389094 + 0: The maximum resident set size (KB) = 1282792 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm 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 = 364.001952 - 0: The maximum resident set size (KB) = 512676 + 0: The total amount of wall time = 365.599015 + 0: The maximum resident set size (KB) = 513020 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 411.548035 - 0: The maximum resident set size (KB) = 518820 + 0: The total amount of wall time = 415.958286 + 0: The maximum resident set size (KB) = 515156 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm 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 = 174.557804 - 0: The maximum resident set size (KB) = 351360 + 0: The total amount of wall time = 175.662200 + 0: The maximum resident set size (KB) = 357592 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 457.650168 - 0: The maximum resident set size (KB) = 425612 + 0: The total amount of wall time = 469.955226 + 0: The maximum resident set size (KB) = 427488 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.822361 - 0: The maximum resident set size (KB) = 519624 + 0: The total amount of wall time = 229.514594 + 0: The maximum resident set size (KB) = 525540 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm 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 = 217.707845 - 0: The maximum resident set size (KB) = 528096 + 0: The total amount of wall time = 217.383257 + 0: The maximum resident set size (KB) = 520812 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.628445 - 0: The maximum resident set size (KB) = 568768 + 0: The total amount of wall time = 288.268738 + 0: The maximum resident set size (KB) = 567400 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm 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 = 73.999132 - 0: The maximum resident set size (KB) = 377372 + 0: The total amount of wall time = 67.916198 + 0: The maximum resident set size (KB) = 372756 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 750.193223 - 0: The maximum resident set size (KB) = 588324 + 0: The total amount of wall time = 747.687513 + 0: The maximum resident set size (KB) = 587772 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 535.686951 - 0: The maximum resident set size (KB) = 627424 + 0: The total amount of wall time = 542.186519 + 0: The maximum resident set size (KB) = 617936 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.808746 - 0: The maximum resident set size (KB) = 1238872 + 0: The total amount of wall time = 360.868688 + 0: The maximum resident set size (KB) = 1231964 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst 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 = 363.292017 - 0: The maximum resident set size (KB) = 1231256 + 0: The total amount of wall time = 359.140965 + 0: The maximum resident set size (KB) = 1230980 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 933.942370 - 0: The maximum resident set size (KB) = 1045564 + 0: The total amount of wall time = 945.569260 + 0: The maximum resident set size (KB) = 1045080 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.574864 - 0: The maximum resident set size (KB) = 1071160 + 0: The total amount of wall time = 146.198151 + 0: The maximum resident set size (KB) = 1058448 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 96.343399 - 0: The maximum resident set size (KB) = 1030596 + 0: The total amount of wall time = 91.947296 + 0: The maximum resident set size (KB) = 1008020 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.834209 - 0: The maximum resident set size (KB) = 975504 + 0: The total amount of wall time = 146.022056 + 0: The maximum resident set size (KB) = 959064 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.329485 - 0: The maximum resident set size (KB) = 971464 + 0: The total amount of wall time = 145.581507 + 0: The maximum resident set size (KB) = 968112 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.521171 - 0: The maximum resident set size (KB) = 966768 + 0: The total amount of wall time = 142.841358 + 0: The maximum resident set size (KB) = 976704 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.970375 - 0: The maximum resident set size (KB) = 1066316 + 0: The total amount of wall time = 144.747532 + 0: The maximum resident set size (KB) = 1074384 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.861325 - 0: The maximum resident set size (KB) = 1049184 + 0: The total amount of wall time = 147.278170 + 0: The maximum resident set size (KB) = 1071232 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.974206 - 0: The maximum resident set size (KB) = 974220 + 0: The total amount of wall time = 146.761412 + 0: The maximum resident set size (KB) = 972640 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr 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 = 439.795129 - 0: The maximum resident set size (KB) = 874752 + 0: The total amount of wall time = 446.164853 + 0: The maximum resident set size (KB) = 881144 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs 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 = 441.614795 - 0: The maximum resident set size (KB) = 925356 + 0: The total amount of wall time = 447.343849 + 0: The maximum resident set size (KB) = 926128 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.891571 - 0: The maximum resident set size (KB) = 1068424 + 0: The total amount of wall time = 149.634590 + 0: The maximum resident set size (KB) = 1055320 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 198.703107 - 0: The maximum resident set size (KB) = 2298328 + 0: The total amount of wall time = 197.917689 + 0: The maximum resident set size (KB) = 2365664 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 200.212437 - 0: The maximum resident set size (KB) = 2358704 + 0: The total amount of wall time = 198.168709 + 0: The maximum resident set size (KB) = 2359908 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 371.137382 - 0: The maximum resident set size (KB) = 985920 + 0: The total amount of wall time = 354.017644 + 0: The maximum resident set size (KB) = 991668 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.602484 - 0: The maximum resident set size (KB) = 1065188 + 0: The total amount of wall time = 143.991181 + 0: The maximum resident set size (KB) = 1070184 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 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 @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.968962 - 0: The maximum resident set size (KB) = 266144 + 0: The total amount of wall time = 7.030856 + 0: The maximum resident set size (KB) = 261612 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst 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 @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 15.146591 - 0: The maximum resident set size (KB) = 264424 + 0: The total amount of wall time = 13.267089 + 0: The maximum resident set size (KB) = 284856 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 204.616404 - 0: The maximum resident set size (KB) = 1611340 + 0: The total amount of wall time = 203.681403 + 0: The maximum resident set size (KB) = 1606260 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.470959 - 0: The maximum resident set size (KB) = 1634308 + 0: The total amount of wall time = 93.705737 + 0: The maximum resident set size (KB) = 1645460 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.373016 - 0: The maximum resident set size (KB) = 656400 + 0: The total amount of wall time = 87.494969 + 0: The maximum resident set size (KB) = 665408 Test 159 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.266540 - 0: The maximum resident set size (KB) = 2981296 + 0: The total amount of wall time = 227.145887 + 0: The maximum resident set size (KB) = 2975780 Test 160 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.360653 - 0: The maximum resident set size (KB) = 3050424 + 0: The total amount of wall time = 279.132207 + 0: The maximum resident set size (KB) = 3050592 Test 161 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.755306 - 0: The maximum resident set size (KB) = 3058640 + 0: The total amount of wall time = 286.603984 + 0: The maximum resident set size (KB) = 3055608 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 639.433564 - 0: The maximum resident set size (KB) = 1482668 + 0: The total amount of wall time = 615.116390 + 0: The maximum resident set size (KB) = 1478476 Test 163 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1228.737485 - 0: The maximum resident set size (KB) = 1404368 + 0: The total amount of wall time = 1205.516766 + 0: The maximum resident set size (KB) = 1401464 Test 164 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster 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.522945 - 0: The maximum resident set size (KB) = 1476844 + 0: The total amount of wall time = 541.524071 + 0: The maximum resident set size (KB) = 1474248 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 18 22:32:15 CDT 2023 -Elapsed time: 01h:15m:00s. Have a nice day! +Sat Apr 22 14:16:41 CDT 2023 +Elapsed time: 01h:14m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 6c824e6ac1..529b8cf657 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,35 @@ -Wed Apr 19 16:26:02 UTC 2023 +Mon Apr 24 12:59:32 UTC 2023 Start Regression test -Compile 001 elapsed time 1780 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1135 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 982 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 661 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1314 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 009 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1093 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 508 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1283 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 019 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 835 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 623 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 635 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 780 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 782 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 012 compile FAIL + +Compile 001 elapsed time 589 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1114 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 2263 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 510 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1121 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 873 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 962 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 009 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 2135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 2220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1673 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 019 elapsed time 1175 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1515 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 2527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1329 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 2053 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 1049 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 1437 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +94,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 339.539973 -The maximum resident set size (KB) = 2955000 +The total amount of wall time = 332.786944 +The maximum resident set size (KB) = 2954188 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +166,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.269502 -The maximum resident set size (KB) = 2980728 +The total amount of wall time = 384.428658 +The maximum resident set size (KB) = 2981552 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +226,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.074639 -The maximum resident set size (KB) = 2871988 +The total amount of wall time = 235.382308 +The maximum resident set size (KB) = 2871276 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +298,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.732844 -The maximum resident set size (KB) = 2994496 +The total amount of wall time = 384.675576 +The maximum resident set size (KB) = 2993652 Test 004 cpld_control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +358,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.592150 -The maximum resident set size (KB) = 2881368 +The total amount of wall time = 245.986310 +The maximum resident set size (KB) = 2880060 Test 005 cpld_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +418,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.232489 -The maximum resident set size (KB) = 3292164 +The total amount of wall time = 367.611283 +The maximum resident set size (KB) = 3283632 Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +478,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.332320 -The maximum resident set size (KB) = 2982676 +The total amount of wall time = 383.471617 +The maximum resident set size (KB) = 2977728 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +538,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 330.800854 -The maximum resident set size (KB) = 2915468 +The total amount of wall time = 316.137772 +The maximum resident set size (KB) = 2910048 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +610,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.833674 -The maximum resident set size (KB) = 2985684 +The total amount of wall time = 386.377634 +The maximum resident set size (KB) = 2980368 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +665,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 944.206164 -The maximum resident set size (KB) = 3925572 +The total amount of wall time = 936.996522 +The maximum resident set size (KB) = 3920880 Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +720,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 660.994724 -The maximum resident set size (KB) = 3894920 +The total amount of wall time = 651.935188 +The maximum resident set size (KB) = 3896992 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +791,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 287.135737 -The maximum resident set size (KB) = 1579604 +The total amount of wall time = 281.641551 +The maximum resident set size (KB) = 1575968 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +860,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 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 = 304.275251 -The maximum resident set size (KB) = 1630300 +The total amount of wall time = 298.902385 +The maximum resident set size (KB) = 1635732 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +929,14 @@ Checking test 014 cpld_control_noaero_p8_agrid 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 = 310.211095 -The maximum resident set size (KB) = 1628364 +The total amount of wall time = 306.436427 +The maximum resident set size (KB) = 1628592 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +986,14 @@ Checking test 015 cpld_control_c48 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 = 439.120708 -The maximum resident set size (KB) = 2637696 +The total amount of wall time = 433.637237 +The maximum resident set size (KB) = 2636848 Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1043,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.539269 -The maximum resident set size (KB) = 2653664 +The total amount of wall time = 122.526893 +The maximum resident set size (KB) = 2654352 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1100,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 71.318176 -The maximum resident set size (KB) = 2075196 +The total amount of wall time = 68.401655 +The maximum resident set size (KB) = 2072660 Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1172,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.690637 -The maximum resident set size (KB) = 2980364 +The total amount of wall time = 382.884060 +The maximum resident set size (KB) = 2979692 Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1206,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.425935 -The maximum resident set size (KB) = 515084 +The total amount of wall time = 131.389203 +The maximum resident set size (KB) = 518472 Test 019 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1224,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.973868 -The maximum resident set size (KB) = 516248 +The total amount of wall time = 132.968888 +The maximum resident set size (KB) = 517172 Test 020 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1242,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.440925 -The maximum resident set size (KB) = 513856 +The total amount of wall time = 135.753891 +The maximum resident set size (KB) = 513400 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1288,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.751432 -The maximum resident set size (KB) = 678048 +The total amount of wall time = 327.610061 +The maximum resident set size (KB) = 673976 Test 022 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1306,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.982427 -The maximum resident set size (KB) = 616212 +The total amount of wall time = 531.961170 +The maximum resident set size (KB) = 616828 Test 023 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1324,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.539223 -The maximum resident set size (KB) = 926136 +The total amount of wall time = 589.700932 +The maximum resident set size (KB) = 920804 Test 024 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1374,14 @@ Checking test 025 control_c384gdas 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 = 499.469828 -The maximum resident set size (KB) = 1057676 +The total amount of wall time = 498.218990 +The maximum resident set size (KB) = 1064028 Test 025 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1392,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.363287 -The maximum resident set size (KB) = 520244 +The total amount of wall time = 90.417520 +The maximum resident set size (KB) = 522660 Test 026 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.762390 -The maximum resident set size (KB) = 291376 +The total amount of wall time = 49.242742 +The maximum resident set size (KB) = 290832 Test 027 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1424,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.014364 -The maximum resident set size (KB) = 518540 +The total amount of wall time = 83.451979 +The maximum resident set size (KB) = 520864 Test 028 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1446,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.928546 -The maximum resident set size (KB) = 516116 +The total amount of wall time = 136.424906 +The maximum resident set size (KB) = 516640 Test 029 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1468,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.282185 -The maximum resident set size (KB) = 517012 +The total amount of wall time = 136.648895 +The maximum resident set size (KB) = 519496 Test 030 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1522,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.036450 -The maximum resident set size (KB) = 1491880 +The total amount of wall time = 191.641218 +The maximum resident set size (KB) = 1485720 Test 031 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1568,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 103.282808 -The maximum resident set size (KB) = 658612 +The total amount of wall time = 101.539990 +The maximum resident set size (KB) = 656120 Test 032 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1622,14 @@ Checking test 033 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 179.959380 -The maximum resident set size (KB) = 1501064 +The total amount of wall time = 179.926871 +The maximum resident set size (KB) = 1498956 Test 033 control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1668,14 @@ Checking test 034 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 104.123205 -The maximum resident set size (KB) = 668208 +The total amount of wall time = 101.997620 +The maximum resident set size (KB) = 666896 Test 034 control_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1718,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.844252 -The maximum resident set size (KB) = 1476740 +The total amount of wall time = 200.108793 +The maximum resident set size (KB) = 1479360 Test 035 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1768,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.549586 -The maximum resident set size (KB) = 1577292 +The total amount of wall time = 176.135736 +The maximum resident set size (KB) = 1580672 Test 036 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1794,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.780218 -The maximum resident set size (KB) = 1489044 +The total amount of wall time = 330.925937 +The maximum resident set size (KB) = 1488000 Test 037 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1848,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.977197 -The maximum resident set size (KB) = 1552276 +The total amount of wall time = 251.732612 +The maximum resident set size (KB) = 1547224 Test 038 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1902,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.907407 -The maximum resident set size (KB) = 1497112 +The total amount of wall time = 195.904170 +The maximum resident set size (KB) = 1498264 Test 039 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1956,14 @@ Checking test 040 merra2_thompson results .... 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.239155 -The maximum resident set size (KB) = 1498148 +The total amount of wall time = 208.681940 +The maximum resident set size (KB) = 1491160 Test 040 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1974,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.913394 -The maximum resident set size (KB) = 658056 +The total amount of wall time = 311.992347 +The maximum resident set size (KB) = 657496 Test 041 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 163.446951 -The maximum resident set size (KB) = 652060 +The total amount of wall time = 155.597256 +The maximum resident set size (KB) = 653292 Test 042 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2006,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.495697 -The maximum resident set size (KB) = 653172 +The total amount of wall time = 308.573372 +The maximum resident set size (KB) = 653556 Test 043 regional_control_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.569722 -The maximum resident set size (KB) = 653444 +The total amount of wall time = 156.610277 +The maximum resident set size (KB) = 653332 Test 044 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2038,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.740058 -The maximum resident set size (KB) = 658896 +The total amount of wall time = 325.659223 +The maximum resident set size (KB) = 654516 Test 045 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2056,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 180.500578 -The maximum resident set size (KB) = 696616 +The total amount of wall time = 193.509057 +The maximum resident set size (KB) = 693768 Test 046 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2071,28 @@ Checking test 047 regional_noquilt 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 = 315.305789 -The maximum resident set size (KB) = 647532 +The total amount of wall time = 315.075000 +The maximum resident set size (KB) = 650708 Test 047 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 291.639575 -The maximum resident set size (KB) = 654944 +The total amount of wall time = 290.159693 +The maximum resident set size (KB) = 650444 Test 048 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2103,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.805409 -The maximum resident set size (KB) = 658356 +The total amount of wall time = 306.258222 +The maximum resident set size (KB) = 654280 Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2121,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 383.723252 -The maximum resident set size (KB) = 340308 +The total amount of wall time = 366.468870 +The maximum resident set size (KB) = 342520 Test 050 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2175,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.393621 -The maximum resident set size (KB) = 893596 +The total amount of wall time = 418.516176 +The maximum resident set size (KB) = 891092 Test 051 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2193,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 248.307023 -The maximum resident set size (KB) = 990696 +The total amount of wall time = 245.803208 +The maximum resident set size (KB) = 990588 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2247,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.158598 -The maximum resident set size (KB) = 894000 +The total amount of wall time = 433.654119 +The maximum resident set size (KB) = 896048 Test 053 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2301,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 390.867446 -The maximum resident set size (KB) = 964400 +The total amount of wall time = 388.907757 +The maximum resident set size (KB) = 970204 Test 054 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2347,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.356255 -The maximum resident set size (KB) = 649708 +The total amount of wall time = 213.645148 +The maximum resident set size (KB) = 649556 Test 055 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2401,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 424.411036 -The maximum resident set size (KB) = 896076 +The total amount of wall time = 423.262494 +The maximum resident set size (KB) = 894008 Test 056 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2455,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.473573 -The maximum resident set size (KB) = 896912 +The total amount of wall time = 439.354757 +The maximum resident set size (KB) = 894784 Test 057 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2501,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.574639 -The maximum resident set size (KB) = 647448 +The total amount of wall time = 310.769795 +The maximum resident set size (KB) = 645264 Test 058 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2555,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 407.800005 -The maximum resident set size (KB) = 894940 +The total amount of wall time = 406.789067 +The maximum resident set size (KB) = 895696 Test 059 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2609,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 423.007042 -The maximum resident set size (KB) = 891152 +The total amount of wall time = 421.128381 +The maximum resident set size (KB) = 894680 Test 060 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2663,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 375.839274 -The maximum resident set size (KB) = 959256 +The total amount of wall time = 374.072111 +The maximum resident set size (KB) = 961276 Test 061 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2709,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.159398 -The maximum resident set size (KB) = 643172 +The total amount of wall time = 298.532114 +The maximum resident set size (KB) = 640484 Test 062 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2763,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.591907 -The maximum resident set size (KB) = 888036 +The total amount of wall time = 417.091979 +The maximum resident set size (KB) = 894008 Test 063 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2785,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.280264 -The maximum resident set size (KB) = 579508 +The total amount of wall time = 481.173609 +The maximum resident set size (KB) = 579812 Test 064 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2807,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.926020 -The maximum resident set size (KB) = 574072 +The total amount of wall time = 473.839734 +The maximum resident set size (KB) = 573532 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2823,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 153.821641 -The maximum resident set size (KB) = 803820 +The total amount of wall time = 149.146413 +The maximum resident set size (KB) = 802528 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2839,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 112.144168 -The maximum resident set size (KB) = 807436 +The total amount of wall time = 106.625431 +The maximum resident set size (KB) = 806268 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2855,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 142.349806 -The maximum resident set size (KB) = 782980 +The total amount of wall time = 138.435385 +The maximum resident set size (KB) = 783120 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2871,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 158.110560 -The maximum resident set size (KB) = 804632 +The total amount of wall time = 150.744601 +The maximum resident set size (KB) = 806468 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.755517 -The maximum resident set size (KB) = 764760 +The total amount of wall time = 69.626581 +The maximum resident set size (KB) = 767764 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2901,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.717187 -The maximum resident set size (KB) = 585676 +The total amount of wall time = 349.275207 +The maximum resident set size (KB) = 584444 Test 071 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2919,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.083543 -The maximum resident set size (KB) = 583180 +The total amount of wall time = 364.245652 +The maximum resident set size (KB) = 583840 Test 072 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2937,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.355463 -The maximum resident set size (KB) = 553028 +The total amount of wall time = 181.458349 +The maximum resident set size (KB) = 552340 Test 073 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.721650 -The maximum resident set size (KB) = 276372 +The total amount of wall time = 118.067153 +The maximum resident set size (KB) = 275504 Test 074 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3003,14 @@ Checking test 075 control_p8_faster results .... 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.390734 -The maximum resident set size (KB) = 1486628 +The total amount of wall time = 188.289726 +The maximum resident set size (KB) = 1493756 Test 075 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,410 +3021,26 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.436035 -The maximum resident set size (KB) = 656880 +The total amount of wall time = 295.851219 +The maximum resident set size (KB) = 653092 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 905.443128 -The maximum resident set size (KB) = 828344 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 519.809870 -The maximum resident set size (KB) = 827556 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 810.646900 -The maximum resident set size (KB) = 803752 - -Test 079 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug 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 = 157.448230 -The maximum resident set size (KB) = 674284 - -Test 080 control_CubedSphereGrid_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 157.752026 -The maximum resident set size (KB) = 681364 - -Test 081 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy_debug -Checking test 082 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 180.334949 -The maximum resident set size (KB) = 686204 - -Test 082 control_stochy_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_lndp_debug -Checking test 083 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 159.573522 -The maximum resident set size (KB) = 683368 - -Test 083 control_lndp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 255.421356 -The maximum resident set size (KB) = 719892 - -Test 084 control_csawmg_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 251.598991 -The maximum resident set size (KB) = 718860 - -Test 085 control_csawmgt_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_ras_debug -Checking test 086 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 161.543449 -The maximum resident set size (KB) = 694292 - -Test 086 control_ras_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_diag_debug -Checking test 087 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 162.369050 -The maximum resident set size (KB) = 736636 - -Test 087 control_diag_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_debug_p8 -Checking test 088 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 187.597736 -The maximum resident set size (KB) = 1498624 - -Test 088 control_debug_p8 PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_debug -Checking test 089 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 1039.595080 -The maximum resident set size (KB) = 678524 - -Test 089 regional_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_debug -Checking test 090 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.686439 -The maximum resident set size (KB) = 1056176 - -Test 090 rap_control_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 290.483752 -The maximum resident set size (KB) = 1052036 - -Test 091 hrrr_control_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.256790 -The maximum resident set size (KB) = 1056096 - -Test 092 rap_unified_drag_suite_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_diag_debug -Checking test 093 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 308.625929 -The maximum resident set size (KB) = 1137020 - -Test 093 rap_diag_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 305.098400 -The maximum resident set size (KB) = 1051148 - -Test 094 rap_cires_ugwp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 303.344739 -The maximum resident set size (KB) = 1051584 - -Test 095 rap_unified_ugwp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 299.792449 -The maximum resident set size (KB) = 1056824 - -Test 096 rap_lndp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_flake_debug -Checking test 097 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.987993 -The maximum resident set size (KB) = 1054024 - -Test 097 rap_flake_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_progcld_thompson_debug -Checking test 098 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.412497 -The maximum resident set size (KB) = 1055236 - -Test 098 rap_progcld_thompson_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_noah_debug -Checking test 099 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 292.168813 -The maximum resident set size (KB) = 1046404 - -Test 099 rap_noah_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_debug -Checking test 100 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.133766 -The maximum resident set size (KB) = 1052108 - -Test 100 rap_sfcdiff_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 493.098912 -The maximum resident set size (KB) = 1052864 - -Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1beta_debug -Checking test 102 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.553659 -The maximum resident set size (KB) = 1049100 - -Test 102 rrfs_v1beta_debug PASS - - baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.285559 -The maximum resident set size (KB) = 302080 +The total amount of wall time = 297.294187 +The maximum resident set size (KB) = 302664 Test 103 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3051,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.791170 -The maximum resident set size (KB) = 892048 +The total amount of wall time = 232.449938 +The maximum resident set size (KB) = 887800 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3105,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 356.887978 -The maximum resident set size (KB) = 781652 +The total amount of wall time = 353.386201 +The maximum resident set size (KB) = 782124 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3159,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 189.453837 -The maximum resident set size (KB) = 779500 +The total amount of wall time = 188.356154 +The maximum resident set size (KB) = 776808 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3213,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.078229 -The maximum resident set size (KB) = 837040 +The total amount of wall time = 332.172607 +The maximum resident set size (KB) = 833488 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3267,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 174.140247 -The maximum resident set size (KB) = 831660 +The total amount of wall time = 173.043021 +The maximum resident set size (KB) = 832080 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3321,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 197.130587 -The maximum resident set size (KB) = 775064 +The total amount of wall time = 195.623567 +The maximum resident set size (KB) = 777624 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3367,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 260.224944 -The maximum resident set size (KB) = 611736 +The total amount of wall time = 260.245192 +The maximum resident set size (KB) = 615148 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3413,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 105.407498 -The maximum resident set size (KB) = 607664 +The total amount of wall time = 96.968978 +The maximum resident set size (KB) = 607968 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3467,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 237.041281 -The maximum resident set size (KB) = 797816 +The total amount of wall time = 245.604524 +The maximum resident set size (KB) = 793952 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.416683 -The maximum resident set size (KB) = 935128 +The total amount of wall time = 289.219485 +The maximum resident set size (KB) = 942148 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.914488 -The maximum resident set size (KB) = 941604 +The total amount of wall time = 285.418426 +The maximum resident set size (KB) = 934880 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.790541 -The maximum resident set size (KB) = 957684 +The total amount of wall time = 295.636388 +The maximum resident set size (KB) = 955432 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 274.460932 -The maximum resident set size (KB) = 827292 +The total amount of wall time = 275.096473 +The maximum resident set size (KB) = 825000 Test 116 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 319.377436 -The maximum resident set size (KB) = 1174352 +The total amount of wall time = 316.464386 +The maximum resident set size (KB) = 1185620 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3550,14 @@ Checking test 118 hafs_regional_atm_ocn 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 = 394.536441 -The maximum resident set size (KB) = 862804 +The total amount of wall time = 391.437555 +The maximum resident set size (KB) = 858736 Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3566,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 708.318408 -The maximum resident set size (KB) = 890476 +The total amount of wall time = 705.815195 +The maximum resident set size (KB) = 890876 Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3584,28 @@ Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 906.024930 -The maximum resident set size (KB) = 913276 +The total amount of wall time = 899.418705 +The maximum resident set size (KB) = 915200 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm 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 = 333.930528 -The maximum resident set size (KB) = 395672 +The total amount of wall time = 338.143935 +The maximum resident set size (KB) = 395516 Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3614,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.920408 -The maximum resident set size (KB) = 405268 +The total amount of wall time = 404.011449 +The maximum resident set size (KB) = 405352 Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm 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 = 173.229301 -The maximum resident set size (KB) = 278280 +The total amount of wall time = 173.408393 +The maximum resident set size (KB) = 266360 Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +3653,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 491.470164 -The maximum resident set size (KB) = 346568 +The total amount of wall time = 490.282445 +The maximum resident set size (KB) = 350360 Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +3669,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 228.048023 -The maximum resident set size (KB) = 411832 +The total amount of wall time = 219.430252 +The maximum resident set size (KB) = 408844 Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm 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 = 208.553791 -The maximum resident set size (KB) = 409144 +The total amount of wall time = 213.039662 +The maximum resident set size (KB) = 408800 Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +3699,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.113521 -The maximum resident set size (KB) = 480508 +The total amount of wall time = 254.164521 +The maximum resident set size (KB) = 495172 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm 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 = 86.434869 -The maximum resident set size (KB) = 282832 +The total amount of wall time = 85.543090 +The maximum resident set size (KB) = 291076 Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 804.588105 -The maximum resident set size (KB) = 490584 +The total amount of wall time = 805.965424 +The maximum resident set size (KB) = 491240 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +3745,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 505.931523 -The maximum resident set size (KB) = 526376 +The total amount of wall time = 506.890615 +The maximum resident set size (KB) = 529368 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +3837,14 @@ Checking test 131 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 243.700148 -The maximum resident set size (KB) = 1538904 +The total amount of wall time = 254.506716 +The maximum resident set size (KB) = 1541332 Test 131 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4262,23 +3879,10 @@ Checking test 132 atmaero_control_p8 results .... 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 = 256.595350 -The maximum resident set size (KB) = 2816036 - -Test 132 atmaero_control_p8 PASS - + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......ERROR baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +3926,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.726206 -The maximum resident set size (KB) = 2879312 +The total amount of wall time = 283.990505 +The maximum resident set size (KB) = 2879264 Test 133 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +3977,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.973773 -The maximum resident set size (KB) = 2888184 +The total amount of wall time = 295.965472 +The maximum resident set size (KB) = 2886548 Test 134 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4000,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 687.952870 -The maximum resident set size (KB) = 1263652 +The total amount of wall time = 988.702540 +The maximum resident set size (KB) = 1259292 Test 135 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4021,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1306.168366 -The maximum resident set size (KB) = 1296880 +The total amount of wall time = 1329.841478 +The maximum resident set size (KB) = 1289728 Test 136 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4044,507 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 644.109381 -The maximum resident set size (KB) = 1256960 +The total amount of wall time = 764.609880 +The maximum resident set size (KB) = 1258652 Test 137 regional_atmaq_faster PASS +FAILED TESTS: +Test atmaero_control_p8 132 failed in run_test failed +Test compile_012 failed in run_compile failed + +REGRESSION TEST FAILED +Mon Apr 24 14:34:04 UTC 2023 +Elapsed time: 01h:34m:33s. Have a nice day! +Mon Apr 24 14:37:59 UTC 2023 +Start Regression test + +Compile 001 elapsed time 209 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 001 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 907.828960 +The maximum resident set size (KB) = 834208 + +Test 001 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 523.101721 +The maximum resident set size (KB) = 830936 + +Test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_conus13km_hrrr_warm_debug +Checking test 003 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 810.772608 +The maximum resident set size (KB) = 802388 + +Test 003 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_CubedSphereGrid_debug +Checking test 004 control_CubedSphereGrid_debug 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.821739 +The maximum resident set size (KB) = 673868 + +Test 004 control_CubedSphereGrid_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_wrtGauss_netcdf_parallel_debug +Checking test 005 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 158.668342 +The maximum resident set size (KB) = 677184 + +Test 005 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_stochy_debug +Checking test 006 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 179.640409 +The maximum resident set size (KB) = 685172 + +Test 006 control_stochy_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_lndp_debug +Checking test 007 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 160.334670 +The maximum resident set size (KB) = 682840 + +Test 007 control_lndp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmg_debug +Checking test 008 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 256.294985 +The maximum resident set size (KB) = 719888 + +Test 008 control_csawmg_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmgt_debug +Checking test 009 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 252.602767 +The maximum resident set size (KB) = 722360 + +Test 009 control_csawmgt_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_ras_debug +Checking test 010 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 162.257201 +The maximum resident set size (KB) = 694868 + +Test 010 control_ras_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_diag_debug +Checking test 011 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 164.961975 +The maximum resident set size (KB) = 737296 + +Test 011 control_diag_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_debug_p8 +Checking test 012 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 186.065222 +The maximum resident set size (KB) = 1505676 + +Test 012 control_debug_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/regional_debug +Checking test 013 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 1037.325789 +The maximum resident set size (KB) = 677636 + +Test 013 regional_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_control_debug +Checking test 014 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.944590 +The maximum resident set size (KB) = 1054700 + +Test 014 rap_control_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/hrrr_control_debug +Checking test 015 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 290.306582 +The maximum resident set size (KB) = 1047212 + +Test 015 hrrr_control_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_drag_suite_debug +Checking test 016 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.234072 +The maximum resident set size (KB) = 1057256 + +Test 016 rap_unified_drag_suite_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_diag_debug +Checking test 017 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 307.911077 +The maximum resident set size (KB) = 1135276 + +Test 017 rap_diag_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_cires_ugwp_debug +Checking test 018 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 302.521620 +The maximum resident set size (KB) = 1053676 + +Test 018 rap_cires_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_ugwp_debug +Checking test 019 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 303.310686 +The maximum resident set size (KB) = 1056240 + +Test 019 rap_unified_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_lndp_debug +Checking test 020 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 300.522189 +The maximum resident set size (KB) = 1054548 + +Test 020 rap_lndp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_flake_debug +Checking test 021 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.139168 +The maximum resident set size (KB) = 1053616 + +Test 021 rap_flake_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_progcld_thompson_debug +Checking test 022 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.245024 +The maximum resident set size (KB) = 1057192 + +Test 022 rap_progcld_thompson_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_debug +Checking test 023 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 291.404869 +The maximum resident set size (KB) = 1048908 + +Test 023 rap_noah_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_sfcdiff_debug +Checking test 024 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.967733 +The maximum resident set size (KB) = 1052580 + +Test 024 rap_sfcdiff_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 487.318256 +The maximum resident set size (KB) = 1051996 + +Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_v1beta_debug +Checking test 026 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 292.024711 +The maximum resident set size (KB) = 1046360 + +Test 026 rrfs_v1beta_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/atmaero_control_p8 +Checking test 027 atmaero_control_p8 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 ............ALT CHECK......ERROR +FAILED TESTS: +Test atmaero_control_p8 027 failed in run_test failed + +REGRESSION TEST FAILED +Mon Apr 24 15:02:40 UTC 2023 +Elapsed time: 00h:24m:42s. Have a nice day! +Mon Apr 24 15:55:26 UTC 2023 +Start Regression test + +Compile 001 elapsed time 459 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_92479/atmaero_control_p8 +Checking test 001 atmaero_control_p8 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 = 250.529149 +The maximum resident set size (KB) = 2814932 + +Test 001 atmaero_control_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Wed Apr 19 17:27:38 UTC 2023 -Elapsed time: 01h:01m:37s. Have a nice day! +Mon Apr 24 16:11:03 UTC 2023 +Elapsed time: 00h:15m:38s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 56249c3500..be580872cb 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -73,14 +73,6 @@ echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" # set CMAKE_FLAGS based on $MAKE_OPT CMAKE_FLAGS=$MAKE_OPT - -# FIXME - create CCPP include directory before building FMS to avoid -# gfortran warnings of non-existent include directory (adding -# -Wno-missing-include-dirs) to the GNU compiler flags does not work, -# see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); -# this line can be removed once FMS becomes a pre-installed library -mkdir -p $PATHTR/FV3/ccpp/include - CMAKE_FLAGS+=" -DMPI=ON" if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 83407fe53c..0b5e4e3ef0 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -345,14 +345,6 @@ check_results() { echo ".......MISSING baseline" test_status='FAIL' - elif [[ $RT_COMPILER == "gnu" && $i == "RESTART/fv_core.res.nc" ]] ; then - - # Although identical in ncdiff, RESTART/fv_core.res.nc differs in byte 469, line 3, - # for the fv3_control_32bit test between each run (without changing the source code) - # for GNU compilers - skip comparison. - echo ".......SKIP for gnu compilers" >> ${REGRESSIONTEST_LOG} - echo ".......SKIP for gnu compilers" - else cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? @@ -366,7 +358,11 @@ check_results() { if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 ]] ; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." - ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then + nccmp -d -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + else + ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? + fi if [[ $d -eq 1 ]]; then echo "....ERROR" >> ${REGRESSIONTEST_LOG} echo "....ERROR" diff --git a/tests/run_test.sh b/tests/run_test.sh index 1baa002a45..ac84897b97 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -105,6 +105,11 @@ if [[ $MACHINE_ID == wcoss2.* ]] || [[ $MACHINE_ID == acorn.* ]] ; then module load gcc/10.3.0 python/3.8.6 fi +# load nccmp module +if [[ $MACHINE_ID == hera.* ]] || [[ $MACHINE_ID == orion.* ]] || [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == jet.* ]] || [[ $MACHINE_ID == cheyenne.* ]]; then + module load nccmp +fi + SRCD="${PATHTR}" RUND="${RUNDIR}" @@ -276,7 +281,6 @@ if [[ $SCHEDULER = 'none' ]]; then ulimit -s unlimited if [[ $CI_TEST = 'true' ]]; then - eval ${OMP_ENV} mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) else mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) From 3cc95d67734a130c73ddc5b29676e379e548b656 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Wed, 26 Apr 2023 12:55:47 -0400 Subject: [PATCH 2/5] Add CLM Lake Model and update Flake (#1509) setup RT for flake * add fv3-conf for flake * add clm lake to FV3 * bug fixes, clm lake restart, and clm lake suite * flake_control_run.IN => lake_control_run.IN --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 2436 ++++++------ tests/RegressionTests_cheyenne.gnu.log | 1197 +++--- tests/RegressionTests_cheyenne.intel.log | 2461 ++++++------ tests/RegressionTests_hera.gnu.log | 1185 +++--- tests/RegressionTests_hera.intel.log | 2496 ++++++------ tests/RegressionTests_jet.intel.log | 3352 ++++++++--------- tests/RegressionTests_orion.intel.log | 1074 +++--- tests/RegressionTests_wcoss2.intel.log | 3209 ++++++++-------- tests/default_vars.sh | 8 +- tests/fv3_conf/lake_control_run.IN | 152 + tests/parm/control_flake.nml.IN | 6 + tests/parm/rap.nml.IN | 2 + tests/parm/rrfs_conus13km_hrrr.nml.IN | 2 + tests/rt.conf | 18 +- tests/rt.sh | 2 +- tests/rt_gnu.conf | 8 +- tests/tests/control_flake | 6 +- tests/tests/control_flake_debug | 40 + tests/tests/hrrr_control | 74 +- tests/tests/hrrr_control_2threads | 75 +- tests/tests/hrrr_control_2threads_dyn32_phy32 | 77 +- tests/tests/hrrr_control_debug | 10 +- tests/tests/hrrr_control_debug_dyn32_phy32 | 12 +- tests/tests/hrrr_control_decomp | 74 +- tests/tests/hrrr_control_decomp_dyn32_phy32 | 76 +- tests/tests/hrrr_control_dyn32_phy32 | 76 +- tests/tests/hrrr_control_restart | 44 +- tests/tests/hrrr_control_restart_dyn32_phy32 | 46 +- tests/tests/rap_clm_lake | 106 + tests/tests/rap_clm_lake_debug | 66 + tests/tests/rap_flake_debug | 3 +- tests/tests/rrfs_conus13km_hrrr_warm | 3 + tests/tests/rrfs_conus13km_hrrr_warm_2threads | 4 + tests/tests/rrfs_conus13km_hrrr_warm_debug | 3 + tests/tests/rrfs_conus13km_hrrr_warm_decomp | 3 + tests/tests/rrfs_conus13km_hrrr_warm_restart | 3 + .../rrfs_conus13km_hrrr_warm_restart_mismatch | 2 + tests/tests/rrfs_conus13km_radar_tten_warm | 3 + .../rrfs_conus13km_radar_tten_warm_2threads | 3 + .../rrfs_conus13km_radar_tten_warm_debug | 3 + .../rrfs_conus13km_radar_tten_warm_decomp | 3 + .../rrfs_conus13km_radar_tten_warm_restart | 3 + tests/tests/rrfs_smoke_conus13km_hrrr_warm | 4 +- .../rrfs_smoke_conus13km_hrrr_warm_2threads | 2 + .../rrfs_smoke_conus13km_hrrr_warm_debug | 2 + ...s_smoke_conus13km_hrrr_warm_debug_2threads | 2 + ...rfs_smoke_conus13km_hrrr_warm_debug_decomp | 2 + .../rrfs_smoke_conus13km_hrrr_warm_decomp | 2 + .../rrfs_smoke_conus13km_hrrr_warm_restart | 2 + .../rrfs_smoke_conus13km_radar_tten_warm | 2 + 52 files changed, 9318 insertions(+), 9130 deletions(-) create mode 100644 tests/fv3_conf/lake_control_run.IN create mode 100644 tests/tests/control_flake_debug create mode 100644 tests/tests/rap_clm_lake create mode 100644 tests/tests/rap_clm_lake_debug diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 75fed2b0e1..fe2c15820c 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 75fed2b0e1d7f81543b62f586aa648f36b290b5a +Subproject commit fe2c15820c27808260c313fa5caa0ae69e987dae diff --git a/FV3 b/FV3 index aed060737a..33ac26df83 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit aed060737ad8e65b4a101e5c61724fb8adbe94f5 +Subproject commit 33ac26df83d1eccf2b591392396f9e6682a3d856 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index f55b10487e..9dedcd48f0 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Fri Apr 21 18:25:24 UTC 2023 +Tue Apr 25 01:35:00 UTC 2023 Start Regression test -Compile 001 elapsed time 1024 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 546 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1026 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 937 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 479 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1014 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1470 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 010 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 736 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 601 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 020 elapsed time 326 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 996 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 701 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 023 elapsed time 256 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 482 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 936 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 522 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 949 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 492 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 855 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_mixedmode +Compile 001 elapsed time 725 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1304 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1046 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1043 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 975 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 690 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 981 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 505 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 020 elapsed time 303 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1007 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 745 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 023 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 265 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 499 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 971 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 490 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 903 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 585 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 960 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.582242 -The maximum resident set size (KB) = 2951024 +The total amount of wall time = 332.503414 +The maximum resident set size (KB) = 2946220 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 259.108988 -The maximum resident set size (KB) = 1575816 +The total amount of wall time = 259.036510 +The maximum resident set size (KB) = 1575492 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.264368 -The maximum resident set size (KB) = 2978804 +The total amount of wall time = 386.852413 +The maximum resident set size (KB) = 2979948 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.481995 -The maximum resident set size (KB) = 2866968 +The total amount of wall time = 228.843863 +The maximum resident set size (KB) = 2863488 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.311437 -The maximum resident set size (KB) = 2990136 +The total amount of wall time = 385.434544 +The maximum resident set size (KB) = 2991160 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.849493 -The maximum resident set size (KB) = 2876676 +The total amount of wall time = 232.030900 +The maximum resident set size (KB) = 2878164 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.367543 -The maximum resident set size (KB) = 3279320 +The total amount of wall time = 364.696515 +The maximum resident set size (KB) = 3280884 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.417634 -The maximum resident set size (KB) = 2978040 +The total amount of wall time = 377.377611 +The maximum resident set size (KB) = 2977248 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 315.918666 -The maximum resident set size (KB) = 2905528 +The total amount of wall time = 317.477901 +The maximum resident set size (KB) = 2908888 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.920105 -The maximum resident set size (KB) = 2977536 +The total amount of wall time = 383.074433 +The maximum resident set size (KB) = 2978716 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 279.741473 -The maximum resident set size (KB) = 1572204 +The total amount of wall time = 280.923937 +The maximum resident set size (KB) = 1567880 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 298.370361 -The maximum resident set size (KB) = 1629996 +The total amount of wall time = 299.076175 +The maximum resident set size (KB) = 1629640 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid 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 = 307.973812 -The maximum resident set size (KB) = 1623124 +The total amount of wall time = 306.489492 +The maximum resident set size (KB) = 1621068 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 430.905899 -The maximum resident set size (KB) = 2634940 +The total amount of wall time = 432.714083 +The maximum resident set size (KB) = 2637688 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 119.347991 -The maximum resident set size (KB) = 2652492 +The total amount of wall time = 121.209738 +The maximum resident set size (KB) = 2647960 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.101041 -The maximum resident set size (KB) = 2066324 +The total amount of wall time = 66.663834 +The maximum resident set size (KB) = 2072020 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,15 +1139,33 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.862362 -The maximum resident set size (KB) = 2974656 +The total amount of wall time = 378.047782 +The maximum resident set size (KB) = 2975272 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid -Checking test 018 control_CubedSphereGrid results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_flake +Checking test 018 control_flake 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 = 213.026507 +The maximum resident set size (KB) = 559700 + +Test 018 control_flake PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1173,15 +1191,15 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.414193 -The maximum resident set size (KB) = 510980 +The total amount of wall time = 129.698798 +The maximum resident set size (KB) = 511524 -Test 018 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_latlon -Checking test 019 control_latlon results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,15 +1209,15 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.238436 -The maximum resident set size (KB) = 516596 +The total amount of wall time = 133.161425 +The maximum resident set size (KB) = 512560 -Test 019 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel -Checking test 020 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1209,15 +1227,15 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.145144 -The maximum resident set size (KB) = 513400 +The total amount of wall time = 135.047327 +The maximum resident set size (KB) = 514576 -Test 020 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c48 -Checking test 021 control_c48 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1255,15 +1273,15 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.204999 -The maximum resident set size (KB) = 672672 +The total amount of wall time = 329.457511 +The maximum resident set size (KB) = 675008 -Test 021 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c192 -Checking test 022 control_c192 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1273,15 +1291,15 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.214117 -The maximum resident set size (KB) = 611560 +The total amount of wall time = 528.534169 +The maximum resident set size (KB) = 614968 -Test 022 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384 -Checking test 023 control_c384 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1291,15 +1309,15 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 563.207618 -The maximum resident set size (KB) = 925368 +The total amount of wall time = 568.087683 +The maximum resident set size (KB) = 924148 -Test 023 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384gdas -Checking test 024 control_c384gdas results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1359,15 @@ Checking test 024 control_c384gdas 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 = 514.113576 -The maximum resident set size (KB) = 1054512 +The total amount of wall time = 500.756593 +The maximum resident set size (KB) = 1060456 -Test 024 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy -Checking test 025 control_stochy results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1359,29 +1377,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.149320 -The maximum resident set size (KB) = 517076 +The total amount of wall time = 89.539990 +The maximum resident set size (KB) = 516012 -Test 025 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_restart -Checking test 026 control_stochy_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.894612 -The maximum resident set size (KB) = 284936 +The total amount of wall time = 49.292419 +The maximum resident set size (KB) = 288652 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp -Checking test 027 control_lndp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1409,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.082812 -The maximum resident set size (KB) = 519156 +The total amount of wall time = 83.965880 +The maximum resident set size (KB) = 519356 -Test 027 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr4 -Checking test 028 control_iovr4 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1413,15 +1431,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.015795 -The maximum resident set size (KB) = 513020 +The total amount of wall time = 137.054505 +The maximum resident set size (KB) = 513868 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr5 -Checking test 029 control_iovr5 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,15 +1453,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.803998 -The maximum resident set size (KB) = 513844 +The total amount of wall time = 135.542871 +The maximum resident set size (KB) = 515444 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8 -Checking test 030 control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,15 +1507,15 @@ Checking test 030 control_p8 results .... 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.427691 -The maximum resident set size (KB) = 1487188 +The total amount of wall time = 177.910423 +The maximum resident set size (KB) = 1485196 -Test 030 control_p8 PASS +Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_p8 -Checking test 031 control_restart_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1535,15 +1553,15 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 97.965837 -The maximum resident set size (KB) = 655032 +The total amount of wall time = 99.868718 +The maximum resident set size (KB) = 651492 -Test 031 control_restart_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_qr_p8 -Checking test 032 control_qr_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_qr_p8 +Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1589,15 +1607,15 @@ Checking test 032 control_qr_p8 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 = 175.176275 -The maximum resident set size (KB) = 1494332 +The total amount of wall time = 176.198411 +The maximum resident set size (KB) = 1495060 -Test 032 control_qr_p8 PASS +Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_qr_p8 -Checking test 033 control_restart_qr_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_restart_qr_p8 +Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1635,15 +1653,15 @@ Checking test 033 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 98.702188 -The maximum resident set size (KB) = 665008 +The total amount of wall time = 100.776790 +The maximum resident set size (KB) = 668700 -Test 033 control_restart_qr_p8 PASS +Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_decomp_p8 +Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1685,15 +1703,15 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.027532 -The maximum resident set size (KB) = 1482816 +The total amount of wall time = 180.922074 +The maximum resident set size (KB) = 1472136 -Test 034 control_decomp_p8 PASS +Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_2threads_p8 +Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1735,15 +1753,15 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.313352 -The maximum resident set size (KB) = 1565920 +The total amount of wall time = 156.641468 +The maximum resident set size (KB) = 1563452 -Test 035 control_2threads_p8 PASS +Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_lndp -Checking test 036 control_p8_lndp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_lndp +Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1761,15 +1779,15 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.089296 -The maximum resident set size (KB) = 1488012 +The total amount of wall time = 324.749760 +The maximum resident set size (KB) = 1482376 -Test 036 control_p8_lndp PASS +Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_rrtmgp -Checking test 037 control_p8_rrtmgp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_rrtmgp +Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,15 +1833,15 @@ Checking test 037 control_p8_rrtmgp results .... 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.218193 -The maximum resident set size (KB) = 1545180 +The total amount of wall time = 234.183749 +The maximum resident set size (KB) = 1539732 -Test 037 control_p8_rrtmgp PASS +Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_mynn -Checking test 038 control_p8_mynn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_mynn +Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1869,15 +1887,15 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.393015 -The maximum resident set size (KB) = 1481864 +The total amount of wall time = 179.273121 +The maximum resident set size (KB) = 1480620 -Test 038 control_p8_mynn PASS +Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/merra2_thompson -Checking test 039 merra2_thompson results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/merra2_thompson +Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1923,15 +1941,15 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.669168 -The maximum resident set size (KB) = 1488632 +The total amount of wall time = 202.877962 +The maximum resident set size (KB) = 1492004 -Test 039 merra2_thompson PASS +Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control -Checking test 040 regional_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control +Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1941,29 +1959,29 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.412370 -The maximum resident set size (KB) = 651160 +The total amount of wall time = 286.966050 +The maximum resident set size (KB) = 652712 -Test 040 regional_control PASS +Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_restart +Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.036567 -The maximum resident set size (KB) = 648828 +The total amount of wall time = 153.659323 +The maximum resident set size (KB) = 648624 -Test 041 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_qr -Checking test 042 regional_control_qr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control_qr +Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1973,29 +1991,29 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.780784 -The maximum resident set size (KB) = 647092 +The total amount of wall time = 288.187873 +The maximum resident set size (KB) = 649640 -Test 042 regional_control_qr PASS +Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart_qr -Checking test 043 regional_restart_qr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_restart_qr +Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.881848 -The maximum resident set size (KB) = 647456 +The total amount of wall time = 158.270760 +The maximum resident set size (KB) = 648028 -Test 043 regional_restart_qr PASS +Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_decomp -Checking test 044 regional_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_decomp +Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2005,15 +2023,15 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.450971 -The maximum resident set size (KB) = 654968 +The total amount of wall time = 304.625717 +The maximum resident set size (KB) = 651556 -Test 044 regional_decomp PASS +Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2threads -Checking test 045 regional_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_2threads +Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2023,30 +2041,30 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.718814 -The maximum resident set size (KB) = 696160 +The total amount of wall time = 176.752243 +The maximum resident set size (KB) = 696880 -Test 045 regional_2threads PASS +Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_noquilt -Checking test 046 regional_noquilt results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_noquilt +Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.693332 -The maximum resident set size (KB) = 640660 +The total amount of wall time = 308.783888 +The maximum resident set size (KB) = 644044 -Test 046 regional_noquilt PASS +Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2dwrtdecomp -Checking test 047 regional_2dwrtdecomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_2dwrtdecomp +Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2056,15 +2074,15 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.539089 -The maximum resident set size (KB) = 650860 +The total amount of wall time = 287.392399 +The maximum resident set size (KB) = 653068 -Test 047 regional_2dwrtdecomp PASS +Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_wofs -Checking test 048 regional_wofs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_wofs +Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2074,15 +2092,15 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 361.432385 -The maximum resident set size (KB) = 340632 +The total amount of wall time = 365.704319 +The maximum resident set size (KB) = 338960 -Test 048 regional_wofs PASS +Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_control -Checking test 049 regional_ifi_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_control +Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2092,15 +2110,15 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 321.803922 -The maximum resident set size (KB) = 655388 +The total amount of wall time = 317.408957 +The maximum resident set size (KB) = 651740 -Test 049 regional_ifi_control PASS +Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_decomp -Checking test 050 regional_ifi_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_decomp +Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2110,15 +2128,15 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 335.468450 -The maximum resident set size (KB) = 652780 +The total amount of wall time = 332.072259 +The maximum resident set size (KB) = 655852 -Test 050 regional_ifi_decomp PASS +Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_2threads -Checking test 051 regional_ifi_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_2threads +Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2128,15 +2146,15 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 198.442606 -The maximum resident set size (KB) = 694520 +The total amount of wall time = 196.301940 +The maximum resident set size (KB) = 698424 -Test 051 regional_ifi_2threads PASS +Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control -Checking test 052 rap_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control +Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2182,15 +2200,15 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.048586 -The maximum resident set size (KB) = 893248 +The total amount of wall time = 419.306486 +The maximum resident set size (KB) = 889028 -Test 052 rap_control PASS +Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb -Checking test 053 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_spp_sppt_shum_skeb +Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2200,15 +2218,15 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.384099 -The maximum resident set size (KB) = 989380 +The total amount of wall time = 241.788012 +The maximum resident set size (KB) = 977936 -Test 053 regional_spp_sppt_shum_skeb PASS +Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_decomp -Checking test 054 rap_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_decomp +Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2254,15 +2272,15 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.829698 -The maximum resident set size (KB) = 890796 +The total amount of wall time = 432.484372 +The maximum resident set size (KB) = 890056 -Test 054 rap_decomp PASS +Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads -Checking test 055 rap_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_2threads +Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2308,15 +2326,15 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.603142 -The maximum resident set size (KB) = 965208 +The total amount of wall time = 387.586093 +The maximum resident set size (KB) = 966468 -Test 055 rap_2threads PASS +Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart -Checking test 056 rap_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_restart +Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2354,15 +2372,15 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.414988 -The maximum resident set size (KB) = 644560 +The total amount of wall time = 212.238369 +The maximum resident set size (KB) = 644096 -Test 056 rap_restart PASS +Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff -Checking test 057 rap_sfcdiff results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff +Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2408,15 +2426,15 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.444590 -The maximum resident set size (KB) = 889104 +The total amount of wall time = 420.611038 +The maximum resident set size (KB) = 890376 -Test 057 rap_sfcdiff PASS +Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_decomp -Checking test 058 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_decomp +Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2462,15 +2480,15 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.968936 -The maximum resident set size (KB) = 890376 +The total amount of wall time = 438.881814 +The maximum resident set size (KB) = 890716 -Test 058 rap_sfcdiff_decomp PASS +Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_restart -Checking test 059 rap_sfcdiff_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_restart +Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2508,15 +2526,15 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.051931 -The maximum resident set size (KB) = 642744 +The total amount of wall time = 310.123551 +The maximum resident set size (KB) = 640896 -Test 059 rap_sfcdiff_restart PASS +Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control -Checking test 060 hrrr_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control +Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2529,48 +2547,48 @@ Checking test 060 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 405.586453 -The maximum resident set size (KB) = 891236 - -Test 060 hrrr_control PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp -Checking test 061 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 390.106892 +The maximum resident set size (KB) = 884644 + +Test 061 hrrr_control PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_decomp +Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2583,48 +2601,48 @@ Checking test 061 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 419.341317 -The maximum resident set size (KB) = 888492 - -Test 061 hrrr_control_decomp PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads -Checking test 062 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 404.226075 +The maximum resident set size (KB) = 885404 + +Test 062 hrrr_control_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_2threads +Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2637,94 +2655,62 @@ Checking test 062 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 372.858619 -The maximum resident set size (KB) = 959816 - -Test 062 hrrr_control_2threads PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart -Checking test 063 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 350.207711 +The maximum resident set size (KB) = 954528 + +Test 063 hrrr_control_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_restart +Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.300262 -The maximum resident set size (KB) = 640660 +The total amount of wall time = 285.898651 +The maximum resident set size (KB) = 637304 -Test 063 hrrr_control_restart PASS +Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta -Checking test 064 rrfs_v1beta results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1beta +Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2770,15 +2756,15 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.513921 -The maximum resident set size (KB) = 887692 +The total amount of wall time = 417.404808 +The maximum resident set size (KB) = 885696 -Test 064 rrfs_v1beta PASS +Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl -Checking test 065 rrfs_v1nssl results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1nssl +Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2792,15 +2778,15 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 480.644688 -The maximum resident set size (KB) = 576232 +The total amount of wall time = 479.621658 +The maximum resident set size (KB) = 579844 -Test 065 rrfs_v1nssl PASS +Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl_nohailnoccn -Checking test 066 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1nssl_nohailnoccn +Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2814,15 +2800,15 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.967129 -The maximum resident set size (KB) = 567760 +The total amount of wall time = 469.530701 +The maximum resident set size (KB) = 571032 -Test 066 rrfs_v1nssl_nohailnoccn PASS +Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm -Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm +Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2830,15 +2816,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 146.010392 -The maximum resident set size (KB) = 800996 +The total amount of wall time = 143.957309 +The maximum resident set size (KB) = 796576 -Test 067 rrfs_smoke_conus13km_hrrr_warm PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2846,15 +2832,15 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 101.246999 -The maximum resident set size (KB) = 799884 +The total amount of wall time = 104.106063 +The maximum resident set size (KB) = 802808 -Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm -Checking test 069 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm +Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2862,15 +2848,15 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.510862 -The maximum resident set size (KB) = 778988 +The total amount of wall time = 130.540335 +The maximum resident set size (KB) = 790348 -Test 069 rrfs_conus13km_hrrr_warm PASS +Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_radar_tten_warm -Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_radar_tten_warm +Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2878,27 +2864,27 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 144.499730 -The maximum resident set size (KB) = 803228 +The total amount of wall time = 146.531610 +The maximum resident set size (KB) = 797540 -Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.164080 -The maximum resident set size (KB) = 758444 +The total amount of wall time = 68.509058 +The maximum resident set size (KB) = 768776 -Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg -Checking test 072 control_csawmg results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmg +Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2908,15 +2894,15 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.180026 -The maximum resident set size (KB) = 582100 +The total amount of wall time = 346.330929 +The maximum resident set size (KB) = 582456 -Test 072 control_csawmg PASS +Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt -Checking test 073 control_csawmgt results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmgt +Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2926,15 +2912,15 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.665613 -The maximum resident set size (KB) = 582968 +The total amount of wall time = 341.911782 +The maximum resident set size (KB) = 582172 -Test 073 control_csawmgt PASS +Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras -Checking test 074 control_ras results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_ras +Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2944,27 +2930,27 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.041377 -The maximum resident set size (KB) = 547612 +The total amount of wall time = 181.158071 +The maximum resident set size (KB) = 547152 -Test 074 control_ras PASS +Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam -Checking test 075 control_wam results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wam +Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.211320 -The maximum resident set size (KB) = 271684 +The total amount of wall time = 117.841629 +The maximum resident set size (KB) = 272352 -Test 075 control_wam PASS +Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_faster -Checking test 076 control_p8_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_faster +Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3010,15 +2996,15 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 173.332285 -The maximum resident set size (KB) = 1484804 +The total amount of wall time = 172.885917 +The maximum resident set size (KB) = 1482732 -Test 076 control_p8_faster PASS +Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_faster -Checking test 077 regional_control_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control_faster +Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3028,57 +3014,57 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.710705 -The maximum resident set size (KB) = 655256 +The total amount of wall time = 276.966803 +The maximum resident set size (KB) = 649328 -Test 077 regional_control_faster PASS +Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 914.958329 -The maximum resident set size (KB) = 823828 +The total amount of wall time = 898.773687 +The maximum resident set size (KB) = 827256 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 527.044834 -The maximum resident set size (KB) = 827536 +The total amount of wall time = 517.095439 +The maximum resident set size (KB) = 829636 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 807.833776 -The maximum resident set size (KB) = 805132 +The total amount of wall time = 807.998591 +The maximum resident set size (KB) = 826152 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3104,335 +3090,349 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.407891 -The maximum resident set size (KB) = 672244 +The total amount of wall time = 157.428852 +The maximum resident set size (KB) = 673832 -Test 081 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.045584 -The maximum resident set size (KB) = 673604 +The total amount of wall time = 156.907810 +The maximum resident set size (KB) = 678680 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_debug -Checking test 083 control_stochy_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy_debug +Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.498776 -The maximum resident set size (KB) = 680308 +The total amount of wall time = 176.423371 +The maximum resident set size (KB) = 679172 -Test 083 control_stochy_debug PASS +Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp_debug -Checking test 084 control_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_lndp_debug +Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.482226 -The maximum resident set size (KB) = 685060 +The total amount of wall time = 159.359116 +The maximum resident set size (KB) = 687076 -Test 084 control_lndp_debug PASS +Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.086397 -The maximum resident set size (KB) = 716044 +The total amount of wall time = 252.793712 +The maximum resident set size (KB) = 715632 -Test 085 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.234783 -The maximum resident set size (KB) = 718668 +The total amount of wall time = 250.510955 +The maximum resident set size (KB) = 718940 -Test 086 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras_debug -Checking test 087 control_ras_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_ras_debug +Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.181065 -The maximum resident set size (KB) = 687884 +The total amount of wall time = 160.005396 +The maximum resident set size (KB) = 688996 -Test 087 control_ras_debug PASS +Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_diag_debug -Checking test 088 control_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_diag_debug +Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.298793 -The maximum resident set size (KB) = 734668 +The total amount of wall time = 161.503499 +The maximum resident set size (KB) = 734364 -Test 088 control_diag_debug PASS +Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_debug_p8 -Checking test 089 control_debug_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_debug_p8 +Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.025616 -The maximum resident set size (KB) = 1502004 +The total amount of wall time = 184.336125 +The maximum resident set size (KB) = 1496300 -Test 089 control_debug_p8 PASS +Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_debug -Checking test 090 regional_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_debug +Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1044.948003 -The maximum resident set size (KB) = 673288 - -Test 090 regional_debug PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug -Checking test 091 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 300.436440 -The maximum resident set size (KB) = 1051488 +The total amount of wall time = 1039.669373 +The maximum resident set size (KB) = 676040 -Test 091 rap_control_debug PASS +Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_debug +Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.714908 -The maximum resident set size (KB) = 1049364 +The total amount of wall time = 295.044246 +The maximum resident set size (KB) = 1051288 -Test 092 hrrr_control_debug PASS +Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.164924 -The maximum resident set size (KB) = 1052696 +The total amount of wall time = 288.530139 +The maximum resident set size (KB) = 1044764 -Test 093 rap_unified_drag_suite_debug PASS +Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_diag_debug -Checking test 094 rap_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.319810 -The maximum resident set size (KB) = 1134268 +The total amount of wall time = 295.111154 +The maximum resident set size (KB) = 1053420 -Test 094 rap_diag_debug PASS +Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_diag_debug +Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.514229 -The maximum resident set size (KB) = 1051200 +The total amount of wall time = 305.298835 +The maximum resident set size (KB) = 1131004 -Test 095 rap_cires_ugwp_debug PASS +Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.920430 -The maximum resident set size (KB) = 1051016 +The total amount of wall time = 300.930620 +The maximum resident set size (KB) = 1050688 -Test 096 rap_unified_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.552875 -The maximum resident set size (KB) = 1050516 +The total amount of wall time = 302.975966 +The maximum resident set size (KB) = 1052692 -Test 097 rap_lndp_debug PASS +Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_flake_debug -Checking test 098 rap_flake_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.098938 -The maximum resident set size (KB) = 1052628 +The total amount of wall time = 298.119052 +The maximum resident set size (KB) = 1047880 -Test 098 rap_flake_debug PASS +Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.247219 -The maximum resident set size (KB) = 1048592 +The total amount of wall time = 295.505475 +The maximum resident set size (KB) = 1052332 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.100562 -The maximum resident set size (KB) = 1046260 +The total amount of wall time = 289.453663 +The maximum resident set size (KB) = 1052164 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.368443 -The maximum resident set size (KB) = 1050976 +The total amount of wall time = 295.922589 +The maximum resident set size (KB) = 1053244 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.159756 -The maximum resident set size (KB) = 1052528 +The total amount of wall time = 484.283430 +The maximum resident set size (KB) = 1049332 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.284380 -The maximum resident set size (KB) = 1046112 +The total amount of wall time = 291.339331 +The maximum resident set size (KB) = 1047748 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam_debug -Checking test 104 control_wam_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_clm_lake_debug +Checking test 104 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 352.745001 +The maximum resident set size (KB) = 1051968 + +Test 104 rap_clm_lake_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_flake_debug +Checking test 105 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 295.869833 +The maximum resident set size (KB) = 1050468 + +Test 105 rap_flake_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wam_debug +Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.277054 -The maximum resident set size (KB) = 299056 +The total amount of wall time = 293.001947 +The maximum resident set size (KB) = 301660 -Test 104 control_wam_debug PASS +Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3442,15 +3442,15 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.757094 -The maximum resident set size (KB) = 878708 +The total amount of wall time = 231.387745 +The maximum resident set size (KB) = 893092 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn32_phy32 -Checking test 106 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn32_phy32 +Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3496,15 +3496,15 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 352.043171 -The maximum resident set size (KB) = 772360 +The total amount of wall time = 352.014813 +The maximum resident set size (KB) = 774556 -Test 106 rap_control_dyn32_phy32 PASS +Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_dyn32_phy32 -Checking test 107 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_dyn32_phy32 +Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3517,48 +3517,48 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 186.963977 -The maximum resident set size (KB) = 774084 - -Test 107 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads_dyn32_phy32 -Checking test 108 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 178.345427 +The maximum resident set size (KB) = 774948 + +Test 109 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_2threads_dyn32_phy32 +Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3604,15 +3604,15 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.576386 -The maximum resident set size (KB) = 828660 +The total amount of wall time = 328.593921 +The maximum resident set size (KB) = 828668 -Test 108 rap_2threads_dyn32_phy32 PASS +Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads_dyn32_phy32 -Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_2threads_dyn32_phy32 +Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3625,48 +3625,48 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 171.878221 -The maximum resident set size (KB) = 826784 - -Test 109 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp_dyn32_phy32 -Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 161.145695 +The maximum resident set size (KB) = 821972 + +Test 111 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_decomp_dyn32_phy32 +Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3679,48 +3679,48 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 194.008348 -The maximum resident set size (KB) = 771816 - -Test 110 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart_dyn32_phy32 -Checking test 111 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 186.871536 +The maximum resident set size (KB) = 775740 + +Test 112 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_restart_dyn32_phy32 +Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3758,61 +3758,29 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.683723 -The maximum resident set size (KB) = 613972 +The total amount of wall time = 257.699055 +The maximum resident set size (KB) = 610188 -Test 111 rap_restart_dyn32_phy32 PASS +Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart_dyn32_phy32 -Checking test 112 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_restart_dyn32_phy32 +Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 96.413932 -The maximum resident set size (KB) = 604336 +The total amount of wall time = 93.053785 +The maximum resident set size (KB) = 606640 -Test 112 hrrr_control_restart_dyn32_phy32 PASS +Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32 -Checking test 113 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn64_phy32 +Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3858,82 +3826,82 @@ Checking test 113 rap_control_dyn64_phy32 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 = 235.180562 -The maximum resident set size (KB) = 793688 +The total amount of wall time = 233.962423 +The maximum resident set size (KB) = 792368 -Test 113 rap_control_dyn64_phy32 PASS +Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug_dyn32_phy32 -Checking test 114 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_debug_dyn32_phy32 +Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.441295 -The maximum resident set size (KB) = 935524 +The total amount of wall time = 289.606467 +The maximum resident set size (KB) = 930800 -Test 114 rap_control_debug_dyn32_phy32 PASS +Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_debug_dyn32_phy32 +Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.792674 -The maximum resident set size (KB) = 938172 +The total amount of wall time = 283.080337 +The maximum resident set size (KB) = 931004 -Test 115 hrrr_control_debug_dyn32_phy32 PASS +Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32_debug -Checking test 116 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn64_phy32_debug +Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.082353 -The maximum resident set size (KB) = 953204 +The total amount of wall time = 290.912371 +The maximum resident set size (KB) = 952872 -Test 116 rap_control_dyn64_phy32_debug PASS +Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm -Checking test 117 hafs_regional_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm +Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.115105 -The maximum resident set size (KB) = 825684 +The total amount of wall time = 271.131951 +The maximum resident set size (KB) = 818776 -Test 117 hafs_regional_atm PASS +Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_thompson_gfdlsf +Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 313.085230 -The maximum resident set size (KB) = 1175724 +The total amount of wall time = 312.502017 +The maximum resident set size (KB) = 1175900 -Test 118 hafs_regional_atm_thompson_gfdlsf PASS +Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_ocn +Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3941,15 +3909,15 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.693127 -The maximum resident set size (KB) = 858284 +The total amount of wall time = 387.807990 +The maximum resident set size (KB) = 857720 -Test 119 hafs_regional_atm_ocn PASS +Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_wav +Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -3957,15 +3925,15 @@ Checking test 120 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 701.529293 -The maximum resident set size (KB) = 883988 +The total amount of wall time = 707.475831 +The maximum resident set size (KB) = 888400 -Test 120 hafs_regional_atm_wav PASS +Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3975,29 +3943,29 @@ Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 904.871763 -The maximum resident set size (KB) = 914000 +The total amount of wall time = 894.137436 +The maximum resident set size (KB) = 910144 -Test 121 hafs_regional_atm_ocn_wav PASS +Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_1nest_atm -Checking test 122 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_1nest_atm +Checking test 124 hafs_regional_1nest_atm 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 = 333.029548 -The maximum resident set size (KB) = 392492 +The total amount of wall time = 335.647488 +The maximum resident set size (KB) = 395032 -Test 122 hafs_regional_1nest_atm PASS +Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_telescopic_2nests_atm -Checking test 123 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_telescopic_2nests_atm +Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4005,29 +3973,29 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.887674 -The maximum resident set size (KB) = 400760 +The total amount of wall time = 405.381878 +The maximum resident set size (KB) = 401444 -Test 123 hafs_regional_telescopic_2nests_atm PASS +Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_1nest_atm -Checking test 124 hafs_global_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_1nest_atm +Checking test 126 hafs_global_1nest_atm 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 = 171.342424 -The maximum resident set size (KB) = 268960 +The total amount of wall time = 172.021684 +The maximum resident set size (KB) = 260832 -Test 124 hafs_global_1nest_atm PASS +Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_multiple_4nests_atm -Checking test 125 hafs_global_multiple_4nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_multiple_4nests_atm +Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4044,15 +4012,15 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.328657 -The maximum resident set size (KB) = 344904 +The total amount of wall time = 492.537257 +The maximum resident set size (KB) = 346392 -Test 125 hafs_global_multiple_4nests_atm PASS +Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_specified_moving_1nest_atm -Checking test 126 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_specified_moving_1nest_atm +Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4060,29 +4028,29 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.769907 -The maximum resident set size (KB) = 405108 +The total amount of wall time = 217.972996 +The maximum resident set size (KB) = 403008 -Test 126 hafs_regional_specified_moving_1nest_atm PASS +Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm -Checking test 127 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm +Checking test 129 hafs_regional_storm_following_1nest_atm 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 = 206.435489 -The maximum resident set size (KB) = 406156 +The total amount of wall time = 206.918285 +The maximum resident set size (KB) = 403260 -Test 127 hafs_regional_storm_following_1nest_atm PASS +Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4090,43 +4058,43 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 252.757236 -The maximum resident set size (KB) = 469328 +The total amount of wall time = 252.375631 +The maximum resident set size (KB) = 466172 -Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_storm_following_1nest_atm -Checking test 129 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_storm_following_1nest_atm +Checking test 131 hafs_global_storm_following_1nest_atm 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.877538 -The maximum resident set size (KB) = 277536 +The total amount of wall time = 84.842896 +The maximum resident set size (KB) = 277996 -Test 129 hafs_global_storm_following_1nest_atm PASS +Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 804.051280 -The maximum resident set size (KB) = 488372 +The total amount of wall time = 809.358704 +The maximum resident set size (KB) = 487016 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4136,162 +4104,162 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 501.620933 -The maximum resident set size (KB) = 522196 +The total amount of wall time = 502.807302 +The maximum resident set size (KB) = 517888 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn -Checking test 132 hafs_regional_docn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_docn +Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.600146 -The maximum resident set size (KB) = 861524 +The total amount of wall time = 367.059310 +The maximum resident set size (KB) = 862016 -Test 132 hafs_regional_docn PASS +Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn_oisst -Checking test 133 hafs_regional_docn_oisst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_docn_oisst +Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.860078 -The maximum resident set size (KB) = 847960 +The total amount of wall time = 371.148902 +The maximum resident set size (KB) = 849032 -Test 133 hafs_regional_docn_oisst PASS +Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_datm_cdeps -Checking test 134 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_datm_cdeps +Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 947.106246 -The maximum resident set size (KB) = 833556 +The total amount of wall time = 942.119798 +The maximum resident set size (KB) = 833000 -Test 134 hafs_regional_datm_cdeps PASS +Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr -Checking test 135 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_cfsr +Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.666616 -The maximum resident set size (KB) = 732108 +The total amount of wall time = 140.744837 +The maximum resident set size (KB) = 732924 -Test 135 datm_cdeps_control_cfsr PASS +Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_restart_cfsr -Checking test 136 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_restart_cfsr +Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.019297 -The maximum resident set size (KB) = 728436 +The total amount of wall time = 85.758098 +The maximum resident set size (KB) = 728424 -Test 136 datm_cdeps_restart_cfsr PASS +Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_gefs -Checking test 137 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_gefs +Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.766182 -The maximum resident set size (KB) = 612892 +The total amount of wall time = 132.665571 +The maximum resident set size (KB) = 613748 -Test 137 datm_cdeps_control_gefs PASS +Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_iau_gefs -Checking test 138 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_iau_gefs +Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.660432 -The maximum resident set size (KB) = 611276 +The total amount of wall time = 135.610741 +The maximum resident set size (KB) = 613776 -Test 138 datm_cdeps_iau_gefs PASS +Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_stochy_gefs -Checking test 139 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_stochy_gefs +Checking test 141 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.805751 -The maximum resident set size (KB) = 615576 +The total amount of wall time = 137.605773 +The maximum resident set size (KB) = 612372 -Test 139 datm_cdeps_stochy_gefs PASS +Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_ciceC_cfsr -Checking test 140 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_ciceC_cfsr +Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.957978 -The maximum resident set size (KB) = 733384 +The total amount of wall time = 140.783842 +The maximum resident set size (KB) = 733972 -Test 140 datm_cdeps_ciceC_cfsr PASS +Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_cfsr -Checking test 141 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_bulk_cfsr +Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.875323 -The maximum resident set size (KB) = 732476 +The total amount of wall time = 140.738749 +The maximum resident set size (KB) = 723820 -Test 141 datm_cdeps_bulk_cfsr PASS +Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_gefs -Checking test 142 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_bulk_gefs +Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.955777 -The maximum resident set size (KB) = 620428 +The total amount of wall time = 133.743134 +The maximum resident set size (KB) = 616560 -Test 142 datm_cdeps_bulk_gefs PASS +Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_cfsr -Checking test 143 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_mx025_cfsr +Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4299,15 +4267,15 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.530056 -The maximum resident set size (KB) = 570824 +The total amount of wall time = 426.950148 +The maximum resident set size (KB) = 570208 -Test 143 datm_cdeps_mx025_cfsr PASS +Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_gefs -Checking test 144 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_mx025_gefs +Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4315,65 +4283,65 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 426.819736 -The maximum resident set size (KB) = 553144 +The total amount of wall time = 428.380634 +The maximum resident set size (KB) = 547092 -Test 144 datm_cdeps_mx025_gefs PASS +Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_multiple_files_cfsr -Checking test 145 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_multiple_files_cfsr +Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.881794 -The maximum resident set size (KB) = 734144 +The total amount of wall time = 140.054176 +The maximum resident set size (KB) = 732480 -Test 145 datm_cdeps_multiple_files_cfsr PASS +Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_3072x1536_cfsr -Checking test 146 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_3072x1536_cfsr +Checking test 148 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 256.993785 -The maximum resident set size (KB) = 1981204 +The total amount of wall time = 255.988311 +The maximum resident set size (KB) = 1980344 -Test 146 datm_cdeps_3072x1536_cfsr PASS +Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_gfs -Checking test 147 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_gfs +Checking test 149 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 256.582588 -The maximum resident set size (KB) = 1979332 +The total amount of wall time = 256.805003 +The maximum resident set size (KB) = 1981228 -Test 147 datm_cdeps_gfs PASS +Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr_faster -Checking test 148 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_cfsr_faster +Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.095571 -The maximum resident set size (KB) = 731608 +The total amount of wall time = 140.595927 +The maximum resident set size (KB) = 723600 -Test 148 datm_cdeps_control_cfsr_faster PASS +Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3 -Checking test 149 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_lnd_gswp3 +Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4381,15 +4349,15 @@ Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.096349 -The maximum resident set size (KB) = 227292 +The total amount of wall time = 22.288985 +The maximum resident set size (KB) = 225776 -Test 149 datm_cdeps_lnd_gswp3 PASS +Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3_rst -Checking test 150 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_lnd_gswp3_rst +Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4397,15 +4365,15 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 26.982569 -The maximum resident set size (KB) = 229492 +The total amount of wall time = 27.563774 +The maximum resident set size (KB) = 232556 -Test 150 datm_cdeps_lnd_gswp3_rst PASS +Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_atmlnd_sbs -Checking test 151 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_atmlnd_sbs +Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4489,15 +4457,15 @@ Checking test 151 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 236.289314 -The maximum resident set size (KB) = 1536408 +The total amount of wall time = 234.701639 +The maximum resident set size (KB) = 1542144 -Test 151 control_p8_atmlnd_sbs PASS +Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmwav_control_noaero_p8 -Checking test 152 atmwav_control_noaero_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmwav_control_noaero_p8 +Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4539,15 +4507,15 @@ Checking test 152 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 110.290917 -The maximum resident set size (KB) = 1530272 +The total amount of wall time = 107.050699 +The maximum resident set size (KB) = 1528808 -Test 152 atmwav_control_noaero_p8 PASS +Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_atmwav -Checking test 153 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_atmwav +Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4590,15 +4558,15 @@ Checking test 153 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 92.120639 -The maximum resident set size (KB) = 541620 +The total amount of wall time = 90.784628 +The maximum resident set size (KB) = 544164 -Test 153 control_atmwav PASS +Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8 -Checking test 154 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8 +Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4641,15 +4609,15 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.632715 -The maximum resident set size (KB) = 2812396 +The total amount of wall time = 243.583357 +The maximum resident set size (KB) = 2815320 -Test 154 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad -Checking test 155 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4692,15 +4660,15 @@ Checking test 155 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 282.829081 -The maximum resident set size (KB) = 2878356 +The total amount of wall time = 282.632257 +The maximum resident set size (KB) = 2876660 -Test 155 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad_micro -Checking test 156 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4743,15 +4711,15 @@ Checking test 156 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.878626 -The maximum resident set size (KB) = 2885196 +The total amount of wall time = 287.932948 +The maximum resident set size (KB) = 2886296 -Test 156 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq -Checking test 157 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq +Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,15 +4734,15 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 682.977333 -The maximum resident set size (KB) = 1257296 +The total amount of wall time = 681.071942 +The maximum resident set size (KB) = 1253668 -Test 157 regional_atmaq PASS +Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_debug -Checking test 158 regional_atmaq_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq_debug +Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4787,15 +4755,15 @@ Checking test 158 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1307.193464 -The maximum resident set size (KB) = 1291952 +The total amount of wall time = 1305.593756 +The maximum resident set size (KB) = 1288544 -Test 158 regional_atmaq_debug PASS +Test 160 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_faster -Checking test 159 regional_atmaq_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq_faster +Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4810,12 +4778,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 632.615419 -The maximum resident set size (KB) = 1255852 +The total amount of wall time = 641.423207 +The maximum resident set size (KB) = 1248804 -Test 159 regional_atmaq_faster PASS +Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 19:55:36 UTC 2023 -Elapsed time: 01h:30m:13s. Have a nice day! +Tue Apr 25 03:06:56 UTC 2023 +Elapsed time: 01h:31m:56s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 6a0f0580cc..8cf097e0da 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri Apr 21 11:14:13 MDT 2023 +Tue Apr 25 09:28:02 MDT 2023 Start Regression test -Compile 001 elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 400 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 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 868 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1112 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 863 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 868 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_c48 +Compile 003 elapsed time 895 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1141 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 900 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 903 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 648 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.092534 -0:The maximum resident set size (KB) = 679748 +0:The total amount of wall time = 821.223042 +0:The maximum resident set size (KB) = 680340 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.243191 -0:The maximum resident set size (KB) = 443848 +0:The total amount of wall time = 178.475006 +0:The maximum resident set size (KB) = 443712 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 295.479192 -0:The maximum resident set size (KB) = 452736 +0:The total amount of wall time = 296.635178 +0:The maximum resident set size (KB) = 452768 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,15 +144,33 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.005003 -0:The maximum resident set size (KB) = 1226792 +0:The total amount of wall time = 311.342686 +0:The maximum resident set size (KB) = 1225320 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control -Checking test 005 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_flake +Checking test 005 control_flake results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........NOT OK + Comparing GFSFLX.GrbF24 .........NOT OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF24 .........NOT OK + +0:The total amount of wall time = 358.216644 +0:The maximum resident set size (KB) = 490488 + +Test 005 control_flake FAIL Tries: 2 + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control +Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -198,15 +216,15 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.233417 -0:The maximum resident set size (KB) = 792492 +0:The total amount of wall time = 715.738660 +0:The maximum resident set size (KB) = 792404 -Test 005 rap_control PASS +Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_decomp -Checking test 006 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_decomp +Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -252,15 +270,15 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.043888 -0:The maximum resident set size (KB) = 791908 +0:The total amount of wall time = 717.271854 +0:The maximum resident set size (KB) = 791724 -Test 006 rap_decomp PASS +Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads -Checking test 007 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_2threads +Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -306,15 +324,15 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 662.309640 -0:The maximum resident set size (KB) = 866600 +0:The total amount of wall time = 654.809101 +0:The maximum resident set size (KB) = 866068 -Test 007 rap_2threads PASS +Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart -Checking test 008 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_restart +Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -352,15 +370,15 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.198531 -0:The maximum resident set size (KB) = 539240 +0:The total amount of wall time = 355.564379 +0:The maximum resident set size (KB) = 539380 -Test 008 rap_restart PASS +Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff +Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -406,15 +424,15 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.151679 -0:The maximum resident set size (KB) = 792264 +0:The total amount of wall time = 714.598937 +0:The maximum resident set size (KB) = 791844 -Test 009 rap_sfcdiff PASS +Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff_decomp +Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -460,15 +478,15 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 727.586043 -0:The maximum resident set size (KB) = 791596 +0:The total amount of wall time = 725.825589 +0:The maximum resident set size (KB) = 791532 -Test 010 rap_sfcdiff_decomp PASS +Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff_restart +Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -506,15 +524,15 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 530.907873 -0:The maximum resident set size (KB) = 545684 +0:The total amount of wall time = 527.180584 +0:The maximum resident set size (KB) = 544448 -Test 011 rap_sfcdiff_restart PASS +Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control -Checking test 012 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control +Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -527,48 +545,48 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 692.983137 -0:The maximum resident set size (KB) = 789436 - -Test 012 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 686.636349 +0:The maximum resident set size (KB) = 789196 + +Test 013 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_2threads +Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -581,48 +599,48 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 624.735590 -0:The maximum resident set size (KB) = 860296 - -Test 013 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 709.930656 +0:The maximum resident set size (KB) = 855972 + +Test 014 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_decomp +Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -635,94 +653,62 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 693.018683 -0:The maximum resident set size (KB) = 789768 - -Test 014 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 684.619393 +0:The maximum resident set size (KB) = 788572 + +Test 015 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_restart +Checking test 016 hrrr_control_restart 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 -0:The total amount of wall time = 512.158958 -0:The maximum resident set size (KB) = 540528 +0:The total amount of wall time = 507.374280 +0:The maximum resident set size (KB) = 539804 -Test 015 hrrr_control_restart PASS +Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_v1beta +Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -768,15 +754,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.611951 -0:The maximum resident set size (KB) = 789268 +0:The total amount of wall time = 707.089396 +0:The maximum resident set size (KB) = 789656 -Test 016 rrfs_v1beta PASS +Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm -Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +770,15 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.174520 -0:The maximum resident set size (KB) = 636528 +0:The total amount of wall time = 234.040580 +0:The maximum resident set size (KB) = 639548 -Test 017 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +786,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 146.345291 -0:The maximum resident set size (KB) = 655004 +0:The total amount of wall time = 146.867956 +0:The maximum resident set size (KB) = 658632 -Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm -Checking test 019 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm +Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +802,15 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.502976 -0:The maximum resident set size (KB) = 615824 +0:The total amount of wall time = 212.626743 +0:The maximum resident set size (KB) = 618564 -Test 019 rrfs_conus13km_hrrr_warm PASS +Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_radar_tten_warm -Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_radar_tten_warm +Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,235 +818,263 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.774128 -0:The maximum resident set size (KB) = 639292 +0:The total amount of wall time = 231.910875 +0:The maximum resident set size (KB) = 642248 -Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 110.782794 -0:The maximum resident set size (KB) = 596436 +0:The total amount of wall time = 111.802692 +0:The maximum resident set size (KB) = 599640 -Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_diag_debug -Checking test 022 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_diag_debug +Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.945457 -0:The maximum resident set size (KB) = 491476 +0:The total amount of wall time = 82.335787 +0:The maximum resident set size (KB) = 492248 -Test 022 control_diag_debug PASS +Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/regional_debug -Checking test 023 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/regional_debug +Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 483.827196 -0:The maximum resident set size (KB) = 567124 +0:The total amount of wall time = 477.611827 +0:The maximum resident set size (KB) = 567596 -Test 023 regional_debug PASS +Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug -Checking test 024 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_debug +Checking test 025 rap_control_debug 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.918625 -0:The maximum resident set size (KB) = 805616 +0:The total amount of wall time = 145.333649 +0:The maximum resident set size (KB) = 806280 -Test 024 rap_control_debug PASS +Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug -Checking test 025 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_debug +Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.367559 -0:The maximum resident set size (KB) = 802076 +0:The total amount of wall time = 142.656386 +0:The maximum resident set size (KB) = 801812 -Test 025 hrrr_control_debug PASS +Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_diag_debug -Checking test 026 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_diag_debug +Checking test 027 rap_diag_debug 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.105330 -0:The maximum resident set size (KB) = 888316 +0:The total amount of wall time = 152.308834 +0:The maximum resident set size (KB) = 888396 -Test 026 rap_diag_debug PASS +Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 237.365950 -0:The maximum resident set size (KB) = 804068 +0:The total amount of wall time = 235.155081 +0:The maximum resident set size (KB) = 804660 -Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_progcld_thompson_debug -Checking test 028 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_progcld_thompson_debug +Checking test 029 rap_progcld_thompson_debug 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.876353 -0:The maximum resident set size (KB) = 805352 +0:The total amount of wall time = 145.316687 +0:The maximum resident set size (KB) = 806460 -Test 028 rap_progcld_thompson_debug PASS +Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta_debug -Checking test 029 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_v1beta_debug +Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.482124 -0:The maximum resident set size (KB) = 801304 +0:The total amount of wall time = 144.992259 +0:The maximum resident set size (KB) = 801456 -Test 029 rrfs_v1beta_debug PASS +Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras_debug -Checking test 030 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_ras_debug +Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.573920 -0:The maximum resident set size (KB) = 446656 +0:The total amount of wall time = 81.317173 +0:The maximum resident set size (KB) = 446480 -Test 030 control_ras_debug PASS +Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy_debug -Checking test 031 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.961958 -0:The maximum resident set size (KB) = 438112 +0:The total amount of wall time = 88.672079 +0:The maximum resident set size (KB) = 439104 -Test 031 control_stochy_debug PASS +Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_debug_p8 -Checking test 032 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.862405 -0:The maximum resident set size (KB) = 1221280 +0:The total amount of wall time = 90.781517 +0:The maximum resident set size (KB) = 1223544 -Test 032 control_debug_p8 PASS +Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 440.514734 -0:The maximum resident set size (KB) = 641444 +0:The total amount of wall time = 438.337660 +0:The maximum resident set size (KB) = 645168 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 258.466829 -0:The maximum resident set size (KB) = 665592 +0:The total amount of wall time = 259.779408 +0:The maximum resident set size (KB) = 669872 -Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_debug -Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm_debug +Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 400.157967 -0:The maximum resident set size (KB) = 619848 +0:The total amount of wall time = 396.828254 +0:The maximum resident set size (KB) = 623964 -Test 035 rrfs_conus13km_hrrr_warm_debug PASS +Test 036 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_flake_debug +Checking test 037 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 145.651202 +0:The maximum resident set size (KB) = 806384 + +Test 037 rap_flake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_clm_lake_debug +Checking test 038 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK +0:The total amount of wall time = 164.560342 +0:The maximum resident set size (KB) = 808004 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_wam_debug -Checking test 036 control_wam_debug results .... +Test 038 rap_clm_lake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_wam_debug +Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.125540 -0:The maximum resident set size (KB) = 183548 +0:The total amount of wall time = 140.457916 +0:The maximum resident set size (KB) = 182852 -Test 036 control_wam_debug PASS +Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn32_phy32 -Checking test 037 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn32_phy32 +Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1106,15 +1120,15 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.789376 -0:The maximum resident set size (KB) = 673768 +0:The total amount of wall time = 704.103266 +0:The maximum resident set size (KB) = 672584 -Test 037 rap_control_dyn32_phy32 PASS +Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_dyn32_phy32 -Checking test 038 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_dyn32_phy32 +Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1127,48 +1141,48 @@ Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 355.350362 -0:The maximum resident set size (KB) = 671136 - -Test 038 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads_dyn32_phy32 -Checking test 039 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 354.097209 +0:The maximum resident set size (KB) = 671196 + +Test 041 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_2threads_dyn32_phy32 +Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,15 +1228,15 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 645.572568 -0:The maximum resident set size (KB) = 720236 +0:The total amount of wall time = 646.051970 +0:The maximum resident set size (KB) = 720680 -Test 039 rap_2threads_dyn32_phy32 PASS +Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads_dyn32_phy32 -Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_2threads_dyn32_phy32 +Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1235,48 +1249,48 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 322.783525 -0:The maximum resident set size (KB) = 717272 - -Test 040 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp_dyn32_phy32 -Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 402.237329 +0:The maximum resident set size (KB) = 711840 + +Test 043 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_decomp_dyn32_phy32 +Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1289,48 +1303,48 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 356.104222 -0:The maximum resident set size (KB) = 670224 - -Test 041 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart_dyn32_phy32 -Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 351.532691 +0:The maximum resident set size (KB) = 670092 + +Test 044 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_restart_dyn32_phy32 +Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1368,61 +1382,29 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 522.334314 -0:The maximum resident set size (KB) = 512064 +0:The total amount of wall time = 520.605488 +0:The maximum resident set size (KB) = 511860 -Test 042 rap_restart_dyn32_phy32 PASS +Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart_dyn32_phy32 -Checking test 043 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_restart_dyn32_phy32 +Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 180.613272 -0:The maximum resident set size (KB) = 507152 +0:The total amount of wall time = 178.086046 +0:The maximum resident set size (KB) = 506076 -Test 043 hrrr_control_restart_dyn32_phy32 PASS +Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32 -Checking test 044 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn64_phy32 +Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1468,57 +1450,57 @@ Checking test 044 rap_control_dyn64_phy32 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 = 406.288061 -0:The maximum resident set size (KB) = 693588 +0:The total amount of wall time = 406.944035 +0:The maximum resident set size (KB) = 693900 -Test 044 rap_control_dyn64_phy32 PASS +Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug_dyn32_phy32 -Checking test 045 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_debug_dyn32_phy32 +Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.064213 -0:The maximum resident set size (KB) = 687732 +0:The total amount of wall time = 143.871322 +0:The maximum resident set size (KB) = 687060 -Test 045 rap_control_debug_dyn32_phy32 PASS +Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug_dyn32_phy32 -Checking test 046 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 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.497782 -0:The maximum resident set size (KB) = 683920 +0:The total amount of wall time = 140.286344 +0:The maximum resident set size (KB) = 684392 -Test 046 hrrr_control_debug_dyn32_phy32 PASS +Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32_debug -Checking test 047 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn64_phy32_debug +Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.771584 -0:The maximum resident set size (KB) = 707604 +0:The total amount of wall time = 148.716276 +0:The maximum resident set size (KB) = 708252 -Test 047 rap_control_dyn64_phy32_debug PASS +Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1582,15 +1564,15 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.863330 -0:The maximum resident set size (KB) = 3158608 +0:The total amount of wall time = 493.149174 +0:The maximum resident set size (KB) = 3158640 -Test 048 cpld_control_p8 PASS +Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_nowave_noaero_p8 -Checking test 049 cpld_control_nowave_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_control_nowave_noaero_p8 +Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1651,15 +1633,15 @@ Checking test 049 cpld_control_nowave_noaero_p8 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 = 251.132624 -0:The maximum resident set size (KB) = 1240572 +0:The total amount of wall time = 248.685388 +0:The maximum resident set size (KB) = 1241160 -Test 049 cpld_control_nowave_noaero_p8 PASS +Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_debug_p8 -Checking test 050 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_debug_p8 +Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1711,25 +1693,54 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 201.087755 -0:The maximum resident set size (KB) = 3172904 +0:The total amount of wall time = 197.906466 +0:The maximum resident set size (KB) = 3175780 -Test 050 cpld_debug_p8 PASS +Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/datm_cdeps_control_cfsr -Checking test 051 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/datm_cdeps_control_cfsr +Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.972822 -0:The maximum resident set size (KB) = 673660 +0:The total amount of wall time = 179.628570 +0:The maximum resident set size (KB) = 677408 + +Test 054 datm_cdeps_control_cfsr PASS + +FAILED TESTS: +Test control_flake 005 failed in check_result failed +Test control_flake 005 failed in run_test failed + +REGRESSION TEST FAILED +Tue Apr 25 10:17:24 MDT 2023 +Elapsed time: 00h:49m:23s. Have a nice day! +Tue Apr 25 11:15:27 MDT 2023 +Start Regression test + +Compile 001 elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /glade/scratch/zshrader/FV3_RT/rt_55899/control_flake +Checking test 001 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 325.583330 +0:The maximum resident set size (KB) = 472880 -Test 051 datm_cdeps_control_cfsr PASS +Test 001 control_flake PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 11:49:28 MDT 2023 -Elapsed time: 00h:35m:16s. Have a nice day! +Tue Apr 25 11:29:49 MDT 2023 +Elapsed time: 00h:14m:22s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 7b27868dd6..be6ab9d4c4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,43 +1,43 @@ -Fri Apr 21 13:23:30 MDT 2023 +Tue Apr 25 09:05:52 MDT 2023 Start Regression test -Compile 001 elapsed time 1474 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1390 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 455 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1071 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1804 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 969 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 011 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 397 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1114 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 021 elapsed time 340 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1105 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 024 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 429 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 989 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1015 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 288 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1020 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8_mixedmode +Compile 001 elapsed time 1574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1502 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 460 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 397 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1150 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1137 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1507 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 884 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 437 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1226 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 021 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1639 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1196 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 191 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 424 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1029 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1074 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1093 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 979 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 940 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 305 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.519956 -0:The maximum resident set size (KB) = 2698440 +0:The total amount of wall time = 319.142246 +0:The maximum resident set size (KB) = 2699076 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.118296 -0:The maximum resident set size (KB) = 1437688 +0:The total amount of wall time = 282.091307 +0:The maximum resident set size (KB) = 1437752 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.808786 -0:The maximum resident set size (KB) = 2715196 +0:The total amount of wall time = 322.872873 +0:The maximum resident set size (KB) = 2715328 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.085532 -0:The maximum resident set size (KB) = 2576488 +0:The total amount of wall time = 179.073898 +0:The maximum resident set size (KB) = 2576904 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.882650 -0:The maximum resident set size (KB) = 2719364 +0:The total amount of wall time = 326.391025 +0:The maximum resident set size (KB) = 2719892 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 200.080221 -0:The maximum resident set size (KB) = 2593640 +0:The total amount of wall time = 193.005260 +0:The maximum resident set size (KB) = 2593124 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 250.324959 -0:The maximum resident set size (KB) = 3178164 +0:The total amount of wall time = 250.366377 +0:The maximum resident set size (KB) = 3177784 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.796032 -0:The maximum resident set size (KB) = 2720236 +0:The total amount of wall time = 320.186557 +0:The maximum resident set size (KB) = 2720480 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.563096 -0:The maximum resident set size (KB) = 2680208 +0:The total amount of wall time = 268.096945 +0:The maximum resident set size (KB) = 2681604 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.504974 -0:The maximum resident set size (KB) = 2715312 +0:The total amount of wall time = 311.391171 +0:The maximum resident set size (KB) = 2715320 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 635.473410 -0:The maximum resident set size (KB) = 3351932 +0:The total amount of wall time = 627.702178 +0:The maximum resident set size (KB) = 3352088 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 386.942961 -0:The maximum resident set size (KB) = 3276112 +0:The total amount of wall time = 382.339707 +0:The maximum resident set size (KB) = 3276816 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 287.924072 -0:The maximum resident set size (KB) = 1435696 +0:The total amount of wall time = 294.515743 +0:The maximum resident set size (KB) = 1436000 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 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 = 198.067762 -0:The maximum resident set size (KB) = 1453008 +0:The total amount of wall time = 189.305163 +0:The maximum resident set size (KB) = 1453540 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.436859 -0:The maximum resident set size (KB) = 2778756 +0:The total amount of wall time = 354.497090 +0:The maximum resident set size (KB) = 2780228 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1068,14 +1068,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 301.265299 -0:The maximum resident set size (KB) = 1454024 +0:The total amount of wall time = 301.086565 +0:The maximum resident set size (KB) = 1454132 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1137,14 @@ Checking test 017 cpld_control_noaero_p8_agrid 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 = 251.765652 -0:The maximum resident set size (KB) = 1456912 +0:The total amount of wall time = 252.488962 +0:The maximum resident set size (KB) = 1457092 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 018 cpld_control_c48 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 = 601.613846 -0:The maximum resident set size (KB) = 2586480 +0:The total amount of wall time = 605.315782 +0:The maximum resident set size (KB) = 2587140 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1251,14 +1251,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 163.439060 -0:The maximum resident set size (KB) = 2601536 +0:The total amount of wall time = 161.737542 +0:The maximum resident set size (KB) = 2602592 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1308,15 +1308,33 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.281952 -0:The maximum resident set size (KB) = 2019616 +0:The total amount of wall time = 84.844466 +0:The maximum resident set size (KB) = 2020340 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_flake +Checking test 021 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 221.017367 +0:The maximum resident set size (KB) = 501376 + +Test 021 control_flake PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1342,29 +1360,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.325584 -0:The maximum resident set size (KB) = 454260 +0:The total amount of wall time = 142.593650 +0:The maximum resident set size (KB) = 454496 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.253719 -0:The maximum resident set size (KB) = 454216 +0:The total amount of wall time = 140.628343 +0:The maximum resident set size (KB) = 454532 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1374,15 +1392,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.236305 -0:The maximum resident set size (KB) = 454296 +0:The total amount of wall time = 148.348467 +0:The maximum resident set size (KB) = 454684 -Test 023 control_latlon PASS +Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1392,15 +1410,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.193007 -0:The maximum resident set size (KB) = 454288 +0:The total amount of wall time = 150.540535 +0:The maximum resident set size (KB) = 454680 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1438,15 +1456,15 @@ Checking test 025 control_c48 results .... Comparing 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.470436 -0:The maximum resident set size (KB) = 633524 +0:The total amount of wall time = 443.357985 +0:The maximum resident set size (KB) = 634316 -Test 025 control_c48 PASS +Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1456,15 +1474,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 599.519531 -0:The maximum resident set size (KB) = 560304 +0:The total amount of wall time = 597.320944 +0:The maximum resident set size (KB) = 560252 -Test 026 control_c192 PASS +Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1474,15 +1492,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 586.513005 -0:The maximum resident set size (KB) = 899512 +0:The total amount of wall time = 591.531437 +0:The maximum resident set size (KB) = 903324 -Test 027 control_c384 PASS +Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1524,15 +1542,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 517.549484 -0:The maximum resident set size (KB) = 1027252 +0:The total amount of wall time = 520.854193 +0:The maximum resident set size (KB) = 1029044 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1542,29 +1560,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.793386 -0:The maximum resident set size (KB) = 459240 +0:The total amount of wall time = 101.169607 +0:The maximum resident set size (KB) = 459428 -Test 029 control_stochy PASS +Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.174056 -0:The maximum resident set size (KB) = 226480 +0:The total amount of wall time = 54.124517 +0:The maximum resident set size (KB) = 227652 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1592,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.734473 -0:The maximum resident set size (KB) = 458276 +0:The total amount of wall time = 93.151098 +0:The maximum resident set size (KB) = 459068 -Test 031 control_lndp PASS +Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,15 +1614,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.550293 -0:The maximum resident set size (KB) = 454228 +0:The total amount of wall time = 148.849094 +0:The maximum resident set size (KB) = 454560 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1618,15 +1636,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.294688 -0:The maximum resident set size (KB) = 454220 +0:The total amount of wall time = 150.285252 +0:The maximum resident set size (KB) = 454612 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1672,15 +1690,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.019509 -0:The maximum resident set size (KB) = 1423916 +0:The total amount of wall time = 183.796042 +0:The maximum resident set size (KB) = 1423960 -Test 034 control_p8 PASS +Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1718,15 +1736,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.944739 -0:The maximum resident set size (KB) = 582868 +0:The total amount of wall time = 97.025329 +0:The maximum resident set size (KB) = 582120 -Test 035 control_restart_p8 PASS +Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_qr_p8 -Checking test 036 control_qr_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_qr_p8 +Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1772,15 +1790,15 @@ Checking test 036 control_qr_p8 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 = 183.529750 -0:The maximum resident set size (KB) = 1427212 +0:The total amount of wall time = 183.158950 +0:The maximum resident set size (KB) = 1427676 -Test 036 control_qr_p8 PASS +Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_restart_qr_p8 +Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1818,15 +1836,15 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 97.405363 -0:The maximum resident set size (KB) = 596860 +0:The total amount of wall time = 100.841784 +0:The maximum resident set size (KB) = 597252 -Test 037 control_restart_qr_p8 PASS +Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_decomp_p8 +Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1868,15 +1886,15 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 190.730726 -0:The maximum resident set size (KB) = 1418408 +0:The total amount of wall time = 184.082874 +0:The maximum resident set size (KB) = 1417712 -Test 038 control_decomp_p8 PASS +Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_2threads_p8 +Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1918,15 +1936,15 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.118969 -0:The maximum resident set size (KB) = 1509200 +0:The total amount of wall time = 169.776354 +0:The maximum resident set size (KB) = 1509436 -Test 039 control_2threads_p8 PASS +Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_lndp -Checking test 040 control_p8_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1944,15 +1962,15 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.711546 -0:The maximum resident set size (KB) = 1424948 +0:The total amount of wall time = 337.202653 +0:The maximum resident set size (KB) = 1424256 -Test 040 control_p8_lndp PASS +Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_rrtmgp +Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1998,15 +2016,15 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 255.776175 -0:The maximum resident set size (KB) = 1480304 +0:The total amount of wall time = 256.025478 +0:The maximum resident set size (KB) = 1480648 -Test 041 control_p8_rrtmgp PASS +Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_mynn -Checking test 042 control_p8_mynn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_mynn +Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2052,15 +2070,15 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.704349 -0:The maximum resident set size (KB) = 1427940 +0:The total amount of wall time = 185.545363 +0:The maximum resident set size (KB) = 1428408 -Test 042 control_p8_mynn PASS +Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/merra2_thompson -Checking test 043 merra2_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/merra2_thompson +Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2106,15 +2124,15 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 201.847984 -0:The maximum resident set size (KB) = 1429724 +0:The total amount of wall time = 204.690595 +0:The maximum resident set size (KB) = 1429988 -Test 043 merra2_thompson PASS +Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control -Checking test 044 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control +Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2124,29 +2142,29 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.684976 -0:The maximum resident set size (KB) = 604856 +0:The total amount of wall time = 343.603222 +0:The maximum resident set size (KB) = 605060 -Test 044 regional_control PASS +Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart -Checking test 045 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_restart +Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.307742 -0:The maximum resident set size (KB) = 594236 +0:The total amount of wall time = 178.538046 +0:The maximum resident set size (KB) = 594408 -Test 045 regional_restart PASS +Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_qr -Checking test 046 regional_control_qr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control_qr +Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2156,29 +2174,29 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.766730 -0:The maximum resident set size (KB) = 604828 +0:The total amount of wall time = 346.923378 +0:The maximum resident set size (KB) = 605096 -Test 046 regional_control_qr PASS +Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart_qr -Checking test 047 regional_restart_qr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_restart_qr +Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.924105 -0:The maximum resident set size (KB) = 594172 +0:The total amount of wall time = 176.171623 +0:The maximum resident set size (KB) = 594352 -Test 047 regional_restart_qr PASS +Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_decomp -Checking test 048 regional_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2188,15 +2206,15 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 363.628035 -0:The maximum resident set size (KB) = 598888 +0:The total amount of wall time = 359.487914 +0:The maximum resident set size (KB) = 598864 -Test 048 regional_decomp PASS +Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2threads -Checking test 049 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2206,44 +2224,44 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.270757 -0:The maximum resident set size (KB) = 611600 +0:The total amount of wall time = 213.610658 +0:The maximum resident set size (KB) = 611888 -Test 049 regional_2threads PASS +Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_noquilt -Checking test 050 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_noquilt +Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 356.822041 -0:The maximum resident set size (KB) = 599032 +0:The total amount of wall time = 369.085155 +0:The maximum resident set size (KB) = 599504 -Test 050 regional_noquilt PASS +Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 339.817267 -0:The maximum resident set size (KB) = 596732 +0:The total amount of wall time = 325.509123 +0:The maximum resident set size (KB) = 597000 -Test 051 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2253,15 +2271,15 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.159184 -0:The maximum resident set size (KB) = 604832 +0:The total amount of wall time = 346.086194 +0:The maximum resident set size (KB) = 605088 -Test 052 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_wofs -Checking test 053 regional_wofs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2271,15 +2289,15 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 431.846936 -0:The maximum resident set size (KB) = 275892 +0:The total amount of wall time = 437.602462 +0:The maximum resident set size (KB) = 276188 -Test 053 regional_wofs PASS +Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control -Checking test 054 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2325,15 +2343,15 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.913263 -0:The maximum resident set size (KB) = 823376 +0:The total amount of wall time = 481.614392 +0:The maximum resident set size (KB) = 823904 -Test 054 rap_control PASS +Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_spp_sppt_shum_skeb +Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2343,15 +2361,15 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.659529 -0:The maximum resident set size (KB) = 952340 +0:The total amount of wall time = 261.943940 +0:The maximum resident set size (KB) = 953608 -Test 055 regional_spp_sppt_shum_skeb PASS +Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_decomp -Checking test 056 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_decomp +Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2397,15 +2415,15 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.691957 -0:The maximum resident set size (KB) = 822192 +0:The total amount of wall time = 503.703374 +0:The maximum resident set size (KB) = 822692 -Test 056 rap_decomp PASS +Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads -Checking test 057 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_2threads +Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2451,15 +2469,15 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.180223 -0:The maximum resident set size (KB) = 893540 +0:The total amount of wall time = 462.323234 +0:The maximum resident set size (KB) = 895540 -Test 057 rap_2threads PASS +Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart -Checking test 058 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_restart +Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2497,15 +2515,15 @@ Checking test 058 rap_restart results .... Comparing 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.216202 -0:The maximum resident set size (KB) = 571332 +0:The total amount of wall time = 244.873261 +0:The maximum resident set size (KB) = 571668 -Test 058 rap_restart PASS +Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff +Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2551,15 +2569,15 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 484.678902 -0:The maximum resident set size (KB) = 823340 +0:The total amount of wall time = 483.212165 +0:The maximum resident set size (KB) = 823632 -Test 059 rap_sfcdiff PASS +Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_decomp +Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2605,15 +2623,15 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.403689 -0:The maximum resident set size (KB) = 822328 +0:The total amount of wall time = 508.142870 +0:The maximum resident set size (KB) = 822596 -Test 060 rap_sfcdiff_decomp PASS +Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_restart +Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2651,15 +2669,15 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 359.800845 -0:The maximum resident set size (KB) = 570656 +0:The total amount of wall time = 356.779505 +0:The maximum resident set size (KB) = 571672 -Test 061 rap_sfcdiff_restart PASS +Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control -Checking test 062 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control +Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2672,48 +2690,48 @@ Checking test 062 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 462.437771 -0:The maximum resident set size (KB) = 820816 - -Test 062 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 451.936788 +0:The maximum resident set size (KB) = 820876 + +Test 063 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_decomp +Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2726,48 +2744,48 @@ Checking test 063 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 485.078210 -0:The maximum resident set size (KB) = 820648 - -Test 063 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads -Checking test 064 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 466.824717 +0:The maximum resident set size (KB) = 820612 + +Test 064 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_2threads +Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2780,94 +2798,62 @@ Checking test 064 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 440.016661 -0:The maximum resident set size (KB) = 888408 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart -Checking test 065 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 500.394242 +0:The maximum resident set size (KB) = 890476 + +Test 065 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_restart +Checking test 066 hrrr_control_restart 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 -0:The total amount of wall time = 343.926956 -0:The maximum resident set size (KB) = 566572 +0:The total amount of wall time = 335.459898 +0:The maximum resident set size (KB) = 567700 -Test 065 hrrr_control_restart PASS +Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta -Checking test 066 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1beta +Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2913,15 +2899,15 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.645696 -0:The maximum resident set size (KB) = 819472 +0:The total amount of wall time = 480.958742 +0:The maximum resident set size (KB) = 819696 -Test 066 rrfs_v1beta PASS +Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl -Checking test 067 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1nssl +Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2935,15 +2921,15 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 589.871051 -0:The maximum resident set size (KB) = 508796 +0:The total amount of wall time = 588.168385 +0:The maximum resident set size (KB) = 508696 -Test 067 rrfs_v1nssl PASS +Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1nssl_nohailnoccn +Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2957,15 +2943,15 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 569.606949 -0:The maximum resident set size (KB) = 502712 +0:The total amount of wall time = 559.822019 +0:The maximum resident set size (KB) = 502952 -Test 068 rrfs_v1nssl_nohailnoccn PASS +Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm +Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2973,15 +2959,15 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.907438 -0:The maximum resident set size (KB) = 675324 +0:The total amount of wall time = 153.433492 +0:The maximum resident set size (KB) = 670996 -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2989,15 +2975,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.245534 -0:The maximum resident set size (KB) = 693856 +0:The total amount of wall time = 93.673821 +0:The maximum resident set size (KB) = 692960 -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm +Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3005,15 +2991,15 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 137.550660 -0:The maximum resident set size (KB) = 654104 +0:The total amount of wall time = 137.259061 +0:The maximum resident set size (KB) = 667288 -Test 071 rrfs_conus13km_hrrr_warm PASS +Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_radar_tten_warm +Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3021,27 +3007,27 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.935152 -0:The maximum resident set size (KB) = 677920 +0:The total amount of wall time = 152.146323 +0:The maximum resident set size (KB) = 677492 -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.610874 -0:The maximum resident set size (KB) = 632208 +0:The total amount of wall time = 71.848995 +0:The maximum resident set size (KB) = 640380 -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg -Checking test 074 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmg +Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3051,15 +3037,15 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 400.249782 -0:The maximum resident set size (KB) = 527740 +0:The total amount of wall time = 399.153662 +0:The maximum resident set size (KB) = 528024 -Test 074 control_csawmg PASS +Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt -Checking test 075 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmgt +Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3069,15 +3055,15 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.323575 -0:The maximum resident set size (KB) = 528404 +0:The total amount of wall time = 393.571350 +0:The maximum resident set size (KB) = 528864 -Test 075 control_csawmgt PASS +Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras -Checking test 076 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_ras +Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3087,27 +3073,27 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.739704 -0:The maximum resident set size (KB) = 491288 +0:The total amount of wall time = 206.027748 +0:The maximum resident set size (KB) = 491172 -Test 076 control_ras PASS +Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam -Checking test 077 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wam +Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.525401 -0:The maximum resident set size (KB) = 206292 +0:The total amount of wall time = 129.915771 +0:The maximum resident set size (KB) = 206720 -Test 077 control_wam PASS +Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_faster -Checking test 078 control_p8_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_faster +Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3153,15 +3139,15 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 167.029387 -0:The maximum resident set size (KB) = 1423720 +0:The total amount of wall time = 171.041008 +0:The maximum resident set size (KB) = 1423832 -Test 078 control_p8_faster PASS +Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_faster -Checking test 079 regional_control_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control_faster +Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3171,57 +3157,57 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 324.581453 -0:The maximum resident set size (KB) = 604708 +0:The total amount of wall time = 320.044249 +0:The maximum resident set size (KB) = 604904 -Test 079 regional_control_faster PASS +Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 871.802541 -0:The maximum resident set size (KB) = 704768 +0:The total amount of wall time = 876.976384 +0:The maximum resident set size (KB) = 704312 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 499.740002 -0:The maximum resident set size (KB) = 724256 +0:The total amount of wall time = 500.511114 +0:The maximum resident set size (KB) = 723836 -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_debug -Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm_debug +Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 782.177368 -0:The maximum resident set size (KB) = 683284 +0:The total amount of wall time = 783.249919 +0:The maximum resident set size (KB) = 697548 -Test 082 rrfs_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_debug -Checking test 083 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid_debug +Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3247,335 +3233,349 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 157.352526 -0:The maximum resident set size (KB) = 617452 +0:The total amount of wall time = 160.584418 +0:The maximum resident set size (KB) = 618020 -Test 083 control_CubedSphereGrid_debug PASS +Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel_debug -Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wrtGauss_netcdf_parallel_debug +Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 156.062841 -0:The maximum resident set size (KB) = 615548 +0:The total amount of wall time = 157.271955 +0:The maximum resident set size (KB) = 615660 -Test 084 control_wrtGauss_netcdf_parallel_debug PASS +Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_debug -Checking test 085 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy_debug +Checking test 086 control_stochy_debug 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.308146 -0:The maximum resident set size (KB) = 621216 +0:The total amount of wall time = 174.521472 +0:The maximum resident set size (KB) = 621116 -Test 085 control_stochy_debug PASS +Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp_debug -Checking test 086 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_lndp_debug +Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.292235 -0:The maximum resident set size (KB) = 620000 +0:The total amount of wall time = 157.276354 +0:The maximum resident set size (KB) = 620584 -Test 086 control_lndp_debug PASS +Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg_debug -Checking test 087 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmg_debug +Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.097119 -0:The maximum resident set size (KB) = 666368 +0:The total amount of wall time = 248.369859 +0:The maximum resident set size (KB) = 666872 -Test 087 control_csawmg_debug PASS +Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt_debug -Checking test 088 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmgt_debug +Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 244.860441 -0:The maximum resident set size (KB) = 667372 +0:The total amount of wall time = 244.411680 +0:The maximum resident set size (KB) = 667800 -Test 088 control_csawmgt_debug PASS +Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras_debug -Checking test 089 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_ras_debug +Checking test 090 control_ras_debug 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.424074 -0:The maximum resident set size (KB) = 630328 +0:The total amount of wall time = 158.812406 +0:The maximum resident set size (KB) = 630068 -Test 089 control_ras_debug PASS +Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_diag_debug -Checking test 090 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_diag_debug +Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.185965 -0:The maximum resident set size (KB) = 674836 +0:The total amount of wall time = 159.084354 +0:The maximum resident set size (KB) = 675440 -Test 090 control_diag_debug PASS +Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_debug_p8 -Checking test 091 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_debug_p8 +Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.308639 -0:The maximum resident set size (KB) = 1442356 +0:The total amount of wall time = 174.682814 +0:The maximum resident set size (KB) = 1443456 -Test 091 control_debug_p8 PASS +Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_debug -Checking test 092 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_debug +Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.935412 -0:The maximum resident set size (KB) = 625924 - -Test 092 regional_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug -Checking test 093 rap_control_debug 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.084698 -0:The maximum resident set size (KB) = 986496 +0:The total amount of wall time = 1033.525203 +0:The maximum resident set size (KB) = 626424 -Test 093 rap_control_debug PASS +Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug -Checking test 094 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_debug +Checking test 094 rap_control_debug 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.600489 -0:The maximum resident set size (KB) = 984084 +0:The total amount of wall time = 286.025062 +0:The maximum resident set size (KB) = 987052 -Test 094 hrrr_control_debug PASS +Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_drag_suite_debug -Checking test 095 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_debug +Checking test 095 hrrr_control_debug 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.472533 -0:The maximum resident set size (KB) = 986652 +0:The total amount of wall time = 279.986715 +0:The maximum resident set size (KB) = 983260 -Test 095 rap_unified_drag_suite_debug PASS +Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_diag_debug -Checking test 096 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_unified_drag_suite_debug +Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.992960 -0:The maximum resident set size (KB) = 1069984 +0:The total amount of wall time = 286.425862 +0:The maximum resident set size (KB) = 987060 -Test 096 rap_diag_debug PASS +Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_cires_ugwp_debug -Checking test 097 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_diag_debug +Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.742725 -0:The maximum resident set size (KB) = 985792 +0:The total amount of wall time = 297.463093 +0:The maximum resident set size (KB) = 1070312 -Test 097 rap_cires_ugwp_debug PASS +Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_ugwp_debug -Checking test 098 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_cires_ugwp_debug +Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.201147 -0:The maximum resident set size (KB) = 986816 +0:The total amount of wall time = 292.622886 +0:The maximum resident set size (KB) = 986260 -Test 098 rap_unified_ugwp_debug PASS +Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_lndp_debug -Checking test 099 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_unified_ugwp_debug +Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.173800 -0:The maximum resident set size (KB) = 987444 +0:The total amount of wall time = 292.282315 +0:The maximum resident set size (KB) = 987268 -Test 099 rap_lndp_debug PASS +Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_flake_debug -Checking test 100 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_lndp_debug +Checking test 100 rap_lndp_debug 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.976333 -0:The maximum resident set size (KB) = 986616 +0:The total amount of wall time = 288.947041 +0:The maximum resident set size (KB) = 987828 -Test 100 rap_flake_debug PASS +Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug 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.456969 -0:The maximum resident set size (KB) = 986588 +0:The total amount of wall time = 286.892291 +0:The maximum resident set size (KB) = 987112 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_noah_debug Checking test 102 rap_noah_debug 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.083508 -0:The maximum resident set size (KB) = 984456 +0:The total amount of wall time = 281.234122 +0:The maximum resident set size (KB) = 985180 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug 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.240114 -0:The maximum resident set size (KB) = 986356 +0:The total amount of wall time = 287.418756 +0:The maximum resident set size (KB) = 986952 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 474.892403 -0:The maximum resident set size (KB) = 985280 +0:The total amount of wall time = 469.999853 +0:The maximum resident set size (KB) = 985804 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug 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.222650 -0:The maximum resident set size (KB) = 983432 +0:The total amount of wall time = 282.840863 +0:The maximum resident set size (KB) = 983004 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam_debug -Checking test 106 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_clm_lake_debug +Checking test 106 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 352.130988 +0:The maximum resident set size (KB) = 989996 + +Test 106 rap_clm_lake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_flake_debug +Checking test 107 rap_flake_debug 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.902870 +0:The maximum resident set size (KB) = 987348 + +Test 107 rap_flake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wam_debug +Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 299.066112 -0:The maximum resident set size (KB) = 235296 +0:The total amount of wall time = 290.175655 +0:The maximum resident set size (KB) = 235700 -Test 106 control_wam_debug PASS +Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3585,15 +3585,15 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 239.645019 -0:The maximum resident set size (KB) = 851052 +0:The total amount of wall time = 246.296774 +0:The maximum resident set size (KB) = 855112 -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn32_phy32 -Checking test 108 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3639,15 +3639,15 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.020825 -0:The maximum resident set size (KB) = 707908 +0:The total amount of wall time = 395.741265 +0:The maximum resident set size (KB) = 708008 -Test 108 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_dyn32_phy32 -Checking test 109 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3660,48 +3660,48 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 209.381857 -0:The maximum resident set size (KB) = 706424 - -Test 109 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads_dyn32_phy32 -Checking test 110 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 202.195920 +0:The maximum resident set size (KB) = 707968 + +Test 111 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3747,15 +3747,15 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.799841 -0:The maximum resident set size (KB) = 759676 +0:The total amount of wall time = 384.915491 +0:The maximum resident set size (KB) = 759788 -Test 110 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads_dyn32_phy32 -Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3768,48 +3768,48 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 201.205524 -0:The maximum resident set size (KB) = 756484 - -Test 111 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp_dyn32_phy32 -Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 274.564757 +0:The maximum resident set size (KB) = 753348 + +Test 113 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3822,48 +3822,48 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 218.799957 -0:The maximum resident set size (KB) = 704432 - -Test 112 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart_dyn32_phy32 -Checking test 113 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 212.351834 +0:The maximum resident set size (KB) = 705864 + +Test 114 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3901,61 +3901,29 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 296.595500 -0:The maximum resident set size (KB) = 544672 +0:The total amount of wall time = 297.465616 +0:The maximum resident set size (KB) = 545340 -Test 113 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart_dyn32_phy32 -Checking test 114 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 107.270669 -0:The maximum resident set size (KB) = 537424 +0:The total amount of wall time = 103.509032 +0:The maximum resident set size (KB) = 536636 -Test 114 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32 -Checking test 115 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4001,82 +3969,82 @@ Checking test 115 rap_control_dyn64_phy32 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 = 274.048274 -0:The maximum resident set size (KB) = 730388 +0:The total amount of wall time = 273.628032 +0:The maximum resident set size (KB) = 730556 -Test 115 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug_dyn32_phy32 -Checking test 116 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 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.017359 -0:The maximum resident set size (KB) = 872972 +0:The total amount of wall time = 282.128325 +0:The maximum resident set size (KB) = 872220 -Test 116 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug_dyn32_phy32 -Checking test 117 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 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.245002 -0:The maximum resident set size (KB) = 871140 +0:The total amount of wall time = 275.179346 +0:The maximum resident set size (KB) = 870928 -Test 117 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32_debug -Checking test 118 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.687981 -0:The maximum resident set size (KB) = 890056 +0:The total amount of wall time = 285.197823 +0:The maximum resident set size (KB) = 893076 -Test 118 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm -Checking test 119 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 261.333436 -0:The maximum resident set size (KB) = 742668 +0:The total amount of wall time = 259.493244 +0:The maximum resident set size (KB) = 742816 -Test 119 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_thompson_gfdlsf -Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 294.815274 -0:The maximum resident set size (KB) = 1099664 +0:The total amount of wall time = 293.170057 +0:The maximum resident set size (KB) = 1098432 -Test 120 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn -Checking test 121 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4084,15 +4052,15 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.040584 -0:The maximum resident set size (KB) = 741072 +0:The total amount of wall time = 454.458371 +0:The maximum resident set size (KB) = 743464 -Test 121 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_wav -Checking test 122 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4100,15 +4068,15 @@ Checking test 122 hafs_regional_atm_wav 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 = 1022.908737 -0:The maximum resident set size (KB) = 768840 +0:The total amount of wall time = 1045.810077 +0:The maximum resident set size (KB) = 772600 -Test 122 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn_wav -Checking test 123 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4118,29 +4086,29 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1108.879963 -0:The maximum resident set size (KB) = 792712 +0:The total amount of wall time = 1111.222502 +0:The maximum resident set size (KB) = 793424 -Test 123 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_1nest_atm -Checking test 124 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm 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 = 377.178905 -0:The maximum resident set size (KB) = 300764 +0:The total amount of wall time = 378.622629 +0:The maximum resident set size (KB) = 301120 -Test 124 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_telescopic_2nests_atm -Checking test 125 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4148,29 +4116,29 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 418.540193 -0:The maximum resident set size (KB) = 320444 +0:The total amount of wall time = 416.035723 +0:The maximum resident set size (KB) = 320820 -Test 125 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_1nest_atm -Checking test 126 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm 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 = 172.018136 -0:The maximum resident set size (KB) = 213700 +0:The total amount of wall time = 171.550175 +0:The maximum resident set size (KB) = 214460 -Test 126 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_multiple_4nests_atm -Checking test 127 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4187,15 +4155,15 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 484.704166 -0:The maximum resident set size (KB) = 302524 +0:The total amount of wall time = 479.916174 +0:The maximum resident set size (KB) = 303304 -Test 127 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_specified_moving_1nest_atm -Checking test 128 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4203,29 +4171,29 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 243.374540 -0:The maximum resident set size (KB) = 318936 +0:The total amount of wall time = 241.769804 +0:The maximum resident set size (KB) = 319100 -Test 128 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm -Checking test 129 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm 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 = 227.031099 -0:The maximum resident set size (KB) = 317752 +0:The total amount of wall time = 229.445505 +0:The maximum resident set size (KB) = 318776 -Test 129 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4233,43 +4201,43 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 282.631944 -0:The maximum resident set size (KB) = 375972 +0:The total amount of wall time = 281.890180 +0:The maximum resident set size (KB) = 375404 -Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_storm_following_1nest_atm -Checking test 131 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_storm_following_1nest_atm +Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.853354 -0:The maximum resident set size (KB) = 234016 +0:The total amount of wall time = 66.496798 +0:The maximum resident set size (KB) = 233716 -Test 131 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 768.075635 -0:The maximum resident set size (KB) = 402732 +0:The total amount of wall time = 764.056021 +0:The maximum resident set size (KB) = 401668 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4279,162 +4247,162 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 723.795493 -0:The maximum resident set size (KB) = 426604 +0:The total amount of wall time = 726.646921 +0:The maximum resident set size (KB) = 427572 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn -Checking test 134 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_docn +Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 389.591145 -0:The maximum resident set size (KB) = 755448 +0:The total amount of wall time = 390.016329 +0:The maximum resident set size (KB) = 756560 -Test 134 hafs_regional_docn PASS +Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn_oisst -Checking test 135 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_docn_oisst +Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 394.331574 -0:The maximum resident set size (KB) = 735456 +0:The total amount of wall time = 383.875071 +0:The maximum resident set size (KB) = 736276 -Test 135 hafs_regional_docn_oisst PASS +Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_datm_cdeps -Checking test 136 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_datm_cdeps +Checking test 138 hafs_regional_datm_cdeps 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 = 1268.985930 -0:The maximum resident set size (KB) = 887848 +0:The total amount of wall time = 1278.174986 +0:The maximum resident set size (KB) = 887836 -Test 136 hafs_regional_datm_cdeps PASS +Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr -Checking test 137 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_cfsr +Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.872791 -0:The maximum resident set size (KB) = 727772 +0:The total amount of wall time = 167.988598 +0:The maximum resident set size (KB) = 727976 -Test 137 datm_cdeps_control_cfsr PASS +Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_restart_cfsr -Checking test 138 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_restart_cfsr +Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 99.624296 -0:The maximum resident set size (KB) = 704856 +0:The total amount of wall time = 101.299942 +0:The maximum resident set size (KB) = 704812 -Test 138 datm_cdeps_restart_cfsr PASS +Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_gefs -Checking test 139 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_gefs +Checking test 141 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.703123 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 155.804191 +0:The maximum resident set size (KB) = 607488 -Test 139 datm_cdeps_control_gefs PASS +Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_iau_gefs -Checking test 140 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_iau_gefs +Checking test 142 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 159.030606 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 163.732550 +0:The maximum resident set size (KB) = 607436 -Test 140 datm_cdeps_iau_gefs PASS +Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_stochy_gefs -Checking test 141 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_stochy_gefs +Checking test 143 datm_cdeps_stochy_gefs 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 = 164.820867 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 164.583837 +0:The maximum resident set size (KB) = 607492 -Test 141 datm_cdeps_stochy_gefs PASS +Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_ciceC_cfsr -Checking test 142 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_ciceC_cfsr +Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.864883 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 167.462734 +0:The maximum resident set size (KB) = 716676 -Test 142 datm_cdeps_ciceC_cfsr PASS +Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_cfsr -Checking test 143 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_bulk_cfsr +Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.512628 -0:The maximum resident set size (KB) = 717176 +0:The total amount of wall time = 168.237363 +0:The maximum resident set size (KB) = 716704 -Test 143 datm_cdeps_bulk_cfsr PASS +Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_gefs -Checking test 144 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_bulk_gefs +Checking test 146 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.004640 -0:The maximum resident set size (KB) = 607492 +0:The total amount of wall time = 160.403618 +0:The maximum resident set size (KB) = 607456 -Test 144 datm_cdeps_bulk_gefs PASS +Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_cfsr -Checking test 145 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_mx025_cfsr +Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4442,15 +4410,15 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 415.369157 -0:The maximum resident set size (KB) = 514264 +0:The total amount of wall time = 427.807135 +0:The maximum resident set size (KB) = 514356 -Test 145 datm_cdeps_mx025_cfsr PASS +Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_gefs -Checking test 146 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_mx025_gefs +Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4458,78 +4426,78 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 416.438795 -0:The maximum resident set size (KB) = 494816 +0:The total amount of wall time = 415.046214 +0:The maximum resident set size (KB) = 494796 -Test 146 datm_cdeps_mx025_gefs PASS +Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_multiple_files_cfsr -Checking test 147 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_multiple_files_cfsr +Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.644257 -0:The maximum resident set size (KB) = 716720 +0:The total amount of wall time = 166.806932 +0:The maximum resident set size (KB) = 727832 -Test 147 datm_cdeps_multiple_files_cfsr PASS +Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_3072x1536_cfsr -Checking test 148 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_3072x1536_cfsr +Checking test 150 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 255.611279 -0:The maximum resident set size (KB) = 1910064 +0:The total amount of wall time = 266.848176 +0:The maximum resident set size (KB) = 1940268 -Test 148 datm_cdeps_3072x1536_cfsr PASS +Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_gfs -Checking test 149 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_gfs +Checking test 151 datm_cdeps_gfs 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 = 257.571916 -0:The maximum resident set size (KB) = 1941108 +0:The total amount of wall time = 256.226723 +0:The maximum resident set size (KB) = 1940260 -Test 149 datm_cdeps_gfs PASS +Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_debug_cfsr -Checking test 150 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_debug_cfsr +Checking test 152 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 369.353290 -0:The maximum resident set size (KB) = 700732 +0:The total amount of wall time = 369.686146 +0:The maximum resident set size (KB) = 700692 -Test 150 datm_cdeps_debug_cfsr PASS +Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr_faster -Checking test 151 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_cfsr_faster +Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.831336 -0:The maximum resident set size (KB) = 716744 +0:The total amount of wall time = 167.310780 +0:The maximum resident set size (KB) = 727848 -Test 151 datm_cdeps_control_cfsr_faster PASS +Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3 -Checking test 152 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_lnd_gswp3 +Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4537,15 +4505,15 @@ Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 10.709243 -0:The maximum resident set size (KB) = 208688 +0:The total amount of wall time = 10.845983 +0:The maximum resident set size (KB) = 210100 -Test 152 datm_cdeps_lnd_gswp3 PASS +Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3_rst -Checking test 153 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_lnd_gswp3_rst +Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4553,15 +4521,15 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 15.693225 -0:The maximum resident set size (KB) = 208248 +0:The total amount of wall time = 15.741011 +0:The maximum resident set size (KB) = 216400 -Test 153 datm_cdeps_lnd_gswp3_rst PASS +Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_atmlnd_sbs -Checking test 154 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_atmlnd_sbs +Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4645,15 +4613,15 @@ Checking test 154 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -0:The total amount of wall time = 237.255222 -0:The maximum resident set size (KB) = 1462940 +0:The total amount of wall time = 234.260114 +0:The maximum resident set size (KB) = 1463200 -Test 154 control_p8_atmlnd_sbs PASS +Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmwav_control_noaero_p8 -Checking test 155 atmwav_control_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmwav_control_noaero_p8 +Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4695,15 +4663,15 @@ Checking test 155 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 101.540638 -0:The maximum resident set size (KB) = 1434376 +0:The total amount of wall time = 100.975854 +0:The maximum resident set size (KB) = 1434544 -Test 155 atmwav_control_noaero_p8 PASS +Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_atmwav -Checking test 156 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_atmwav +Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4746,15 +4714,15 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 101.155118 -0:The maximum resident set size (KB) = 474472 +0:The total amount of wall time = 99.786197 +0:The maximum resident set size (KB) = 475444 -Test 156 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8 -Checking test 157 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8 +Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4797,15 +4765,15 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.896824 -0:The maximum resident set size (KB) = 2704068 +0:The total amount of wall time = 252.227823 +0:The maximum resident set size (KB) = 2703964 -Test 157 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4848,15 +4816,15 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.088496 -0:The maximum resident set size (KB) = 2757996 +0:The total amount of wall time = 303.601197 +0:The maximum resident set size (KB) = 2758792 -Test 158 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4899,15 +4867,15 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.157547 -0:The maximum resident set size (KB) = 2764584 +0:The total amount of wall time = 299.300384 +0:The maximum resident set size (KB) = 2765644 -Test 159 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq -Checking test 160 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_atmaq +Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4922,15 +4890,15 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 727.375377 -0:The maximum resident set size (KB) = 999612 +0:The total amount of wall time = 745.669904 +0:The maximum resident set size (KB) = 999632 -Test 160 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_atmaq_faster +Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4945,12 +4913,11 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 703.434730 -0:The maximum resident set size (KB) = 999268 - -Test 161 regional_atmaq_faster PASS +0:The total amount of wall time = 696.999379 +0:The maximum resident set size (KB) = 999404 +Test 163 regional_atmaq_faster PASS -REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 15:17:35 MDT 2023 -Elapsed time: 01h:54m:05s. Have a nice day! +REGRESSION TEST SUCCESSFUL +Tue Apr 25 10:35:04 MDT 2023 +Elapsed time: 01h:29m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a448ac5e45..8a083e6d31 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Apr 21 20:03:16 UTC 2023 +Tue Apr 25 17:34:36 UTC 2023 Start Regression test -Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 405 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 327 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 331 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_c48 +Compile 001 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 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 005 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 434 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 359 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 349 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 278 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 240 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 155 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 124 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 685.754207 -0: The maximum resident set size (KB) = 707088 +0: The total amount of wall time = 685.156530 +0: The maximum resident set size (KB) = 705740 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 645.658326 - 0: The maximum resident set size (KB) = 478852 + 0: The total amount of wall time = 658.160391 + 0: The maximum resident set size (KB) = 484236 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 827.448455 - 0: The maximum resident set size (KB) = 488764 + 0: The total amount of wall time = 809.562433 + 0: The maximum resident set size (KB) = 490012 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,15 +144,20 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 883.943395 - 0: The maximum resident set size (KB) = 1233284 + 0: The total amount of wall time = 894.918791 + 0: The maximum resident set size (KB) = 1240588 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control -Checking test 005 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_flake +Checking test 005 control_flake results .... + Comparing sfcf000.nc ............ALT CHECK......ERROR + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control +Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -198,15 +203,15 @@ Checking test 005 rap_control results .... Comparing 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.481846 - 0: The maximum resident set size (KB) = 829732 + 0: The total amount of wall time = 1452.843644 + 0: The maximum resident set size (KB) = 832504 -Test 005 rap_control PASS +Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_decomp -Checking test 006 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_decomp +Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -252,15 +257,15 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1420.600032 - 0: The maximum resident set size (KB) = 832296 + 0: The total amount of wall time = 1452.393206 + 0: The maximum resident set size (KB) = 828192 -Test 006 rap_decomp PASS +Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads -Checking test 007 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_2threads +Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -306,15 +311,15 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1320.895143 - 0: The maximum resident set size (KB) = 900324 + 0: The total amount of wall time = 1344.649956 + 0: The maximum resident set size (KB) = 898784 -Test 007 rap_2threads PASS +Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart -Checking test 008 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_restart +Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -352,15 +357,15 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 712.371835 - 0: The maximum resident set size (KB) = 550820 + 0: The total amount of wall time = 728.053853 + 0: The maximum resident set size (KB) = 535284 -Test 008 rap_restart PASS +Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff +Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -406,15 +411,15 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1460.235117 - 0: The maximum resident set size (KB) = 831300 + 0: The total amount of wall time = 1456.389081 + 0: The maximum resident set size (KB) = 828880 -Test 009 rap_sfcdiff PASS +Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff_decomp +Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -460,15 +465,15 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1450.169646 - 0: The maximum resident set size (KB) = 831856 + 0: The total amount of wall time = 1467.282201 + 0: The maximum resident set size (KB) = 828888 -Test 010 rap_sfcdiff_decomp PASS +Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff_restart +Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -506,15 +511,15 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1048.602920 - 0: The maximum resident set size (KB) = 550848 + 0: The total amount of wall time = 1081.510378 + 0: The maximum resident set size (KB) = 554944 -Test 011 rap_sfcdiff_restart PASS +Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control -Checking test 012 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control +Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -527,48 +532,48 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1416.628887 - 0: The maximum resident set size (KB) = 826692 - -Test 012 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1454.785342 + 0: The maximum resident set size (KB) = 828124 + +Test 013 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_2threads +Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -581,48 +586,48 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1298.646632 - 0: The maximum resident set size (KB) = 893940 - -Test 013 hrrr_control_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1503.975894 + 0: The maximum resident set size (KB) = 894520 + +Test 014 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_decomp +Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -635,94 +640,62 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1407.631640 - 0: The maximum resident set size (KB) = 822928 - -Test 014 hrrr_control_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1432.846183 + 0: The maximum resident set size (KB) = 824296 + +Test 015 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_restart +Checking test 016 hrrr_control_restart 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 - 0: The total amount of wall time = 1064.019766 - 0: The maximum resident set size (KB) = 551732 + 0: The total amount of wall time = 1062.431919 + 0: The maximum resident set size (KB) = 548812 -Test 015 hrrr_control_restart PASS +Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_v1beta +Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -768,15 +741,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1473.555726 - 0: The maximum resident set size (KB) = 832336 + 0: The total amount of wall time = 1463.107031 + 0: The maximum resident set size (KB) = 821480 -Test 016 rrfs_v1beta PASS +Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm -Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +757,15 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 789.215541 - 0: The maximum resident set size (KB) = 669488 + 0: The total amount of wall time = 783.849939 + 0: The maximum resident set size (KB) = 671872 -Test 017 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +773,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1024.336600 - 0: The maximum resident set size (KB) = 666648 + 0: The total amount of wall time = 1076.271708 + 0: The maximum resident set size (KB) = 669860 -Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm -Checking test 019 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm +Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +789,15 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 732.482214 - 0: The maximum resident set size (KB) = 644996 + 0: The total amount of wall time = 757.091492 + 0: The maximum resident set size (KB) = 648220 -Test 019 rrfs_conus13km_hrrr_warm PASS +Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_radar_tten_warm -Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_radar_tten_warm +Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,235 +805,263 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 778.384203 - 0: The maximum resident set size (KB) = 670092 + 0: The total amount of wall time = 798.274666 + 0: The maximum resident set size (KB) = 675204 -Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 406.540805 - 0: The maximum resident set size (KB) = 632324 + 0: The total amount of wall time = 418.052523 + 0: The maximum resident set size (KB) = 634972 -Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_diag_debug -Checking test 022 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_diag_debug +Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.335229 - 0: The maximum resident set size (KB) = 526668 + 0: The total amount of wall time = 128.753604 + 0: The maximum resident set size (KB) = 528288 -Test 022 control_diag_debug PASS +Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/regional_debug -Checking test 023 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/regional_debug +Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 615.470758 - 0: The maximum resident set size (KB) = 592296 + 0: The total amount of wall time = 656.602924 + 0: The maximum resident set size (KB) = 591856 + +Test 024 regional_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_debug +Checking test 025 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 178.666019 + 0: The maximum resident set size (KB) = 842860 + +Test 025 rap_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_debug +Checking test 026 hrrr_control_debug 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.093889 + 0: The maximum resident set size (KB) = 841524 -Test 023 regional_debug PASS +Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug -Checking test 024 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_diag_debug +Checking test 027 rap_diag_debug 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.474629 - 0: The maximum resident set size (KB) = 841140 + 0: The total amount of wall time = 214.947296 + 0: The maximum resident set size (KB) = 918936 -Test 024 rap_control_debug PASS +Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug -Checking test 025 hrrr_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.437426 - 0: The maximum resident set size (KB) = 835852 + 0: The total amount of wall time = 277.289831 + 0: The maximum resident set size (KB) = 833428 -Test 025 hrrr_control_debug PASS +Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_diag_debug -Checking test 026 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_progcld_thompson_debug +Checking test 029 rap_progcld_thompson_debug 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.682550 - 0: The maximum resident set size (KB) = 922624 + 0: The total amount of wall time = 172.739108 + 0: The maximum resident set size (KB) = 836188 -Test 026 rap_diag_debug PASS +Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_v1beta_debug +Checking test 030 rrfs_v1beta_debug 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.877852 - 0: The maximum resident set size (KB) = 840996 + 0: The total amount of wall time = 177.106344 + 0: The maximum resident set size (KB) = 836944 -Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_progcld_thompson_debug -Checking test 028 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_ras_debug +Checking test 031 control_ras_debug 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.929537 - 0: The maximum resident set size (KB) = 841240 + 0: The total amount of wall time = 105.786286 + 0: The maximum resident set size (KB) = 481264 -Test 028 rap_progcld_thompson_debug PASS +Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta_debug -Checking test 029 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.358292 - 0: The maximum resident set size (KB) = 834672 + 0: The total amount of wall time = 121.770821 + 0: The maximum resident set size (KB) = 469640 -Test 029 rrfs_v1beta_debug PASS +Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras_debug -Checking test 030 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.810316 - 0: The maximum resident set size (KB) = 484560 + 0: The total amount of wall time = 121.138125 + 0: The maximum resident set size (KB) = 1225048 -Test 030 control_ras_debug PASS +Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy_debug -Checking test 031 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.450603 - 0: The maximum resident set size (KB) = 477252 + 0: The total amount of wall time = 615.177272 + 0: The maximum resident set size (KB) = 687344 -Test 031 control_stochy_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_debug_p8 -Checking test 032 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.623415 - 0: The maximum resident set size (KB) = 1226480 + 0: The total amount of wall time = 759.146448 + 0: The maximum resident set size (KB) = 681880 -Test 032 control_debug_p8 PASS +Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm_debug +Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 624.358942 - 0: The maximum resident set size (KB) = 685308 + 0: The total amount of wall time = 567.952831 + 0: The maximum resident set size (KB) = 662196 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_flake_debug +Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 742.594878 - 0: The maximum resident set size (KB) = 682036 + 0: The total amount of wall time = 178.155110 + 0: The maximum resident set size (KB) = 842000 -Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_debug -Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_clm_lake_debug +Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 590.182539 - 0: The maximum resident set size (KB) = 658428 + 0: The total amount of wall time = 198.667015 + 0: The maximum resident set size (KB) = 845664 -Test 035 rrfs_conus13km_hrrr_warm_debug PASS +Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_wam_debug -Checking test 036 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_wam_debug +Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 183.796772 - 0: The maximum resident set size (KB) = 194908 + 0: The total amount of wall time = 187.096267 + 0: The maximum resident set size (KB) = 194848 -Test 036 control_wam_debug PASS +Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn32_phy32 -Checking test 037 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn32_phy32 +Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1106,15 +1107,15 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1455.594933 - 0: The maximum resident set size (KB) = 686188 + 0: The total amount of wall time = 1487.118979 + 0: The maximum resident set size (KB) = 686908 -Test 037 rap_control_dyn32_phy32 PASS +Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_dyn32_phy32 -Checking test 038 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_dyn32_phy32 +Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1127,48 +1128,48 @@ Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 751.083337 - 0: The maximum resident set size (KB) = 682424 - -Test 038 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads_dyn32_phy32 -Checking test 039 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 740.503240 + 0: The maximum resident set size (KB) = 680628 + +Test 041 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_2threads_dyn32_phy32 +Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,15 +1215,15 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1375.653263 - 0: The maximum resident set size (KB) = 727304 + 0: The total amount of wall time = 1344.285233 + 0: The maximum resident set size (KB) = 735344 -Test 039 rap_2threads_dyn32_phy32 PASS +Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads_dyn32_phy32 -Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_2threads_dyn32_phy32 +Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1235,48 +1236,48 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 670.354670 - 0: The maximum resident set size (KB) = 728912 - -Test 040 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp_dyn32_phy32 -Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 776.035914 + 0: The maximum resident set size (KB) = 728100 + +Test 043 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_decomp_dyn32_phy32 +Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1289,48 +1290,48 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 742.760271 - 0: The maximum resident set size (KB) = 684568 - -Test 041 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart_dyn32_phy32 -Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 729.827151 + 0: The maximum resident set size (KB) = 691380 + +Test 044 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_restart_dyn32_phy32 +Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1368,61 +1369,29 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1059.836923 - 0: The maximum resident set size (KB) = 511216 + 0: The total amount of wall time = 1101.583583 + 0: The maximum resident set size (KB) = 512732 -Test 042 rap_restart_dyn32_phy32 PASS +Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart_dyn32_phy32 -Checking test 043 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_restart_dyn32_phy32 +Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 361.944052 - 0: The maximum resident set size (KB) = 512796 + 0: The total amount of wall time = 358.215006 + 0: The maximum resident set size (KB) = 509752 -Test 043 hrrr_control_restart_dyn32_phy32 PASS +Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32 -Checking test 044 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn64_phy32 +Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1468,57 +1437,57 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1083.345711 - 0: The maximum resident set size (KB) = 708152 + 0: The total amount of wall time = 1075.006151 + 0: The maximum resident set size (KB) = 708312 -Test 044 rap_control_dyn64_phy32 PASS +Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug_dyn32_phy32 -Checking test 045 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_debug_dyn32_phy32 +Checking test 048 rap_control_debug_dyn32_phy32 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.573852 - 0: The maximum resident set size (KB) = 703144 + 0: The total amount of wall time = 173.531699 + 0: The maximum resident set size (KB) = 695664 -Test 045 rap_control_debug_dyn32_phy32 PASS +Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug_dyn32_phy32 -Checking test 046 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 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.216297 - 0: The maximum resident set size (KB) = 701488 + 0: The total amount of wall time = 171.532601 + 0: The maximum resident set size (KB) = 703072 -Test 046 hrrr_control_debug_dyn32_phy32 PASS +Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32_debug -Checking test 047 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn64_phy32_debug +Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.191701 - 0: The maximum resident set size (KB) = 720396 + 0: The total amount of wall time = 206.398304 + 0: The maximum resident set size (KB) = 716296 -Test 047 rap_control_dyn64_phy32_debug PASS +Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1582,15 +1551,15 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1679.149683 - 0: The maximum resident set size (KB) = 1428860 + 0: The total amount of wall time = 1679.804702 + 0: The maximum resident set size (KB) = 1433244 -Test 048 cpld_control_p8 PASS Tries: 2 +Test 051 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_nowave_noaero_p8 -Checking test 049 cpld_control_nowave_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_control_nowave_noaero_p8 +Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1651,15 +1620,15 @@ Checking test 049 cpld_control_nowave_noaero_p8 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.029659 - 0: The maximum resident set size (KB) = 1331116 + 0: The total amount of wall time = 1218.244104 + 0: The maximum resident set size (KB) = 1331088 -Test 049 cpld_control_nowave_noaero_p8 PASS +Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_debug_p8 -Checking test 050 cpld_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_debug_p8 +Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1711,25 +1680,53 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 806.567312 - 0: The maximum resident set size (KB) = 1436080 + 0: The total amount of wall time = 850.146856 + 0: The maximum resident set size (KB) = 1437136 -Test 050 cpld_debug_p8 PASS Tries: 2 +Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/datm_cdeps_control_cfsr -Checking test 051 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/datm_cdeps_control_cfsr +Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.101565 - 0: The maximum resident set size (KB) = 664976 + 0: The total amount of wall time = 179.260979 + 0: The maximum resident set size (KB) = 669436 + +Test 054 datm_cdeps_control_cfsr PASS + +FAILED TESTS: +Test control_flake 005 failed in run_test failed + +REGRESSION TEST FAILED +Tue Apr 25 18:41:19 UTC 2023 +Elapsed time: 01h:06m:44s. Have a nice day! +Tue Apr 25 18:53:32 UTC 2023 +Start Regression test + +Compile 001 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_64771/control_flake +Checking test 001 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1171.856518 + 0: The maximum resident set size (KB) = 511916 -Test 051 datm_cdeps_control_cfsr PASS +Test 001 control_flake PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 22 01:34:56 UTC 2023 -Elapsed time: 05h:31m:41s. Have a nice day! +Tue Apr 25 19:24:09 UTC 2023 +Elapsed time: 00h:30m:38s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 09f4a6a267..c174013c8a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Fri Apr 21 19:48:25 UTC 2023 +Tue Apr 25 22:13:17 UTC 2023 Start Regression test -Compile 001 elapsed time 603 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 625 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 573 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 219 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 516 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 693 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 496 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 011 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 563 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 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 656 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 572 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 024 elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 558 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 581 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 480 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_mixedmode +Compile 001 elapsed time 644 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 262 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 211 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 583 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 616 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 227 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 568 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 021 elapsed time 217 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 674 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 589 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 524 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 566 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 600 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 527 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.845767 - 0: The maximum resident set size (KB) = 3129184 + 0: The total amount of wall time = 315.183618 + 0: The maximum resident set size (KB) = 3137576 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.885053 - 0: The maximum resident set size (KB) = 1721264 + 0: The total amount of wall time = 229.451630 + 0: The maximum resident set size (KB) = 1704984 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.722766 - 0: The maximum resident set size (KB) = 3168428 + 0: The total amount of wall time = 345.592919 + 0: The maximum resident set size (KB) = 3178448 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.480249 - 0: The maximum resident set size (KB) = 3036384 + 0: The total amount of wall time = 198.057921 + 0: The maximum resident set size (KB) = 3038128 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.880460 - 0: The maximum resident set size (KB) = 3182432 + 0: The total amount of wall time = 354.255660 + 0: The maximum resident set size (KB) = 3171588 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.493429 - 0: The maximum resident set size (KB) = 3059500 + 0: The total amount of wall time = 201.415772 + 0: The maximum resident set size (KB) = 3048104 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.206456 - 0: The maximum resident set size (KB) = 3508708 + 0: The total amount of wall time = 370.257514 + 0: The maximum resident set size (KB) = 3505532 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.210609 - 0: The maximum resident set size (KB) = 3154860 + 0: The total amount of wall time = 350.298672 + 0: The maximum resident set size (KB) = 3141668 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.531103 - 0: The maximum resident set size (KB) = 3014564 + 0: The total amount of wall time = 288.319734 + 0: The maximum resident set size (KB) = 2998240 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.661918 - 0: The maximum resident set size (KB) = 3181744 + 0: The total amount of wall time = 348.116770 + 0: The maximum resident set size (KB) = 3154672 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 582.103889 - 0: The maximum resident set size (KB) = 3246940 + 0: The total amount of wall time = 594.039399 + 0: The maximum resident set size (KB) = 3253488 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 388.929073 - 0: The maximum resident set size (KB) = 3144876 + 0: The total amount of wall time = 383.620048 + 0: The maximum resident set size (KB) = 3142300 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 712.878992 - 0: The maximum resident set size (KB) = 4062416 + 0: The total amount of wall time = 735.294895 + 0: The maximum resident set size (KB) = 4009620 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.544723 - 0: The maximum resident set size (KB) = 3954656 + 0: The total amount of wall time = 458.308375 + 0: The maximum resident set size (KB) = 4010128 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.828328 - 0: The maximum resident set size (KB) = 1710940 + 0: The total amount of wall time = 269.068385 + 0: The maximum resident set size (KB) = 1709312 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.079039 - 0: The maximum resident set size (KB) = 1762972 + 0: The total amount of wall time = 265.190367 + 0: The maximum resident set size (KB) = 1736904 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.635401 - 0: The maximum resident set size (KB) = 3229780 + 0: The total amount of wall time = 519.740757 + 0: The maximum resident set size (KB) = 3235040 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.385664 - 0: The maximum resident set size (KB) = 1733072 + 0: The total amount of wall time = 368.088314 + 0: The maximum resident set size (KB) = 1728088 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 275.161546 - 0: The maximum resident set size (KB) = 1716768 + 0: The total amount of wall time = 275.996213 + 0: The maximum resident set size (KB) = 1749016 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 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 = 576.795053 - 0: The maximum resident set size (KB) = 2796864 + 0: The total amount of wall time = 587.375773 + 0: The maximum resident set size (KB) = 2800592 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.939661 - 0: The maximum resident set size (KB) = 2803208 + 0: The total amount of wall time = 154.960683 + 0: The maximum resident set size (KB) = 2795980 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.324876 - 0: The maximum resident set size (KB) = 2228680 + 0: The total amount of wall time = 80.520531 + 0: The maximum resident set size (KB) = 2243272 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1490,33 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.842588 - 0: The maximum resident set size (KB) = 3158164 + 0: The total amount of wall time = 324.037872 + 0: The maximum resident set size (KB) = 3169136 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid -Checking test 024 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_flake +Checking test 024 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 189.314313 + 0: The maximum resident set size (KB) = 684680 + +Test 024 control_flake PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid +Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1524,29 +1542,29 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.680836 - 0: The maximum resident set size (KB) = 626232 + 0: The total amount of wall time = 131.640550 + 0: The maximum resident set size (KB) = 626472 -Test 024 control_CubedSphereGrid PASS +Test 025 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_parallel -Checking test 025 control_CubedSphereGrid_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid_parallel +Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.308982 - 0: The maximum resident set size (KB) = 623452 + 0: The total amount of wall time = 129.864225 + 0: The maximum resident set size (KB) = 628036 -Test 025 control_CubedSphereGrid_parallel PASS +Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_latlon -Checking test 026 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_latlon +Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1556,15 +1574,15 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.753068 - 0: The maximum resident set size (KB) = 628812 + 0: The total amount of wall time = 136.450335 + 0: The maximum resident set size (KB) = 626432 -Test 026 control_latlon PASS +Test 027 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel -Checking test 027 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wrtGauss_netcdf_parallel +Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1592,15 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.711069 - 0: The maximum resident set size (KB) = 628248 + 0: The total amount of wall time = 137.940196 + 0: The maximum resident set size (KB) = 626312 -Test 027 control_wrtGauss_netcdf_parallel PASS +Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c48 -Checking test 028 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c48 +Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1620,15 +1638,15 @@ Checking test 028 control_c48 results .... Comparing 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.811489 -0: The maximum resident set size (KB) = 822568 +0: The total amount of wall time = 368.168598 +0: The maximum resident set size (KB) = 808216 -Test 028 control_c48 PASS +Test 029 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c192 -Checking test 029 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c192 +Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1656,15 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.251915 - 0: The maximum resident set size (KB) = 762728 + 0: The total amount of wall time = 526.120028 + 0: The maximum resident set size (KB) = 764116 -Test 029 control_c192 PASS +Test 030 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384 -Checking test 030 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c384 +Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1674,15 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.803939 - 0: The maximum resident set size (KB) = 1260384 + 0: The total amount of wall time = 524.038564 + 0: The maximum resident set size (KB) = 1263656 -Test 030 control_c384 PASS +Test 031 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384gdas -Checking test 031 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c384gdas +Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1706,15 +1724,15 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.959745 - 0: The maximum resident set size (KB) = 1371616 + 0: The total amount of wall time = 457.624122 + 0: The maximum resident set size (KB) = 1374068 -Test 031 control_c384gdas PASS +Test 032 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy -Checking test 032 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy +Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1724,29 +1742,29 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.834032 - 0: The maximum resident set size (KB) = 636592 + 0: The total amount of wall time = 91.590453 + 0: The maximum resident set size (KB) = 635544 -Test 032 control_stochy PASS +Test 033 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_restart -Checking test 033 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy_restart +Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.443286 - 0: The maximum resident set size (KB) = 489676 + 0: The total amount of wall time = 49.168516 + 0: The maximum resident set size (KB) = 480800 -Test 033 control_stochy_restart PASS +Test 034 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp -Checking test 034 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_lndp +Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1756,15 +1774,15 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.306858 - 0: The maximum resident set size (KB) = 630596 + 0: The total amount of wall time = 83.658803 + 0: The maximum resident set size (KB) = 631112 -Test 034 control_lndp PASS +Test 035 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr4 -Checking test 035 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_iovr4 +Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,15 +1796,15 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.631196 - 0: The maximum resident set size (KB) = 631996 + 0: The total amount of wall time = 140.226148 + 0: The maximum resident set size (KB) = 626396 -Test 035 control_iovr4 PASS +Test 036 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr5 -Checking test 036 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_iovr5 +Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,15 +1818,15 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.055690 - 0: The maximum resident set size (KB) = 630856 + 0: The total amount of wall time = 136.225965 + 0: The maximum resident set size (KB) = 626276 -Test 036 control_iovr5 PASS +Test 037 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8 -Checking test 037 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8 +Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,15 +1872,15 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.680255 - 0: The maximum resident set size (KB) = 1589520 + 0: The total amount of wall time = 170.837047 + 0: The maximum resident set size (KB) = 1591312 -Test 037 control_p8 PASS +Test 038 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_p8 -Checking test 038 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_restart_p8 +Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1900,15 +1918,15 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.532858 - 0: The maximum resident set size (KB) = 861480 + 0: The total amount of wall time = 90.183683 + 0: The maximum resident set size (KB) = 865516 -Test 038 control_restart_p8 PASS +Test 039 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_qr_p8 -Checking test 039 control_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_qr_p8 +Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1954,15 +1972,15 @@ Checking test 039 control_qr_p8 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.719193 - 0: The maximum resident set size (KB) = 1597084 + 0: The total amount of wall time = 167.863620 + 0: The maximum resident set size (KB) = 1600688 -Test 039 control_qr_p8 PASS +Test 040 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_qr_p8 -Checking test 040 control_restart_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_restart_qr_p8 +Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2000,15 +2018,15 @@ Checking test 040 control_restart_qr_p8 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.670313 - 0: The maximum resident set size (KB) = 855404 + 0: The total amount of wall time = 93.514471 + 0: The maximum resident set size (KB) = 862568 -Test 040 control_restart_qr_p8 PASS +Test 041 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_decomp_p8 -Checking test 041 control_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_decomp_p8 +Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2050,15 +2068,15 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.847306 - 0: The maximum resident set size (KB) = 1579652 + 0: The total amount of wall time = 176.426503 + 0: The maximum resident set size (KB) = 1582132 -Test 041 control_decomp_p8 PASS +Test 042 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_2threads_p8 -Checking test 042 control_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_2threads_p8 +Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2100,15 +2118,15 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.543874 - 0: The maximum resident set size (KB) = 1674820 + 0: The total amount of wall time = 159.135755 + 0: The maximum resident set size (KB) = 1679788 -Test 042 control_2threads_p8 PASS +Test 043 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_lndp -Checking test 043 control_p8_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_lndp +Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,15 +2144,15 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.431372 - 0: The maximum resident set size (KB) = 1602056 + 0: The total amount of wall time = 318.228252 + 0: The maximum resident set size (KB) = 1599704 -Test 043 control_p8_lndp PASS +Test 044 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_rrtmgp -Checking test 044 control_p8_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2180,15 +2198,15 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.841525 - 0: The maximum resident set size (KB) = 1667828 + 0: The total amount of wall time = 228.704093 + 0: The maximum resident set size (KB) = 1668524 -Test 044 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_mynn -Checking test 045 control_p8_mynn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_mynn +Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2234,15 +2252,15 @@ Checking test 045 control_p8_mynn results .... Comparing 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.090905 - 0: The maximum resident set size (KB) = 1586108 + 0: The total amount of wall time = 176.800060 + 0: The maximum resident set size (KB) = 1579352 -Test 045 control_p8_mynn PASS +Test 046 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/merra2_thompson -Checking test 046 merra2_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/merra2_thompson +Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2288,15 +2306,15 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.815663 - 0: The maximum resident set size (KB) = 1597328 + 0: The total amount of wall time = 191.359710 + 0: The maximum resident set size (KB) = 1605316 -Test 046 merra2_thompson PASS +Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control -Checking test 047 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control +Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2306,29 +2324,29 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.130830 - 0: The maximum resident set size (KB) = 865512 + 0: The total amount of wall time = 299.052499 + 0: The maximum resident set size (KB) = 865112 -Test 047 regional_control PASS +Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart -Checking test 048 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_restart +Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.026495 - 0: The maximum resident set size (KB) = 860736 + 0: The total amount of wall time = 154.386061 + 0: The maximum resident set size (KB) = 861340 -Test 048 regional_restart PASS +Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_qr -Checking test 049 regional_control_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control_qr +Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2338,29 +2356,29 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.435789 - 0: The maximum resident set size (KB) = 867424 + 0: The total amount of wall time = 298.932127 + 0: The maximum resident set size (KB) = 867804 -Test 049 regional_control_qr PASS +Test 050 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart_qr -Checking test 050 regional_restart_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_restart_qr +Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.293518 - 0: The maximum resident set size (KB) = 863980 + 0: The total amount of wall time = 157.222442 + 0: The maximum resident set size (KB) = 859172 -Test 050 regional_restart_qr PASS +Test 051 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_decomp -Checking test 051 regional_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_decomp +Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2370,15 +2388,15 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.853424 - 0: The maximum resident set size (KB) = 863532 + 0: The total amount of wall time = 316.292250 + 0: The maximum resident set size (KB) = 863720 -Test 051 regional_decomp PASS +Test 052 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2threads -Checking test 052 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_2threads +Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,44 +2406,44 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.396503 - 0: The maximum resident set size (KB) = 847156 + 0: The total amount of wall time = 181.841676 + 0: The maximum resident set size (KB) = 841532 -Test 052 regional_2threads PASS +Test 053 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_noquilt -Checking test 053 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_noquilt +Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.418019 - 0: The maximum resident set size (KB) = 853672 + 0: The total amount of wall time = 327.831040 + 0: The maximum resident set size (KB) = 859448 -Test 053 regional_noquilt PASS +Test 054 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_netcdf_parallel -Checking test 054 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_netcdf_parallel +Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.545573 - 0: The maximum resident set size (KB) = 862004 + 0: The total amount of wall time = 294.442566 + 0: The maximum resident set size (KB) = 864764 -Test 054 regional_netcdf_parallel PASS +Test 055 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2dwrtdecomp -Checking test 055 regional_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_2dwrtdecomp +Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2435,15 +2453,15 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.919046 - 0: The maximum resident set size (KB) = 864244 + 0: The total amount of wall time = 300.282823 + 0: The maximum resident set size (KB) = 871140 -Test 055 regional_2dwrtdecomp PASS +Test 056 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_wofs -Checking test 056 regional_wofs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_wofs +Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2471,15 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 379.936380 - 0: The maximum resident set size (KB) = 625532 + 0: The total amount of wall time = 377.751497 + 0: The maximum resident set size (KB) = 627712 -Test 056 regional_wofs PASS +Test 057 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control -Checking test 057 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control +Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2507,15 +2525,15 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.236767 - 0: The maximum resident set size (KB) = 1054504 + 0: The total amount of wall time = 462.708787 + 0: The maximum resident set size (KB) = 1052276 -Test 057 rap_control PASS +Test 058 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_spp_sppt_shum_skeb +Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2525,15 +2543,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.196168 - 0: The maximum resident set size (KB) = 1182864 + 0: The total amount of wall time = 235.447277 + 0: The maximum resident set size (KB) = 1180456 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_decomp -Checking test 059 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_decomp +Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2579,15 +2597,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.025563 - 0: The maximum resident set size (KB) = 999488 + 0: The total amount of wall time = 481.188620 + 0: The maximum resident set size (KB) = 1003160 -Test 059 rap_decomp PASS +Test 060 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads -Checking test 060 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_2threads +Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2633,15 +2651,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.379803 - 0: The maximum resident set size (KB) = 1131304 + 0: The total amount of wall time = 434.336228 + 0: The maximum resident set size (KB) = 1126260 -Test 060 rap_2threads PASS +Test 061 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart -Checking test 061 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_restart +Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2679,15 +2697,15 @@ Checking test 061 rap_restart results .... Comparing 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.648211 - 0: The maximum resident set size (KB) = 962296 + 0: The total amount of wall time = 236.071406 + 0: The maximum resident set size (KB) = 965340 -Test 061 rap_restart PASS +Test 062 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff +Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2733,15 +2751,15 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.229518 - 0: The maximum resident set size (KB) = 1038372 + 0: The total amount of wall time = 462.363223 + 0: The maximum resident set size (KB) = 1054892 -Test 062 rap_sfcdiff PASS +Test 063 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_decomp +Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2787,15 +2805,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.165978 - 0: The maximum resident set size (KB) = 1000240 + 0: The total amount of wall time = 484.210346 + 0: The maximum resident set size (KB) = 987092 -Test 063 rap_sfcdiff_decomp PASS +Test 064 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_restart +Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2833,15 +2851,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.473494 - 0: The maximum resident set size (KB) = 985732 + 0: The total amount of wall time = 341.491706 + 0: The maximum resident set size (KB) = 984580 -Test 064 rap_sfcdiff_restart PASS +Test 065 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control -Checking test 065 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control +Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,48 +2872,48 @@ Checking test 065 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 442.898679 - 0: The maximum resident set size (KB) = 1051840 - -Test 065 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 432.130202 + 0: The maximum resident set size (KB) = 1051188 + +Test 066 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_decomp +Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,48 +2926,48 @@ Checking test 066 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 465.947576 - 0: The maximum resident set size (KB) = 998636 - -Test 066 hrrr_control_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 448.726603 + 0: The maximum resident set size (KB) = 992580 + +Test 067 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_2threads +Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2962,94 +2980,62 @@ Checking test 067 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 418.819054 - 0: The maximum resident set size (KB) = 1138980 - -Test 067 hrrr_control_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 399.886318 + 0: The maximum resident set size (KB) = 1075320 + +Test 068 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_restart +Checking test 069 hrrr_control_restart 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 - 0: The total amount of wall time = 329.386755 - 0: The maximum resident set size (KB) = 983252 + 0: The total amount of wall time = 318.569423 + 0: The maximum resident set size (KB) = 983352 -Test 068 hrrr_control_restart PASS +Test 069 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1beta +Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3095,15 +3081,15 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.885537 - 0: The maximum resident set size (KB) = 1038784 + 0: The total amount of wall time = 460.259390 + 0: The maximum resident set size (KB) = 1055648 -Test 069 rrfs_v1beta PASS +Test 070 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1nssl +Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3117,15 +3103,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.161206 - 0: The maximum resident set size (KB) = 690708 + 0: The total amount of wall time = 538.762571 + 0: The maximum resident set size (KB) = 693484 -Test 070 rrfs_v1nssl PASS +Test 071 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1nssl_nohailnoccn +Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3139,15 +3125,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.267471 - 0: The maximum resident set size (KB) = 753488 + 0: The total amount of wall time = 524.564368 + 0: The maximum resident set size (KB) = 752904 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm -Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm +Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3155,15 +3141,15 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.706119 - 0: The maximum resident set size (KB) = 1028268 + 0: The total amount of wall time = 149.825040 + 0: The maximum resident set size (KB) = 1024276 -Test 072 rrfs_smoke_conus13km_hrrr_warm PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3171,15 +3157,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 88.963342 - 0: The maximum resident set size (KB) = 942660 + 0: The total amount of wall time = 92.187926 + 0: The maximum resident set size (KB) = 936676 -Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm -Checking test 074 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm +Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3187,15 +3173,15 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.305485 - 0: The maximum resident set size (KB) = 947144 + 0: The total amount of wall time = 131.780477 + 0: The maximum resident set size (KB) = 990572 -Test 074 rrfs_conus13km_hrrr_warm PASS +Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_radar_tten_warm -Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_radar_tten_warm +Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3203,27 +3189,27 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.053916 - 0: The maximum resident set size (KB) = 1037472 + 0: The total amount of wall time = 149.429404 + 0: The maximum resident set size (KB) = 1039356 -Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.517204 - 0: The maximum resident set size (KB) = 929536 + 0: The total amount of wall time = 71.416792 + 0: The maximum resident set size (KB) = 969692 -Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg -Checking test 077 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmg +Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3233,15 +3219,15 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.970335 - 0: The maximum resident set size (KB) = 724540 + 0: The total amount of wall time = 344.586889 + 0: The maximum resident set size (KB) = 723780 -Test 077 control_csawmg PASS +Test 078 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt -Checking test 078 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmgt +Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3251,15 +3237,15 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.681849 - 0: The maximum resident set size (KB) = 727608 + 0: The total amount of wall time = 340.288775 + 0: The maximum resident set size (KB) = 727876 -Test 078 control_csawmgt PASS +Test 079 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras -Checking test 079 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_ras +Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3269,27 +3255,27 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.517807 - 0: The maximum resident set size (KB) = 722936 + 0: The total amount of wall time = 184.841316 + 0: The maximum resident set size (KB) = 724532 -Test 079 control_ras PASS +Test 080 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam -Checking test 080 control_wam results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wam +Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.141245 - 0: The maximum resident set size (KB) = 631808 + 0: The total amount of wall time = 113.241081 + 0: The maximum resident set size (KB) = 642320 -Test 080 control_wam PASS +Test 081 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_faster -Checking test 081 control_p8_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_faster +Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3335,15 +3321,15 @@ Checking test 081 control_p8_faster results .... Comparing 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.497659 - 0: The maximum resident set size (KB) = 1592824 + 0: The total amount of wall time = 154.680591 + 0: The maximum resident set size (KB) = 1594544 -Test 081 control_p8_faster PASS +Test 082 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_faster -Checking test 082 regional_control_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control_faster +Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3353,57 +3339,57 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.046891 - 0: The maximum resident set size (KB) = 872680 + 0: The total amount of wall time = 275.730386 + 0: The maximum resident set size (KB) = 866444 -Test 082 regional_control_faster PASS +Test 083 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 830.878579 - 0: The maximum resident set size (KB) = 1019476 + 0: The total amount of wall time = 840.078425 + 0: The maximum resident set size (KB) = 1055204 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.687845 - 0: The maximum resident set size (KB) = 966960 + 0: The total amount of wall time = 473.099800 + 0: The maximum resident set size (KB) = 975324 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_debug -Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm_debug +Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.552028 - 0: The maximum resident set size (KB) = 957460 + 0: The total amount of wall time = 751.351361 + 0: The maximum resident set size (KB) = 1014392 -Test 085 rrfs_conus13km_hrrr_warm_debug PASS +Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_debug -Checking test 086 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid_debug +Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3429,335 +3415,349 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 144.480896 - 0: The maximum resident set size (KB) = 788760 + 0: The total amount of wall time = 147.745344 + 0: The maximum resident set size (KB) = 791108 -Test 086 control_CubedSphereGrid_debug PASS +Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel_debug -Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wrtGauss_netcdf_parallel_debug +Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.809119 - 0: The maximum resident set size (KB) = 790576 + 0: The total amount of wall time = 147.383087 + 0: The maximum resident set size (KB) = 787604 -Test 087 control_wrtGauss_netcdf_parallel_debug PASS +Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_debug -Checking test 088 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy_debug +Checking test 089 control_stochy_debug 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.012943 - 0: The maximum resident set size (KB) = 797780 + 0: The total amount of wall time = 166.129663 + 0: The maximum resident set size (KB) = 796512 -Test 088 control_stochy_debug PASS +Test 089 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp_debug -Checking test 089 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_lndp_debug +Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.668339 - 0: The maximum resident set size (KB) = 793716 + 0: The total amount of wall time = 146.156263 + 0: The maximum resident set size (KB) = 793284 -Test 089 control_lndp_debug PASS +Test 090 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg_debug -Checking test 090 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmg_debug +Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.858928 - 0: The maximum resident set size (KB) = 843500 + 0: The total amount of wall time = 228.587433 + 0: The maximum resident set size (KB) = 840588 -Test 090 control_csawmg_debug PASS +Test 091 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt_debug -Checking test 091 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmgt_debug +Checking test 092 control_csawmgt_debug 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.361157 - 0: The maximum resident set size (KB) = 838300 + 0: The total amount of wall time = 223.122845 + 0: The maximum resident set size (KB) = 834840 -Test 091 control_csawmgt_debug PASS +Test 092 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras_debug -Checking test 092 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_ras_debug +Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.663483 - 0: The maximum resident set size (KB) = 802636 + 0: The total amount of wall time = 149.239354 + 0: The maximum resident set size (KB) = 800920 -Test 092 control_ras_debug PASS +Test 093 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_diag_debug -Checking test 093 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_diag_debug +Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.678206 - 0: The maximum resident set size (KB) = 850308 + 0: The total amount of wall time = 157.313716 + 0: The maximum resident set size (KB) = 852944 -Test 093 control_diag_debug PASS +Test 094 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_debug_p8 -Checking test 094 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_debug_p8 +Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.583627 - 0: The maximum resident set size (KB) = 1615572 + 0: The total amount of wall time = 167.045297 + 0: The maximum resident set size (KB) = 1618560 -Test 094 control_debug_p8 PASS +Test 095 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_debug -Checking test 095 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_debug +Checking test 096 regional_debug 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.547622 - 0: The maximum resident set size (KB) = 884460 + 0: The total amount of wall time = 996.761045 + 0: The maximum resident set size (KB) = 879080 -Test 095 regional_debug PASS +Test 096 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug -Checking test 096 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_debug +Checking test 097 rap_control_debug 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.754605 - 0: The maximum resident set size (KB) = 1174144 + 0: The total amount of wall time = 277.482534 + 0: The maximum resident set size (KB) = 1163116 -Test 096 rap_control_debug PASS +Test 097 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug -Checking test 097 hrrr_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_debug +Checking test 098 hrrr_control_debug 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.753968 - 0: The maximum resident set size (KB) = 1164252 + 0: The total amount of wall time = 267.028086 + 0: The maximum resident set size (KB) = 1163324 -Test 097 hrrr_control_debug PASS +Test 098 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_drag_suite_debug -Checking test 098 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_unified_drag_suite_debug +Checking test 099 rap_unified_drag_suite_debug 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.010235 - 0: The maximum resident set size (KB) = 1165596 + 0: The total amount of wall time = 275.637171 + 0: The maximum resident set size (KB) = 1166908 -Test 098 rap_unified_drag_suite_debug PASS +Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_diag_debug -Checking test 099 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_diag_debug +Checking test 100 rap_diag_debug 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.852411 - 0: The maximum resident set size (KB) = 1251032 + 0: The total amount of wall time = 289.463384 + 0: The maximum resident set size (KB) = 1246024 -Test 099 rap_diag_debug PASS +Test 100 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_cires_ugwp_debug -Checking test 100 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_cires_ugwp_debug +Checking test 101 rap_cires_ugwp_debug 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.675809 - 0: The maximum resident set size (KB) = 1171972 + 0: The total amount of wall time = 281.308504 + 0: The maximum resident set size (KB) = 1163600 -Test 100 rap_cires_ugwp_debug PASS +Test 101 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_ugwp_debug -Checking test 101 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_unified_ugwp_debug +Checking test 102 rap_unified_ugwp_debug 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.955627 - 0: The maximum resident set size (KB) = 1171204 + 0: The total amount of wall time = 275.916348 + 0: The maximum resident set size (KB) = 1164888 -Test 101 rap_unified_ugwp_debug PASS +Test 102 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_lndp_debug -Checking test 102 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_lndp_debug +Checking test 103 rap_lndp_debug 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.619395 - 0: The maximum resident set size (KB) = 1171592 + 0: The total amount of wall time = 276.631823 + 0: The maximum resident set size (KB) = 1170544 -Test 102 rap_lndp_debug PASS +Test 103 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_flake_debug -Checking test 103 rap_flake_debug 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.007058 - 0: The maximum resident set size (KB) = 1166604 - -Test 103 rap_flake_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug 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.649000 - 0: The maximum resident set size (KB) = 1170824 + 0: The total amount of wall time = 276.828171 + 0: The maximum resident set size (KB) = 1163752 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_noah_debug Checking test 105 rap_noah_debug 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.892200 - 0: The maximum resident set size (KB) = 1165860 + 0: The total amount of wall time = 277.208216 + 0: The maximum resident set size (KB) = 1167268 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug 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.735326 - 0: The maximum resident set size (KB) = 1171156 + 0: The total amount of wall time = 272.646402 + 0: The maximum resident set size (KB) = 1166996 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 444.977429 - 0: The maximum resident set size (KB) = 1168224 + 0: The total amount of wall time = 447.682267 + 0: The maximum resident set size (KB) = 1164088 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug 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.188909 - 0: The maximum resident set size (KB) = 1164980 + 0: The total amount of wall time = 271.611679 + 0: The maximum resident set size (KB) = 1155376 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam_debug -Checking test 109 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_clm_lake_debug +Checking test 109 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 334.996405 + 0: The maximum resident set size (KB) = 1171012 + +Test 109 rap_clm_lake_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_flake_debug +Checking test 110 rap_flake_debug 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.630306 + 0: The maximum resident set size (KB) = 1164480 + +Test 110 rap_flake_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wam_debug +Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 271.030404 - 0: The maximum resident set size (KB) = 526028 + 0: The total amount of wall time = 279.416584 + 0: The maximum resident set size (KB) = 519984 -Test 109 control_wam_debug PASS +Test 111 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +3767,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 216.406266 - 0: The maximum resident set size (KB) = 1073684 + 0: The total amount of wall time = 223.885694 + 0: The maximum resident set size (KB) = 1064456 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn32_phy32 -Checking test 111 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn32_phy32 +Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +3821,15 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.353700 - 0: The maximum resident set size (KB) = 1009100 + 0: The total amount of wall time = 386.579380 + 0: The maximum resident set size (KB) = 992264 -Test 111 rap_control_dyn32_phy32 PASS +Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_dyn32_phy32 -Checking test 112 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_dyn32_phy32 +Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3842,48 +3842,48 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 197.950261 - 0: The maximum resident set size (KB) = 952884 - -Test 112 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads_dyn32_phy32 -Checking test 113 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 193.240896 + 0: The maximum resident set size (KB) = 950040 + +Test 114 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_2threads_dyn32_phy32 +Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +3929,15 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.650138 - 0: The maximum resident set size (KB) = 1025920 + 0: The total amount of wall time = 371.312069 + 0: The maximum resident set size (KB) = 1018388 -Test 113 rap_2threads_dyn32_phy32 PASS +Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads_dyn32_phy32 -Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_2threads_dyn32_phy32 +Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3950,48 +3950,48 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 186.947731 - 0: The maximum resident set size (KB) = 1004392 - -Test 114 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp_dyn32_phy32 -Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 176.885596 + 0: The maximum resident set size (KB) = 921740 + +Test 116 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_decomp_dyn32_phy32 +Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4004,48 +4004,48 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 208.407845 - 0: The maximum resident set size (KB) = 902816 - -Test 115 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart_dyn32_phy32 -Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 201.785846 + 0: The maximum resident set size (KB) = 889692 + +Test 117 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_restart_dyn32_phy32 +Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,61 +4083,29 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.072889 - 0: The maximum resident set size (KB) = 941076 + 0: The total amount of wall time = 285.311360 + 0: The maximum resident set size (KB) = 945132 -Test 116 rap_restart_dyn32_phy32 PASS +Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart_dyn32_phy32 -Checking test 117 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_restart_dyn32_phy32 +Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 102.184101 - 0: The maximum resident set size (KB) = 862812 + 0: The total amount of wall time = 100.088442 + 0: The maximum resident set size (KB) = 853832 -Test 117 hrrr_control_restart_dyn32_phy32 PASS +Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32 -Checking test 118 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn64_phy32 +Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4183,82 +4151,82 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.578370 - 0: The maximum resident set size (KB) = 967532 + 0: The total amount of wall time = 249.277923 + 0: The maximum resident set size (KB) = 933172 -Test 118 rap_control_dyn64_phy32 PASS +Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug_dyn32_phy32 -Checking test 119 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_debug_dyn32_phy32 +Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.501640 - 0: The maximum resident set size (KB) = 1053432 + 0: The total amount of wall time = 271.077134 + 0: The maximum resident set size (KB) = 1063140 -Test 119 rap_control_debug_dyn32_phy32 PASS +Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug_dyn32_phy32 -Checking test 120 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_debug_dyn32_phy32 +Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.109494 - 0: The maximum resident set size (KB) = 1052128 + 0: The total amount of wall time = 264.013748 + 0: The maximum resident set size (KB) = 1052988 -Test 120 hrrr_control_debug_dyn32_phy32 PASS +Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32_debug -Checking test 121 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn64_phy32_debug +Checking test 123 rap_control_dyn64_phy32_debug 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.013436 - 0: The maximum resident set size (KB) = 1096724 + 0: The total amount of wall time = 271.228853 + 0: The maximum resident set size (KB) = 1092776 -Test 121 rap_control_dyn64_phy32_debug PASS +Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm -Checking test 122 hafs_regional_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm +Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 241.110790 - 0: The maximum resident set size (KB) = 1043160 + 0: The total amount of wall time = 239.581316 + 0: The maximum resident set size (KB) = 1044108 -Test 122 hafs_regional_atm PASS +Test 124 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_thompson_gfdlsf -Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_thompson_gfdlsf +Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.118887 - 0: The maximum resident set size (KB) = 1399648 + 0: The total amount of wall time = 353.702716 + 0: The maximum resident set size (KB) = 1400416 -Test 123 hafs_regional_atm_thompson_gfdlsf PASS +Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn -Checking test 124 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_ocn +Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4266,15 +4234,15 @@ Checking test 124 hafs_regional_atm_ocn 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 = 391.374709 - 0: The maximum resident set size (KB) = 1221612 + 0: The total amount of wall time = 386.047452 + 0: The maximum resident set size (KB) = 1211768 -Test 124 hafs_regional_atm_ocn PASS +Test 126 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_wav -Checking test 125 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_wav +Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4282,15 +4250,15 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 745.023783 - 0: The maximum resident set size (KB) = 1247500 + 0: The total amount of wall time = 742.583049 + 0: The maximum resident set size (KB) = 1247344 -Test 125 hafs_regional_atm_wav PASS +Test 127 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn_wav -Checking test 126 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_ocn_wav +Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4300,29 +4268,29 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 841.290650 - 0: The maximum resident set size (KB) = 1259688 + 0: The total amount of wall time = 846.225602 + 0: The maximum resident set size (KB) = 1264956 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_1nest_atm -Checking test 127 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_1nest_atm +Checking test 129 hafs_regional_1nest_atm 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 = 318.079058 - 0: The maximum resident set size (KB) = 504332 + 0: The total amount of wall time = 322.933548 + 0: The maximum resident set size (KB) = 499412 -Test 127 hafs_regional_1nest_atm PASS +Test 129 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_telescopic_2nests_atm -Checking test 128 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_telescopic_2nests_atm +Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4330,29 +4298,29 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 363.724567 - 0: The maximum resident set size (KB) = 513708 + 0: The total amount of wall time = 368.772058 + 0: The maximum resident set size (KB) = 511080 -Test 128 hafs_regional_telescopic_2nests_atm PASS +Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_1nest_atm -Checking test 129 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_1nest_atm +Checking test 131 hafs_global_1nest_atm 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 = 148.081087 - 0: The maximum resident set size (KB) = 350400 + 0: The total amount of wall time = 147.881652 + 0: The maximum resident set size (KB) = 348084 -Test 129 hafs_global_1nest_atm PASS +Test 131 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_multiple_4nests_atm -Checking test 130 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_multiple_4nests_atm +Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4369,15 +4337,15 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 411.217716 - 0: The maximum resident set size (KB) = 422552 + 0: The total amount of wall time = 415.990435 + 0: The maximum resident set size (KB) = 448332 -Test 130 hafs_global_multiple_4nests_atm PASS +Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_specified_moving_1nest_atm -Checking test 131 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_specified_moving_1nest_atm +Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4385,29 +4353,29 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.418022 - 0: The maximum resident set size (KB) = 520736 + 0: The total amount of wall time = 206.222910 + 0: The maximum resident set size (KB) = 514636 -Test 131 hafs_regional_specified_moving_1nest_atm PASS +Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm -Checking test 132 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm +Checking test 134 hafs_regional_storm_following_1nest_atm 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 = 189.602653 - 0: The maximum resident set size (KB) = 519200 + 0: The total amount of wall time = 193.692543 + 0: The maximum resident set size (KB) = 519644 -Test 132 hafs_regional_storm_following_1nest_atm PASS +Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4415,43 +4383,43 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 222.832744 - 0: The maximum resident set size (KB) = 562000 + 0: The total amount of wall time = 224.827045 + 0: The maximum resident set size (KB) = 563056 -Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_storm_following_1nest_atm -Checking test 134 hafs_global_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_storm_following_1nest_atm +Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.869879 - 0: The maximum resident set size (KB) = 368308 + 0: The total amount of wall time = 59.129524 + 0: The maximum resident set size (KB) = 371752 -Test 134 hafs_global_storm_following_1nest_atm PASS +Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 722.447572 - 0: The maximum resident set size (KB) = 578176 + 0: The total amount of wall time = 716.877806 + 0: The maximum resident set size (KB) = 580056 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4461,162 +4429,162 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 483.535901 - 0: The maximum resident set size (KB) = 620020 + 0: The total amount of wall time = 481.579140 + 0: The maximum resident set size (KB) = 624228 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn -Checking test 137 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_docn +Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.137667 - 0: The maximum resident set size (KB) = 1225568 + 0: The total amount of wall time = 356.774765 + 0: The maximum resident set size (KB) = 1230480 -Test 137 hafs_regional_docn PASS +Test 139 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn_oisst -Checking test 138 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_docn_oisst +Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.823961 - 0: The maximum resident set size (KB) = 1212636 + 0: The total amount of wall time = 360.739062 + 0: The maximum resident set size (KB) = 1213380 -Test 138 hafs_regional_docn_oisst PASS +Test 140 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_datm_cdeps -Checking test 139 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_datm_cdeps +Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 954.011029 - 0: The maximum resident set size (KB) = 1041504 + 0: The total amount of wall time = 956.806767 + 0: The maximum resident set size (KB) = 1032756 -Test 139 hafs_regional_datm_cdeps PASS +Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr -Checking test 140 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_cfsr +Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.245264 - 0: The maximum resident set size (KB) = 1070292 + 0: The total amount of wall time = 157.450695 + 0: The maximum resident set size (KB) = 1060548 -Test 140 datm_cdeps_control_cfsr PASS +Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_restart_cfsr -Checking test 141 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_restart_cfsr +Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.113047 - 0: The maximum resident set size (KB) = 1010236 + 0: The total amount of wall time = 91.114685 + 0: The maximum resident set size (KB) = 1012928 -Test 141 datm_cdeps_restart_cfsr PASS +Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_gefs -Checking test 142 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_gefs +Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.651808 - 0: The maximum resident set size (KB) = 961348 + 0: The total amount of wall time = 152.826055 + 0: The maximum resident set size (KB) = 955336 -Test 142 datm_cdeps_control_gefs PASS +Test 144 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_iau_gefs -Checking test 143 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_iau_gefs +Checking test 145 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.982446 - 0: The maximum resident set size (KB) = 959748 + 0: The total amount of wall time = 149.662893 + 0: The maximum resident set size (KB) = 967912 -Test 143 datm_cdeps_iau_gefs PASS +Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_stochy_gefs -Checking test 144 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_stochy_gefs +Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.464637 - 0: The maximum resident set size (KB) = 960892 + 0: The total amount of wall time = 151.189126 + 0: The maximum resident set size (KB) = 968504 -Test 144 datm_cdeps_stochy_gefs PASS +Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_ciceC_cfsr -Checking test 145 datm_cdeps_ciceC_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_ciceC_cfsr +Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.435664 - 0: The maximum resident set size (KB) = 1067460 + 0: The total amount of wall time = 148.977896 + 0: The maximum resident set size (KB) = 1057728 -Test 145 datm_cdeps_ciceC_cfsr PASS +Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_cfsr -Checking test 146 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_bulk_cfsr +Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.318899 - 0: The maximum resident set size (KB) = 1054336 + 0: The total amount of wall time = 151.728915 + 0: The maximum resident set size (KB) = 1051604 -Test 146 datm_cdeps_bulk_cfsr PASS +Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_gefs -Checking test 147 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_bulk_gefs +Checking test 149 datm_cdeps_bulk_gefs 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.977234 - 0: The maximum resident set size (KB) = 961736 + 0: The total amount of wall time = 150.705574 + 0: The maximum resident set size (KB) = 956164 -Test 147 datm_cdeps_bulk_gefs PASS +Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_cfsr -Checking test 148 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_mx025_cfsr +Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4624,15 +4592,15 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 419.501905 - 0: The maximum resident set size (KB) = 884920 + 0: The total amount of wall time = 416.348860 + 0: The maximum resident set size (KB) = 880104 -Test 148 datm_cdeps_mx025_cfsr PASS +Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_gefs -Checking test 149 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_mx025_gefs +Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4640,78 +4608,78 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 429.839144 - 0: The maximum resident set size (KB) = 936652 + 0: The total amount of wall time = 408.041583 + 0: The maximum resident set size (KB) = 922612 -Test 149 datm_cdeps_mx025_gefs PASS +Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_multiple_files_cfsr -Checking test 150 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_multiple_files_cfsr +Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.821041 - 0: The maximum resident set size (KB) = 1062268 + 0: The total amount of wall time = 158.920295 + 0: The maximum resident set size (KB) = 1057988 -Test 150 datm_cdeps_multiple_files_cfsr PASS +Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_3072x1536_cfsr -Checking test 151 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_3072x1536_cfsr +Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 221.703392 - 0: The maximum resident set size (KB) = 2362296 + 0: The total amount of wall time = 221.072229 + 0: The maximum resident set size (KB) = 2367840 -Test 151 datm_cdeps_3072x1536_cfsr PASS +Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_gfs -Checking test 152 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_gfs +Checking test 154 datm_cdeps_gfs 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 = 222.344843 - 0: The maximum resident set size (KB) = 2360852 + 0: The total amount of wall time = 220.659313 + 0: The maximum resident set size (KB) = 2362488 -Test 152 datm_cdeps_gfs PASS +Test 154 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_debug_cfsr -Checking test 153 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_debug_cfsr +Checking test 155 datm_cdeps_debug_cfsr 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.256004 - 0: The maximum resident set size (KB) = 993768 + 0: The total amount of wall time = 359.627955 + 0: The maximum resident set size (KB) = 978520 -Test 153 datm_cdeps_debug_cfsr PASS +Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr_faster -Checking test 154 datm_cdeps_control_cfsr_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_cfsr_faster +Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.167901 - 0: The maximum resident set size (KB) = 1069080 + 0: The total amount of wall time = 153.739606 + 0: The maximum resident set size (KB) = 1060044 -Test 154 datm_cdeps_control_cfsr_faster PASS +Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3 -Checking test 155 datm_cdeps_lnd_gswp3 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_lnd_gswp3 +Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4719,15 +4687,15 @@ Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.859700 - 0: The maximum resident set size (KB) = 265580 + 0: The total amount of wall time = 7.377264 + 0: The maximum resident set size (KB) = 263692 -Test 155 datm_cdeps_lnd_gswp3 PASS +Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3_rst -Checking test 156 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_lnd_gswp3_rst +Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4735,15 +4703,15 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.597385 - 0: The maximum resident set size (KB) = 265384 + 0: The total amount of wall time = 12.163117 + 0: The maximum resident set size (KB) = 254532 -Test 156 datm_cdeps_lnd_gswp3_rst PASS +Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_atmlnd_sbs -Checking test 157 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_atmlnd_sbs +Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4827,15 +4795,15 @@ Checking test 157 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 207.654375 - 0: The maximum resident set size (KB) = 1607796 + 0: The total amount of wall time = 209.003053 + 0: The maximum resident set size (KB) = 1604188 -Test 157 control_p8_atmlnd_sbs PASS +Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmwav_control_noaero_p8 -Checking test 158 atmwav_control_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmwav_control_noaero_p8 +Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4845,15 @@ Checking test 158 atmwav_control_noaero_p8 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.160044 - 0: The maximum resident set size (KB) = 1629748 + 0: The total amount of wall time = 98.677716 + 0: The maximum resident set size (KB) = 1627084 -Test 158 atmwav_control_noaero_p8 PASS +Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_atmwav -Checking test 159 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_atmwav +Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4928,15 +4896,15 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.575261 - 0: The maximum resident set size (KB) = 662320 + 0: The total amount of wall time = 88.452743 + 0: The maximum resident set size (KB) = 658800 -Test 159 control_atmwav PASS +Test 161 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8 -Checking test 160 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8 +Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4979,15 +4947,15 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.038896 - 0: The maximum resident set size (KB) = 2966456 + 0: The total amount of wall time = 235.341280 + 0: The maximum resident set size (KB) = 2958492 -Test 160 atmaero_control_p8 PASS +Test 162 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad -Checking test 161 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8_rad +Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5030,15 +4998,15 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.920746 - 0: The maximum resident set size (KB) = 3049556 + 0: The total amount of wall time = 290.300735 + 0: The maximum resident set size (KB) = 3032992 -Test 161 atmaero_control_p8_rad PASS +Test 163 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad_micro -Checking test 162 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8_rad_micro +Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5081,15 +5049,15 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing 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.236572 - 0: The maximum resident set size (KB) = 3048420 + 0: The total amount of wall time = 291.012058 + 0: The maximum resident set size (KB) = 3047288 -Test 162 atmaero_control_p8_rad_micro PASS +Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq -Checking test 163 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq +Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,15 +5072,15 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 644.020082 - 0: The maximum resident set size (KB) = 1449276 + 0: The total amount of wall time = 648.282718 + 0: The maximum resident set size (KB) = 1471896 -Test 163 regional_atmaq PASS +Test 165 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_debug -Checking test 164 regional_atmaq_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq_debug +Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5125,15 +5093,15 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1184.873163 - 0: The maximum resident set size (KB) = 1222468 + 0: The total amount of wall time = 1190.509924 + 0: The maximum resident set size (KB) = 1390732 -Test 164 regional_atmaq_debug PASS +Test 166 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_faster -Checking test 165 regional_atmaq_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq_faster +Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5148,12 +5116,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 556.870228 - 0: The maximum resident set size (KB) = 1413828 + 0: The total amount of wall time = 568.949091 + 0: The maximum resident set size (KB) = 1392832 -Test 165 regional_atmaq_faster PASS +Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 22 01:30:42 UTC 2023 -Elapsed time: 05h:42m:18s. Have a nice day! +Wed Apr 26 01:59:43 UTC 2023 +Elapsed time: 03h:46m:26s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 10e339b92a..795f312ed5 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,44 +1,46 @@ -Fri Apr 21 19:23:58 UTC 2023 +Tue Apr 25 22:16:41 UTC 2023 Start Regression test -Compile 001 elapsed time 1992 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2067 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 280 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1698 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 007 elapsed time 1664 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3335 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1717 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 011 elapsed time 1664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 279 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1715 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 021 elapsed time 286 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2119 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1683 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 024 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 309 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1735 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1696 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1705 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1638 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1662 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 256 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... +Compile 001 elapsed time 2075 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2003 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1941 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 475 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1839 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 007 elapsed time 1953 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 389 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 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 016 elapsed time 1722 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1813 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 613 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 2472 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 021 elapsed time 282 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2387 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1645 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 024 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 607 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 499 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 2028 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1777 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1730 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1862 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 2000 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Test 001 cpld_control_p8_mixedmode FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -63,7 +65,6 @@ Checking test 001 cpld_control_p8_mixedmode results .... 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 @@ -102,15 +103,15 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.630985 - 0: The maximum resident set size (KB) = 1748088 + 0: The total amount of wall time = 541.779936 + 0: The maximum resident set size (KB) = 1613340 -Test 001 cpld_control_p8_mixedmode PASS +Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -135,6 +136,7 @@ Checking test 002 cpld_control_gfsv17 results .... 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 @@ -173,27 +175,15 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.183592 - 0: The maximum resident set size (KB) = 1644520 + 0: The total amount of wall time = 834.536963 + 0: The maximum resident set size (KB) = 1795604 -Test 002 cpld_control_gfsv17 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8 -Checking test 003 cpld_control_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -245,15 +235,19 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.318913 - 0: The maximum resident set size (KB) = 1798424 + 0: The total amount of wall time = 797.912968 + 0: The maximum resident set size (KB) = 1491488 -Test 003 cpld_control_p8 PASS +Test 004 cpld_restart_p8 PASS +Test 005 cpld_control_qr_p8 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... +Test 007 cpld_2threads_p8 FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -305,15 +299,19 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 291.252508 - 0: The maximum resident set size (KB) = 1484524 + 0: The total amount of wall time = 1769.613946 + 0: The maximum resident set size (KB) = 1771260 -Test 004 cpld_restart_p8 PASS +Test 008 cpld_decomp_p8 PASS Tries: 2 + +Test 009 cpld_mpi_p8 FAIL +Test 010 cpld_control_ciceC_p8 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_qr_p8 -Checking test 005 cpld_control_qr_p8 results .... + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -338,247 +336,6 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 491.324838 - 0: The maximum resident set size (KB) = 1796404 - -Test 005 cpld_control_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_qr_p8 -Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 284.363778 - 0: The maximum resident set size (KB) = 1501980 - -Test 006 cpld_restart_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_2threads_p8 -Checking test 007 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 521.611812 - 0: The maximum resident set size (KB) = 2004188 - -Test 007 cpld_2threads_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 492.194939 - 0: The maximum resident set size (KB) = 1766724 - -Test 008 cpld_decomp_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_mpi_p8 -Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -617,158 +374,15 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.448168 - 0: The maximum resident set size (KB) = 1750292 + 0: The total amount of wall time = 789.693138 + 0: The maximum resident set size (KB) = 1634816 -Test 009 cpld_mpi_p8 PASS +Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_ciceC_p8 -Checking test 010 cpld_control_ciceC_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 494.573432 - 0: The maximum resident set size (KB) = 1808072 - -Test 010 cpld_control_ciceC_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8 -Checking test 011 cpld_control_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 368.322322 - 0: The maximum resident set size (KB) = 1620016 - -Test 011 cpld_control_noaero_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_nowave_noaero_p8 -Checking test 012 cpld_control_nowave_noaero_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -829,14 +443,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 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 = 371.515692 - 0: The maximum resident set size (KB) = 1670540 + 0: The total amount of wall time = 555.211943 + 0: The maximum resident set size (KB) = 1677776 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +503,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 679.826066 - 0: The maximum resident set size (KB) = 1811208 + 0: The total amount of wall time = 705.338038 + 0: The maximum resident set size (KB) = 1816628 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +562,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.215220 - 0: The maximum resident set size (KB) = 1633928 + 0: The total amount of wall time = 1139.657658 + 0: The maximum resident set size (KB) = 1650220 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +631,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 406.047024 - 0: The maximum resident set size (KB) = 1672424 + 0: The total amount of wall time = 1669.781823 + 0: The maximum resident set size (KB) = 1686996 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +688,14 @@ Checking test 016 cpld_control_c48 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 = 798.535254 - 0: The maximum resident set size (KB) = 2766512 + 0: The total amount of wall time = 806.841778 + 0: The maximum resident set size (KB) = 2771108 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +745,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 222.475568 - 0: The maximum resident set size (KB) = 2767428 + 0: The total amount of wall time = 460.772598 + 0: The maximum resident set size (KB) = 2775968 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +802,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 114.744559 - 0: The maximum resident set size (KB) = 2205308 + 0: The total amount of wall time = 228.536557 + 0: The maximum resident set size (KB) = 2196492 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,15 +874,33 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.888272 - 0: The maximum resident set size (KB) = 1777892 + 0: The total amount of wall time = 606.991522 + 0: The maximum resident set size (KB) = 1771036 + +Test 019 cpld_control_p8_faster PASS Tries: 2 + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_flake +Checking test 020 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 508.912055 + 0: The maximum resident set size (KB) = 620532 -Test 019 cpld_control_p8_faster PASS +Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1294,29 +926,29 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 188.426509 - 0: The maximum resident set size (KB) = 571816 + 0: The total amount of wall time = 1051.291487 + 0: The maximum resident set size (KB) = 573628 -Test 020 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_parallel -Checking test 021 control_CubedSphereGrid_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 188.132647 - 0: The maximum resident set size (KB) = 574228 + 0: The total amount of wall time = 185.824620 + 0: The maximum resident set size (KB) = 568332 -Test 021 control_CubedSphereGrid_parallel PASS +Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1326,16 +958,16 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.950633 - 0: The maximum resident set size (KB) = 573592 + 0: The total amount of wall time = 299.515628 + 0: The maximum resident set size (KB) = 573160 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1344,15 +976,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.680383 - 0: The maximum resident set size (KB) = 570252 + 0: The total amount of wall time = 194.425994 + 0: The maximum resident set size (KB) = 570604 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1390,15 +1022,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 603.166283 -0: The maximum resident set size (KB) = 793988 +0: The total amount of wall time = 595.822612 +0: The maximum resident set size (KB) = 798756 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1408,15 +1040,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 743.418199 - 0: The maximum resident set size (KB) = 691972 + 0: The total amount of wall time = 1113.792880 + 0: The maximum resident set size (KB) = 694072 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1426,65 +1058,17 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 958.148980 - 0: The maximum resident set size (KB) = 1059312 - -Test 026 control_c384 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384gdas -Checking test 027 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - 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 = 1515.419402 + 0: The maximum resident set size (KB) = 1076688 - 0: The total amount of wall time = 839.067430 - 0: The maximum resident set size (KB) = 1197748 +Test 027 control_c384 PASS -Test 027 control_c384gdas PASS +Test 028 control_c384gdas FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1494,29 +1078,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 134.646865 - 0: The maximum resident set size (KB) = 576192 + 0: The total amount of wall time = 245.063296 + 0: The maximum resident set size (KB) = 578296 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy_restart +Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 69.854432 - 0: The maximum resident set size (KB) = 392044 + 0: The total amount of wall time = 133.125810 + 0: The maximum resident set size (KB) = 390188 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1526,15 +1110,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.688203 - 0: The maximum resident set size (KB) = 573868 + 0: The total amount of wall time = 205.580808 + 0: The maximum resident set size (KB) = 576512 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1548,15 +1132,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.595043 - 0: The maximum resident set size (KB) = 580532 + 0: The total amount of wall time = 239.223917 + 0: The maximum resident set size (KB) = 573032 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1570,15 +1154,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.721438 - 0: The maximum resident set size (KB) = 571220 + 0: The total amount of wall time = 339.643847 + 0: The maximum resident set size (KB) = 570596 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1624,15 +1208,15 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.650993 - 0: The maximum resident set size (KB) = 1546696 + 0: The total amount of wall time = 317.048375 + 0: The maximum resident set size (KB) = 1532832 -Test 033 control_p8 PASS +Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_restart_p8 +Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1670,15 +1254,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.378364 - 0: The maximum resident set size (KB) = 775728 + 0: The total amount of wall time = 151.038303 + 0: The maximum resident set size (KB) = 774840 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_qr_p8 -Checking test 035 control_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_qr_p8 +Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1724,15 +1308,15 @@ Checking test 035 control_qr_p8 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 = 243.732579 - 0: The maximum resident set size (KB) = 1543412 + 0: The total amount of wall time = 365.105543 + 0: The maximum resident set size (KB) = 1550432 -Test 035 control_qr_p8 PASS +Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_qr_p8 -Checking test 036 control_restart_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_restart_qr_p8 +Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1770,15 +1354,15 @@ Checking test 036 control_restart_qr_p8 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 = 131.908070 - 0: The maximum resident set size (KB) = 785884 + 0: The total amount of wall time = 177.473479 + 0: The maximum resident set size (KB) = 788036 -Test 036 control_restart_qr_p8 PASS +Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1820,15 +1404,15 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.155908 - 0: The maximum resident set size (KB) = 1521360 + 0: The total amount of wall time = 383.895162 + 0: The maximum resident set size (KB) = 1534016 -Test 037 control_decomp_p8 PASS +Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1870,15 +1454,15 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.822693 - 0: The maximum resident set size (KB) = 1613368 + 0: The total amount of wall time = 290.672870 + 0: The maximum resident set size (KB) = 1628468 -Test 038 control_2threads_p8 PASS +Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_lndp -Checking test 039 control_p8_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_lndp +Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1896,15 +1480,15 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 435.362457 - 0: The maximum resident set size (KB) = 1536500 + 0: The total amount of wall time = 667.754468 + 0: The maximum resident set size (KB) = 1552944 -Test 039 control_p8_lndp PASS +Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_rrtmgp +Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1950,15 +1534,15 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.835062 - 0: The maximum resident set size (KB) = 1602100 + 0: The total amount of wall time = 432.736041 + 0: The maximum resident set size (KB) = 1615992 -Test 040 control_p8_rrtmgp PASS +Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_mynn -Checking test 041 control_p8_mynn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_mynn +Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2004,15 +1588,15 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.330984 - 0: The maximum resident set size (KB) = 1535920 + 0: The total amount of wall time = 603.243833 + 0: The maximum resident set size (KB) = 1550964 -Test 041 control_p8_mynn PASS +Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/merra2_thompson -Checking test 042 merra2_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/merra2_thompson +Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2058,15 +1642,15 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.080429 - 0: The maximum resident set size (KB) = 1549260 + 0: The total amount of wall time = 583.475521 + 0: The maximum resident set size (KB) = 1552508 -Test 042 merra2_thompson PASS +Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control -Checking test 043 regional_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control +Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2076,29 +1660,29 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 442.944459 - 0: The maximum resident set size (KB) = 786948 + 0: The total amount of wall time = 743.416191 + 0: The maximum resident set size (KB) = 783808 -Test 043 regional_control PASS +Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart -Checking test 044 regional_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_restart +Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 225.249457 - 0: The maximum resident set size (KB) = 778636 + 0: The total amount of wall time = 334.114614 + 0: The maximum resident set size (KB) = 777284 -Test 044 regional_restart PASS +Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_qr -Checking test 045 regional_control_qr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control_qr +Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2108,29 +1692,29 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.086159 - 0: The maximum resident set size (KB) = 785144 + 0: The total amount of wall time = 800.304081 + 0: The maximum resident set size (KB) = 785300 -Test 045 regional_control_qr PASS +Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart_qr -Checking test 046 regional_restart_qr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_restart_qr +Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 221.641734 - 0: The maximum resident set size (KB) = 775684 + 0: The total amount of wall time = 284.118304 + 0: The maximum resident set size (KB) = 779844 -Test 046 regional_restart_qr PASS +Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_decomp -Checking test 047 regional_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_decomp +Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2140,15 +1724,15 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 442.557101 - 0: The maximum resident set size (KB) = 787796 + 0: The total amount of wall time = 662.241079 + 0: The maximum resident set size (KB) = 778476 -Test 047 regional_decomp PASS +Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2threads -Checking test 048 regional_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_2threads +Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2158,29 +1742,29 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 280.961931 - 0: The maximum resident set size (KB) = 770928 + 0: The total amount of wall time = 770.049625 + 0: The maximum resident set size (KB) = 770296 -Test 048 regional_2threads PASS +Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_netcdf_parallel -Checking test 049 regional_netcdf_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_netcdf_parallel +Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 425.871812 - 0: The maximum resident set size (KB) = 782440 + 0: The total amount of wall time = 633.726172 + 0: The maximum resident set size (KB) = 783832 -Test 049 regional_netcdf_parallel PASS +Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2dwrtdecomp -Checking test 050 regional_2dwrtdecomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_2dwrtdecomp +Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2190,15 +1774,15 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.095455 - 0: The maximum resident set size (KB) = 784424 + 0: The total amount of wall time = 655.020623 + 0: The maximum resident set size (KB) = 784496 -Test 050 regional_2dwrtdecomp PASS +Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control -Checking test 051 rap_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control +Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,15 +1828,15 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 623.215357 - 0: The maximum resident set size (KB) = 960468 + 0: The total amount of wall time = 927.954727 + 0: The maximum resident set size (KB) = 950912 -Test 051 rap_control PASS +Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_spp_sppt_shum_skeb +Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2262,15 +1846,15 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 343.522599 - 0: The maximum resident set size (KB) = 1096248 + 0: The total amount of wall time = 559.897301 + 0: The maximum resident set size (KB) = 1087496 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_decomp -Checking test 053 rap_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_decomp +Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2316,15 +1900,15 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 659.138053 - 0: The maximum resident set size (KB) = 958128 + 0: The total amount of wall time = 1062.252039 + 0: The maximum resident set size (KB) = 944804 -Test 053 rap_decomp PASS +Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads -Checking test 054 rap_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_2threads +Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2370,15 +1954,15 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 613.461286 - 0: The maximum resident set size (KB) = 1030120 + 0: The total amount of wall time = 1315.873939 + 0: The maximum resident set size (KB) = 1023132 -Test 054 rap_2threads PASS +Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart -Checking test 055 rap_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_restart +Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2416,15 +2000,15 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.493920 - 0: The maximum resident set size (KB) = 835396 + 0: The total amount of wall time = 493.076552 + 0: The maximum resident set size (KB) = 834624 -Test 055 rap_restart PASS +Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff -Checking test 056 rap_sfcdiff results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff +Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2470,15 +2054,15 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.072706 - 0: The maximum resident set size (KB) = 958632 + 0: The total amount of wall time = 754.096573 + 0: The maximum resident set size (KB) = 951844 -Test 056 rap_sfcdiff PASS +Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_decomp +Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2524,15 +2108,15 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 671.183145 - 0: The maximum resident set size (KB) = 933992 + 0: The total amount of wall time = 1027.122034 + 0: The maximum resident set size (KB) = 945336 -Test 057 rap_sfcdiff_decomp PASS +Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_restart +Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2570,15 +2154,15 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing 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.966816 - 0: The maximum resident set size (KB) = 845672 + 0: The total amount of wall time = 1174.902766 + 0: The maximum resident set size (KB) = 840276 -Test 058 rap_sfcdiff_restart PASS +Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control -Checking test 059 hrrr_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control +Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2591,48 +2175,170 @@ Checking test 059 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1115.205188 + 0: The maximum resident set size (KB) = 948552 + +Test 060 hrrr_control PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_decomp +Checking test 061 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 731.885231 + 0: The maximum resident set size (KB) = 946944 + +Test 061 hrrr_control_decomp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_2threads +Checking test 062 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 872.215900 + 0: The maximum resident set size (KB) = 1012884 + +Test 062 hrrr_control_2threads PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_restart +Checking test 063 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 598.166330 - 0: The maximum resident set size (KB) = 956280 + 0: The total amount of wall time = 873.892104 + 0: The maximum resident set size (KB) = 837476 -Test 059 hrrr_control PASS +Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp -Checking test 060 hrrr_control_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1beta +Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2678,169 +2384,15 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 643.000446 - 0: The maximum resident set size (KB) = 951820 + 0: The total amount of wall time = 811.786545 + 0: The maximum resident set size (KB) = 940888 -Test 060 hrrr_control_decomp PASS +Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads -Checking test 061 hrrr_control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 586.053537 - 0: The maximum resident set size (KB) = 1021640 - -Test 061 hrrr_control_2threads PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart -Checking test 062 hrrr_control_restart 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 - - 0: The total amount of wall time = 455.903230 - 0: The maximum resident set size (KB) = 834076 - -Test 062 hrrr_control_restart PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta -Checking test 063 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 635.401598 - 0: The maximum resident set size (KB) = 944528 - -Test 063 rrfs_v1beta PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl -Checking test 064 rrfs_v1nssl results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1nssl +Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,15 +2406,15 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 757.369414 - 0: The maximum resident set size (KB) = 641540 + 0: The total amount of wall time = 1124.703002 + 0: The maximum resident set size (KB) = 633160 -Test 064 rrfs_v1nssl PASS +Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1nssl_nohailnoccn +Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2876,15 +2428,15 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 751.446673 - 0: The maximum resident set size (KB) = 637340 + 0: The total amount of wall time = 856.249778 + 0: The maximum resident set size (KB) = 636720 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm +Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2892,15 +2444,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 206.554490 - 0: The maximum resident set size (KB) = 901300 + 0: The total amount of wall time = 338.718479 + 0: The maximum resident set size (KB) = 906680 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2908,15 +2460,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.216368 - 0: The maximum resident set size (KB) = 870144 + 0: The total amount of wall time = 174.563965 + 0: The maximum resident set size (KB) = 863676 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm +Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2924,15 +2476,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 182.135329 - 0: The maximum resident set size (KB) = 868064 + 0: The total amount of wall time = 223.039398 + 0: The maximum resident set size (KB) = 882192 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_radar_tten_warm +Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2940,27 +2492,27 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 202.451376 - 0: The maximum resident set size (KB) = 914304 + 0: The total amount of wall time = 338.899824 + 0: The maximum resident set size (KB) = 898532 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.471581 - 0: The maximum resident set size (KB) = 846096 + 0: The total amount of wall time = 420.204096 + 0: The maximum resident set size (KB) = 856272 -Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg -Checking test 071 control_csawmg results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmg +Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2970,15 +2522,15 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 483.792711 - 0: The maximum resident set size (KB) = 670204 + 0: The total amount of wall time = 498.683014 + 0: The maximum resident set size (KB) = 665156 -Test 071 control_csawmg PASS +Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt -Checking test 072 control_csawmgt results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmgt +Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2988,15 +2540,15 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 473.206316 - 0: The maximum resident set size (KB) = 670568 + 0: The total amount of wall time = 684.661957 + 0: The maximum resident set size (KB) = 663468 -Test 072 control_csawmgt PASS +Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras -Checking test 073 control_ras results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_ras +Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3006,27 +2558,27 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 264.357137 - 0: The maximum resident set size (KB) = 633924 + 0: The total amount of wall time = 473.327202 + 0: The maximum resident set size (KB) = 637404 -Test 073 control_ras PASS +Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam -Checking test 074 control_wam results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wam +Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 164.899145 - 0: The maximum resident set size (KB) = 480668 + 0: The total amount of wall time = 230.773736 + 0: The maximum resident set size (KB) = 483800 -Test 074 control_wam PASS +Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_faster -Checking test 075 control_p8_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_faster +Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3072,15 +2624,15 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.277743 - 0: The maximum resident set size (KB) = 1551652 + 0: The total amount of wall time = 352.158028 + 0: The maximum resident set size (KB) = 1535324 -Test 075 control_p8_faster PASS +Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_faster -Checking test 076 regional_control_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control_faster +Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3090,57 +2642,57 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 389.987092 - 0: The maximum resident set size (KB) = 786368 + 0: The total amount of wall time = 715.145646 + 0: The maximum resident set size (KB) = 782824 -Test 076 regional_control_faster PASS +Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1082.810865 - 0: The maximum resident set size (KB) = 929788 + 0: The total amount of wall time = 1088.102505 + 0: The maximum resident set size (KB) = 936372 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 626.758931 - 0: The maximum resident set size (KB) = 897408 + 0: The total amount of wall time = 806.174740 + 0: The maximum resident set size (KB) = 894316 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 968.562793 - 0: The maximum resident set size (KB) = 898912 + 0: The total amount of wall time = 1105.868362 + 0: The maximum resident set size (KB) = 908840 -Test 079 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3166,335 +2718,349 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 189.025535 - 0: The maximum resident set size (KB) = 734512 + 0: The total amount of wall time = 211.440533 + 0: The maximum resident set size (KB) = 731260 -Test 080 control_CubedSphereGrid_debug PASS +Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.753733 - 0: The maximum resident set size (KB) = 730688 + 0: The total amount of wall time = 191.665066 + 0: The maximum resident set size (KB) = 735088 -Test 081 control_wrtGauss_netcdf_parallel_debug PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_debug -Checking test 082 control_stochy_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy_debug +Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.060189 - 0: The maximum resident set size (KB) = 739788 + 0: The total amount of wall time = 245.820533 + 0: The maximum resident set size (KB) = 739840 -Test 082 control_stochy_debug PASS +Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp_debug -Checking test 083 control_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_lndp_debug +Checking test 084 control_lndp_debug 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.504080 - 0: The maximum resident set size (KB) = 738304 + 0: The total amount of wall time = 197.293387 + 0: The maximum resident set size (KB) = 740876 -Test 083 control_lndp_debug PASS +Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmg_debug +Checking test 085 control_csawmg_debug 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.509403 - 0: The maximum resident set size (KB) = 784688 + 0: The total amount of wall time = 476.377811 + 0: The maximum resident set size (KB) = 781916 -Test 084 control_csawmg_debug PASS +Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.951173 - 0: The maximum resident set size (KB) = 780828 + 0: The total amount of wall time = 458.143188 + 0: The maximum resident set size (KB) = 779216 -Test 085 control_csawmgt_debug PASS +Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras_debug -Checking test 086 control_ras_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_ras_debug +Checking test 087 control_ras_debug 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.856618 - 0: The maximum resident set size (KB) = 747392 + 0: The total amount of wall time = 211.425546 + 0: The maximum resident set size (KB) = 748160 -Test 086 control_ras_debug PASS +Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_diag_debug -Checking test 087 control_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_diag_debug +Checking test 088 control_diag_debug 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.965022 - 0: The maximum resident set size (KB) = 790860 + 0: The total amount of wall time = 572.286548 + 0: The maximum resident set size (KB) = 795444 -Test 087 control_diag_debug PASS +Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_debug_p8 -Checking test 088 control_debug_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_debug_p8 +Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.783883 - 0: The maximum resident set size (KB) = 1556540 + 0: The total amount of wall time = 258.441354 + 0: The maximum resident set size (KB) = 1560508 -Test 088 control_debug_p8 PASS +Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_debug -Checking test 089 regional_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_debug +Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1279.188968 - 0: The maximum resident set size (KB) = 806432 - -Test 089 regional_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug -Checking test 090 rap_control_debug 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.317247 - 0: The maximum resident set size (KB) = 1108816 + 0: The total amount of wall time = 1567.362872 + 0: The maximum resident set size (KB) = 824032 -Test 090 rap_control_debug PASS +Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_debug +Checking test 091 rap_control_debug 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.567716 - 0: The maximum resident set size (KB) = 1105116 + 0: The total amount of wall time = 501.201443 + 0: The maximum resident set size (KB) = 1118216 -Test 091 hrrr_control_debug PASS +Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_debug +Checking test 092 hrrr_control_debug 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.868033 - 0: The maximum resident set size (KB) = 1114440 + 0: The total amount of wall time = 420.829692 + 0: The maximum resident set size (KB) = 1106716 -Test 092 rap_unified_drag_suite_debug PASS +Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_diag_debug -Checking test 093 rap_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.442306 - 0: The maximum resident set size (KB) = 1192512 + 0: The total amount of wall time = 511.779501 + 0: The maximum resident set size (KB) = 1115360 -Test 093 rap_diag_debug PASS +Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_diag_debug +Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.569394 - 0: The maximum resident set size (KB) = 1109908 + 0: The total amount of wall time = 686.319565 + 0: The maximum resident set size (KB) = 1194864 -Test 094 rap_cires_ugwp_debug PASS +Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.065703 - 0: The maximum resident set size (KB) = 1111856 + 0: The total amount of wall time = 488.270366 + 0: The maximum resident set size (KB) = 1112932 -Test 095 rap_unified_ugwp_debug PASS +Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.910950 - 0: The maximum resident set size (KB) = 1109576 + 0: The total amount of wall time = 456.761668 + 0: The maximum resident set size (KB) = 1115652 -Test 096 rap_lndp_debug PASS +Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_flake_debug -Checking test 097 rap_flake_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_lndp_debug +Checking test 097 rap_lndp_debug 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.271185 - 0: The maximum resident set size (KB) = 1105132 + 0: The total amount of wall time = 544.037966 + 0: The maximum resident set size (KB) = 1108332 -Test 097 rap_flake_debug PASS +Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug 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.988066 - 0: The maximum resident set size (KB) = 1107632 + 0: The total amount of wall time = 397.107005 + 0: The maximum resident set size (KB) = 1116324 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.453457 - 0: The maximum resident set size (KB) = 1113380 + 0: The total amount of wall time = 603.725137 + 0: The maximum resident set size (KB) = 1117412 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.031698 - 0: The maximum resident set size (KB) = 1115900 + 0: The total amount of wall time = 386.484029 + 0: The maximum resident set size (KB) = 1113224 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 577.169911 - 0: The maximum resident set size (KB) = 1113624 + 0: The total amount of wall time = 632.745466 + 0: The maximum resident set size (KB) = 1111456 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug 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.348804 - 0: The maximum resident set size (KB) = 1111072 + 0: The total amount of wall time = 415.418733 + 0: The maximum resident set size (KB) = 1109844 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam_debug -Checking test 103 control_wam_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_clm_lake_debug +Checking test 103 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 565.034853 + 0: The maximum resident set size (KB) = 1116300 + +Test 103 rap_clm_lake_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_flake_debug +Checking test 104 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 407.386360 + 0: The maximum resident set size (KB) = 1110880 + +Test 104 rap_flake_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wam_debug +Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 364.722562 - 0: The maximum resident set size (KB) = 432968 + 0: The total amount of wall time = 376.883167 + 0: The maximum resident set size (KB) = 436428 -Test 103 control_wam_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3504,15 +3070,15 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.648563 - 0: The maximum resident set size (KB) = 979260 + 0: The total amount of wall time = 465.685516 + 0: The maximum resident set size (KB) = 994832 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3558,15 +3124,15 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 535.712665 - 0: The maximum resident set size (KB) = 839668 + 0: The total amount of wall time = 751.227276 + 0: The maximum resident set size (KB) = 845068 -Test 105 rap_control_dyn32_phy32 PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3579,48 +3145,156 @@ Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 345.516802 + 0: The maximum resident set size (KB) = 834272 + +Test 108 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.418249 - 0: The maximum resident set size (KB) = 839700 + 0: The total amount of wall time = 651.540258 + 0: The maximum resident set size (KB) = 894192 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 259.621154 + 0: The maximum resident set size (KB) = 871248 + +Test 110 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3633,6 +3307,52 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 374.670985 + 0: The maximum resident set size (KB) = 830288 + +Test 111 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 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 @@ -3666,15 +3386,29 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.019702 - 0: The maximum resident set size (KB) = 879956 + 0: The total amount of wall time = 483.300853 + 0: The maximum resident set size (KB) = 810520 + +Test 112 rap_restart_dyn32_phy32 PASS + -Test 107 rap_2threads_dyn32_phy32 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + 0: The total amount of wall time = 198.052056 + 0: The maximum resident set size (KB) = 764000 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... +Test 113 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3720,282 +3454,72 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 269.089527 - 0: The maximum resident set size (KB) = 886724 + 0: The total amount of wall time = 356.289718 + 0: The maximum resident set size (KB) = 872172 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 298.957549 - 0: The maximum resident set size (KB) = 828132 - -Test 109 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 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 - - 0: The total amount of wall time = 432.291553 - 0: The maximum resident set size (KB) = 807572 - -Test 110 rap_restart_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 140.258455 - 0: The maximum resident set size (KB) = 760480 - -Test 111 hrrr_control_restart_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 324.036989 - 0: The maximum resident set size (KB) = 876780 - -Test 112 rap_control_dyn64_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.076640 - 0: The maximum resident set size (KB) = 999008 + 0: The total amount of wall time = 362.162825 + 0: The maximum resident set size (KB) = 999604 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.078375 - 0: The maximum resident set size (KB) = 992836 + 0: The total amount of wall time = 355.784321 + 0: The maximum resident set size (KB) = 992012 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.159035 - 0: The maximum resident set size (KB) = 1031380 + 0: The total amount of wall time = 408.706419 + 0: The maximum resident set size (KB) = 1032368 -Test 115 rap_control_dyn64_phy32_debug PASS +Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 352.464767 - 0: The maximum resident set size (KB) = 1217452 - -Test 116 hafs_regional_atm PASS - + 0: The total amount of wall time = 628.381032 + 0: The maximum resident set size (KB) = 1222092 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_thompson_gfdlsf -Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +Test 118 hafs_regional_atm PASS - 0: The total amount of wall time = 470.490195 - 0: The maximum resident set size (KB) = 1502108 +Test 119 hafs_regional_atm_thompson_gfdlsf FAIL -Test 117 hafs_regional_atm_thompson_gfdlsf PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4003,15 +3527,15 @@ Checking test 118 hafs_regional_atm_ocn 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 = 558.558158 - 0: The maximum resident set size (KB) = 1300624 + 0: The total amount of wall time = 1349.865207 + 0: The maximum resident set size (KB) = 1302916 -Test 118 hafs_regional_atm_ocn PASS +Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4019,15 +3543,15 @@ Checking test 119 hafs_regional_atm_wav 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 = 955.608380 - 0: The maximum resident set size (KB) = 1328064 + 0: The total amount of wall time = 1299.885636 + 0: The maximum resident set size (KB) = 1328924 -Test 119 hafs_regional_atm_wav PASS +Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn_wav -Checking test 120 hafs_regional_atm_ocn_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4037,149 +3561,149 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1075.541877 - 0: The maximum resident set size (KB) = 1350700 + 0: The total amount of wall time = 1461.245429 + 0: The maximum resident set size (KB) = 1340308 -Test 120 hafs_regional_atm_ocn_wav PASS +Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn -Checking test 121 hafs_regional_docn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_docn +Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 529.489892 - 0: The maximum resident set size (KB) = 1303712 + 0: The total amount of wall time = 1022.530639 + 0: The maximum resident set size (KB) = 1282940 -Test 121 hafs_regional_docn PASS +Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn_oisst -Checking test 122 hafs_regional_docn_oisst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_docn_oisst +Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 547.522988 - 0: The maximum resident set size (KB) = 1294196 + 0: The total amount of wall time = 1286.962939 + 0: The maximum resident set size (KB) = 1258744 -Test 122 hafs_regional_docn_oisst PASS +Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr -Checking test 123 datm_cdeps_control_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_cfsr +Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 228.220423 - 0: The maximum resident set size (KB) = 979576 + 0: The total amount of wall time = 297.278984 + 0: The maximum resident set size (KB) = 964696 -Test 123 datm_cdeps_control_cfsr PASS +Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_restart_cfsr -Checking test 124 datm_cdeps_restart_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_restart_cfsr +Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.822474 - 0: The maximum resident set size (KB) = 933456 + 0: The total amount of wall time = 214.970358 + 0: The maximum resident set size (KB) = 935300 -Test 124 datm_cdeps_restart_cfsr PASS +Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_gefs -Checking test 125 datm_cdeps_control_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_gefs +Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.932438 - 0: The maximum resident set size (KB) = 861900 + 0: The total amount of wall time = 317.010783 + 0: The maximum resident set size (KB) = 864672 -Test 125 datm_cdeps_control_gefs PASS +Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_iau_gefs -Checking test 126 datm_cdeps_iau_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_iau_gefs +Checking test 128 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 223.586938 - 0: The maximum resident set size (KB) = 856936 + 0: The total amount of wall time = 332.964386 + 0: The maximum resident set size (KB) = 865804 -Test 126 datm_cdeps_iau_gefs PASS +Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_stochy_gefs -Checking test 127 datm_cdeps_stochy_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_stochy_gefs +Checking test 129 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.337956 - 0: The maximum resident set size (KB) = 859412 + 0: The total amount of wall time = 266.961245 + 0: The maximum resident set size (KB) = 854048 -Test 127 datm_cdeps_stochy_gefs PASS +Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_ciceC_cfsr -Checking test 128 datm_cdeps_ciceC_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_ciceC_cfsr +Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 232.349424 - 0: The maximum resident set size (KB) = 970596 + 0: The total amount of wall time = 259.351408 + 0: The maximum resident set size (KB) = 972804 -Test 128 datm_cdeps_ciceC_cfsr PASS +Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_cfsr -Checking test 129 datm_cdeps_bulk_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_bulk_cfsr +Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 227.914356 - 0: The maximum resident set size (KB) = 956028 + 0: The total amount of wall time = 257.312705 + 0: The maximum resident set size (KB) = 972324 -Test 129 datm_cdeps_bulk_cfsr PASS +Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_gefs -Checking test 130 datm_cdeps_bulk_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_bulk_gefs +Checking test 132 datm_cdeps_bulk_gefs 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 = 228.414463 - 0: The maximum resident set size (KB) = 862196 + 0: The total amount of wall time = 272.629434 + 0: The maximum resident set size (KB) = 858792 -Test 130 datm_cdeps_bulk_gefs PASS +Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_cfsr -Checking test 131 datm_cdeps_mx025_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_mx025_cfsr +Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4187,15 +3711,15 @@ Checking test 131 datm_cdeps_mx025_cfsr 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 = 603.563157 - 0: The maximum resident set size (KB) = 757408 + 0: The total amount of wall time = 906.761663 + 0: The maximum resident set size (KB) = 764436 -Test 131 datm_cdeps_mx025_cfsr PASS +Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_gefs -Checking test 132 datm_cdeps_mx025_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_mx025_gefs +Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4203,78 +3727,78 @@ Checking test 132 datm_cdeps_mx025_gefs 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 = 583.113448 - 0: The maximum resident set size (KB) = 750000 + 0: The total amount of wall time = 1642.498904 + 0: The maximum resident set size (KB) = 736096 -Test 132 datm_cdeps_mx025_gefs PASS +Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_multiple_files_cfsr -Checking test 133 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_multiple_files_cfsr +Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 228.381820 - 0: The maximum resident set size (KB) = 965396 + 0: The total amount of wall time = 233.145695 + 0: The maximum resident set size (KB) = 976760 -Test 133 datm_cdeps_multiple_files_cfsr PASS +Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_3072x1536_cfsr -Checking test 134 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_3072x1536_cfsr +Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 298.346503 - 0: The maximum resident set size (KB) = 2255560 + 0: The total amount of wall time = 423.026792 + 0: The maximum resident set size (KB) = 2257768 -Test 134 datm_cdeps_3072x1536_cfsr PASS +Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_gfs -Checking test 135 datm_cdeps_gfs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_gfs +Checking test 137 datm_cdeps_gfs 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 = 311.796535 - 0: The maximum resident set size (KB) = 2255584 + 0: The total amount of wall time = 948.507121 + 0: The maximum resident set size (KB) = 2255288 -Test 135 datm_cdeps_gfs PASS +Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_debug_cfsr -Checking test 136 datm_cdeps_debug_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_debug_cfsr +Checking test 138 datm_cdeps_debug_cfsr 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 = 465.293722 - 0: The maximum resident set size (KB) = 930700 + 0: The total amount of wall time = 458.967552 + 0: The maximum resident set size (KB) = 917940 -Test 136 datm_cdeps_debug_cfsr PASS +Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr_faster -Checking test 137 datm_cdeps_control_cfsr_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_cfsr_faster +Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.595538 - 0: The maximum resident set size (KB) = 971744 + 0: The total amount of wall time = 225.698271 + 0: The maximum resident set size (KB) = 956876 -Test 137 datm_cdeps_control_cfsr_faster PASS +Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3 -Checking test 138 datm_cdeps_lnd_gswp3 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_lnd_gswp3 +Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4282,15 +3806,15 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 23.698417 - 0: The maximum resident set size (KB) = 241464 + 0: The total amount of wall time = 19.378989 + 0: The maximum resident set size (KB) = 242748 -Test 138 datm_cdeps_lnd_gswp3 PASS +Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3_rst -Checking test 139 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_lnd_gswp3_rst +Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4298,15 +3822,15 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 47.016365 - 0: The maximum resident set size (KB) = 241360 + 0: The total amount of wall time = 40.813832 + 0: The maximum resident set size (KB) = 239924 -Test 139 datm_cdeps_lnd_gswp3_rst PASS +Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_atmlnd_sbs -Checking test 140 control_p8_atmlnd_sbs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_atmlnd_sbs +Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4390,15 +3914,15 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 307.760864 - 0: The maximum resident set size (KB) = 1591116 + 0: The total amount of wall time = 481.370458 + 0: The maximum resident set size (KB) = 1584992 -Test 140 control_p8_atmlnd_sbs PASS +Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmwav_control_noaero_p8 -Checking test 141 atmwav_control_noaero_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmwav_control_noaero_p8 +Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4440,15 +3964,15 @@ Checking test 141 atmwav_control_noaero_p8 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 = 137.929911 - 0: The maximum resident set size (KB) = 1570172 + 0: The total amount of wall time = 227.608003 + 0: The maximum resident set size (KB) = 1546600 -Test 141 atmwav_control_noaero_p8 PASS +Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_atmwav -Checking test 142 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_atmwav +Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4491,15 +4015,15 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 169.980371 - 0: The maximum resident set size (KB) = 593792 + 0: The total amount of wall time = 204.312186 + 0: The maximum resident set size (KB) = 601428 -Test 142 control_atmwav PASS +Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8 -Checking test 143 atmaero_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8 +Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4542,15 +4066,15 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.495836 - 0: The maximum resident set size (KB) = 1633712 + 0: The total amount of wall time = 620.033504 + 0: The maximum resident set size (KB) = 1649140 -Test 143 atmaero_control_p8 PASS +Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad -Checking test 144 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8_rad +Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4593,15 +4117,15 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing 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.676386 - 0: The maximum resident set size (KB) = 1658448 + 0: The total amount of wall time = 563.589076 + 0: The maximum resident set size (KB) = 1680404 -Test 144 atmaero_control_p8_rad PASS +Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad_micro -Checking test 145 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8_rad_micro +Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4644,12 +4168,478 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 424.931475 - 0: The maximum resident set size (KB) = 1668052 + 0: The total amount of wall time = 600.489491 + 0: The maximum resident set size (KB) = 1690404 + +Test 147 atmaero_control_p8_rad_micro PASS + +FAILED TESTS: +Test cpld_control_p8_mixedmode 001 failed in run_test failed +Test cpld_control_qr_p8 005 failed in run_test failed +Test cpld_2threads_p8 007 failed in run_test failed +Test cpld_mpi_p8 009 failed in run_test failed +Test cpld_control_ciceC_p8 010 failed in run_test failed +Test control_c384gdas 028 failed in run_test failed +Test hafs_regional_atm_thompson_gfdlsf 119 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 26 05:18:46 UTC 2023 +Elapsed time: 07h:02m:06s. Have a nice day! + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 477.988262 + 0: The maximum resident set size (KB) = 1750920 + +Test 001 cpld_control_p8_mixedmode PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_qr_p8 +Checking test 002 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 508.021551 + 0: The maximum resident set size (KB) = 1803772 + +Test 002 cpld_control_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_restart_qr_p8 +Checking test 003 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 319.322146 + 0: The maximum resident set size (KB) = 1524420 + +Test 003 cpld_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_2threads_p8 +Checking test 004 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 547.724249 + 0: The maximum resident set size (KB) = 1984824 + +Test 004 cpld_2threads_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_mpi_p8 +Checking test 005 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 441.034900 + 0: The maximum resident set size (KB) = 1735992 + +Test 005 cpld_mpi_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_ciceC_p8 +Checking test 006 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 490.429934 + 0: The maximum resident set size (KB) = 1792980 + +Test 006 cpld_control_ciceC_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/control_c384gdas +Checking test 007 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + 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 = 883.665298 + 0: The maximum resident set size (KB) = 1200448 + +Test 007 control_c384gdas PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/hafs_regional_atm_thompson_gfdlsf +Checking test 008 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -Test 145 atmaero_control_p8_rad_micro PASS + 0: The total amount of wall time = 464.964168 + 0: The maximum resident set size (KB) = 1579828 +Test 008 hafs_regional_atm_thompson_gfdlsf PASS -REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 22:18:48 UTC 2023 -Elapsed time: 02h:54m:50s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b246ac86e7..d728fc0316 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Sat Apr 22 13:01:49 CDT 2023 +Tue Apr 25 09:03:16 CDT 2023 Start Regression test -Compile 001 elapsed time 804 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 811 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 816 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 326 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 655 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 808 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 594 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 011 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 634 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 021 elapsed time 206 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 755 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 621 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 024 elapsed time 213 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 231 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 603 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 614 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 628 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 526 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 725 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 690 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 825 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 664 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 267 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 256 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 686 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 917 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 604 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 011 elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 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 016 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 736 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 207 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 664 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 024 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 612 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 613 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 541 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.349049 - 0: The maximum resident set size (KB) = 3147532 + 0: The total amount of wall time = 323.106602 + 0: The maximum resident set size (KB) = 3142984 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.706663 - 0: The maximum resident set size (KB) = 1724024 + 0: The total amount of wall time = 248.382726 + 0: The maximum resident set size (KB) = 1724444 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.363159 - 0: The maximum resident set size (KB) = 3187464 + 0: The total amount of wall time = 370.301697 + 0: The maximum resident set size (KB) = 3184380 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 216.954052 - 0: The maximum resident set size (KB) = 3056136 + 0: The total amount of wall time = 205.956281 + 0: The maximum resident set size (KB) = 3056268 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.982369 - 0: The maximum resident set size (KB) = 3198052 + 0: The total amount of wall time = 356.262273 + 0: The maximum resident set size (KB) = 3193832 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.826832 - 0: The maximum resident set size (KB) = 3068292 + 0: The total amount of wall time = 211.512241 + 0: The maximum resident set size (KB) = 3069244 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.547569 - 0: The maximum resident set size (KB) = 3520552 + 0: The total amount of wall time = 425.616415 + 0: The maximum resident set size (KB) = 3516532 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.283899 - 0: The maximum resident set size (KB) = 3183040 + 0: The total amount of wall time = 362.812632 + 0: The maximum resident set size (KB) = 3176332 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.510653 - 0: The maximum resident set size (KB) = 3030508 + 0: The total amount of wall time = 319.893227 + 0: The maximum resident set size (KB) = 3021696 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.641213 - 0: The maximum resident set size (KB) = 3186056 + 0: The total amount of wall time = 377.198489 + 0: The maximum resident set size (KB) = 3183676 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 643.549427 - 0: The maximum resident set size (KB) = 3269232 + 0: The total amount of wall time = 703.311087 + 0: The maximum resident set size (KB) = 3262328 -Test 011 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS Tries: 2 baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 439.877977 - 0: The maximum resident set size (KB) = 3165276 + 0: The total amount of wall time = 445.538689 + 0: The maximum resident set size (KB) = 3165388 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 880.891270 - 0: The maximum resident set size (KB) = 4042604 + 0: The total amount of wall time = 881.800429 + 0: The maximum resident set size (KB) = 4047640 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 545.150846 - 0: The maximum resident set size (KB) = 3980456 + 0: The total amount of wall time = 552.186043 + 0: The maximum resident set size (KB) = 3975660 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.390650 - 0: The maximum resident set size (KB) = 1718268 + 0: The total amount of wall time = 274.572888 + 0: The maximum resident set size (KB) = 1728336 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.768945 - 0: The maximum resident set size (KB) = 1766080 + 0: The total amount of wall time = 278.409426 + 0: The maximum resident set size (KB) = 1766920 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 561.042129 - 0: The maximum resident set size (KB) = 3244036 + 0: The total amount of wall time = 551.928659 + 0: The maximum resident set size (KB) = 3237912 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 388.093541 - 0: The maximum resident set size (KB) = 1731364 + 0: The total amount of wall time = 392.698915 + 0: The maximum resident set size (KB) = 1732088 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 290.571138 - 0: The maximum resident set size (KB) = 1773020 + 0: The total amount of wall time = 294.424506 + 0: The maximum resident set size (KB) = 1761888 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.909250 - 0: The maximum resident set size (KB) = 2814372 + 0: The total amount of wall time = 520.686374 + 0: The maximum resident set size (KB) = 2818420 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 141.830701 - 0: The maximum resident set size (KB) = 2801312 + 0: The total amount of wall time = 141.700542 + 0: The maximum resident set size (KB) = 2804892 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 79.897323 - 0: The maximum resident set size (KB) = 2246568 + 0: The total amount of wall time = 76.173240 + 0: The maximum resident set size (KB) = 2236916 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.242648 - 0: The maximum resident set size (KB) = 3182100 + 0: The total amount of wall time = 322.426920 + 0: The maximum resident set size (KB) = 3180548 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.933245 - 0: The maximum resident set size (KB) = 631584 + 0: The total amount of wall time = 148.170701 + 0: The maximum resident set size (KB) = 578596 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.912409 - 0: The maximum resident set size (KB) = 634400 + 0: The total amount of wall time = 145.901836 + 0: The maximum resident set size (KB) = 633116 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.141163 - 0: The maximum resident set size (KB) = 634432 + 0: The total amount of wall time = 149.741590 + 0: The maximum resident set size (KB) = 630904 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.229937 - 0: The maximum resident set size (KB) = 633716 + 0: The total amount of wall time = 156.957944 + 0: The maximum resident set size (KB) = 630060 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.639114 -0: The maximum resident set size (KB) = 823652 +0: The total amount of wall time = 349.245605 +0: The maximum resident set size (KB) = 823148 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.366183 - 0: The maximum resident set size (KB) = 775104 + 0: The total amount of wall time = 533.755254 + 0: The maximum resident set size (KB) = 766260 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.749641 - 0: The maximum resident set size (KB) = 1235512 + 0: The total amount of wall time = 604.947170 + 0: The maximum resident set size (KB) = 1231324 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 575.456429 - 0: The maximum resident set size (KB) = 1340248 + 0: The total amount of wall time = 536.156230 + 0: The maximum resident set size (KB) = 1340928 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.940240 - 0: The maximum resident set size (KB) = 639996 + 0: The total amount of wall time = 89.450052 + 0: The maximum resident set size (KB) = 634980 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 56.707512 - 0: The maximum resident set size (KB) = 485732 + 0: The total amount of wall time = 48.982157 + 0: The maximum resident set size (KB) = 485884 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 96.133819 - 0: The maximum resident set size (KB) = 633616 + 0: The total amount of wall time = 83.290984 + 0: The maximum resident set size (KB) = 636244 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.304691 - 0: The maximum resident set size (KB) = 634328 + 0: The total amount of wall time = 135.500700 + 0: The maximum resident set size (KB) = 630820 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.709563 - 0: The maximum resident set size (KB) = 628224 + 0: The total amount of wall time = 134.919604 + 0: The maximum resident set size (KB) = 633568 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.704934 - 0: The maximum resident set size (KB) = 1613060 + 0: The total amount of wall time = 169.551815 + 0: The maximum resident set size (KB) = 1598108 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.355714 - 0: The maximum resident set size (KB) = 874280 + 0: The total amount of wall time = 91.276745 + 0: The maximum resident set size (KB) = 873404 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 175.870726 - 0: The maximum resident set size (KB) = 1605476 + 0: The total amount of wall time = 171.542917 + 0: The maximum resident set size (KB) = 1594148 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.815738 - 0: The maximum resident set size (KB) = 867680 + 0: The total amount of wall time = 91.370183 + 0: The maximum resident set size (KB) = 869808 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.534516 - 0: The maximum resident set size (KB) = 1586024 + 0: The total amount of wall time = 177.732256 + 0: The maximum resident set size (KB) = 1582512 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.436807 - 0: The maximum resident set size (KB) = 1685320 + 0: The total amount of wall time = 179.549417 + 0: The maximum resident set size (KB) = 1683524 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 320.134426 - 0: The maximum resident set size (KB) = 1614384 + 0: The total amount of wall time = 314.640049 + 0: The maximum resident set size (KB) = 1609664 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.165065 - 0: The maximum resident set size (KB) = 1679124 + 0: The total amount of wall time = 231.649370 + 0: The maximum resident set size (KB) = 1621212 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.869777 - 0: The maximum resident set size (KB) = 1603732 + 0: The total amount of wall time = 176.484499 + 0: The maximum resident set size (KB) = 1550612 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing 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.897204 - 0: The maximum resident set size (KB) = 1613224 + 0: The total amount of wall time = 192.275886 + 0: The maximum resident set size (KB) = 1608124 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.250519 - 0: The maximum resident set size (KB) = 872352 + 0: The total amount of wall time = 296.690439 + 0: The maximum resident set size (KB) = 872180 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.441789 - 0: The maximum resident set size (KB) = 863096 + 0: The total amount of wall time = 151.850426 + 0: The maximum resident set size (KB) = 838788 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.284969 - 0: The maximum resident set size (KB) = 871928 + 0: The total amount of wall time = 296.961465 + 0: The maximum resident set size (KB) = 871188 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.668417 - 0: The maximum resident set size (KB) = 864368 + 0: The total amount of wall time = 152.661163 + 0: The maximum resident set size (KB) = 859432 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.138155 - 0: The maximum resident set size (KB) = 864560 + 0: The total amount of wall time = 315.103740 + 0: The maximum resident set size (KB) = 860236 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.330174 - 0: The maximum resident set size (KB) = 847248 + 0: The total amount of wall time = 206.498476 + 0: The maximum resident set size (KB) = 847364 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.868419 - 0: The maximum resident set size (KB) = 862092 + 0: The total amount of wall time = 319.845043 + 0: The maximum resident set size (KB) = 833288 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.317738 - 0: The maximum resident set size (KB) = 872028 + 0: The total amount of wall time = 294.973074 + 0: The maximum resident set size (KB) = 866664 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.729708 - 0: The maximum resident set size (KB) = 865656 + 0: The total amount of wall time = 297.018233 + 0: The maximum resident set size (KB) = 874572 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 384.669585 - 0: The maximum resident set size (KB) = 628844 + 0: The total amount of wall time = 379.614371 + 0: The maximum resident set size (KB) = 575228 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.138083 - 0: The maximum resident set size (KB) = 1071160 + 0: The total amount of wall time = 469.605490 + 0: The maximum resident set size (KB) = 1068664 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 287.503634 - 0: The maximum resident set size (KB) = 1188932 + 0: The total amount of wall time = 289.349721 + 0: The maximum resident set size (KB) = 1182808 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.940735 - 0: The maximum resident set size (KB) = 1009544 + 0: The total amount of wall time = 499.494772 + 0: The maximum resident set size (KB) = 1003760 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.992707 - 0: The maximum resident set size (KB) = 1143224 + 0: The total amount of wall time = 485.046221 + 0: The maximum resident set size (KB) = 1140412 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing 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.469637 - 0: The maximum resident set size (KB) = 979324 + 0: The total amount of wall time = 234.011072 + 0: The maximum resident set size (KB) = 965748 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.524676 - 0: The maximum resident set size (KB) = 1061140 + 0: The total amount of wall time = 462.665207 + 0: The maximum resident set size (KB) = 1047872 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.616673 - 0: The maximum resident set size (KB) = 1012884 + 0: The total amount of wall time = 510.398029 + 0: The maximum resident set size (KB) = 1005344 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.169361 - 0: The maximum resident set size (KB) = 995408 + 0: The total amount of wall time = 342.191397 + 0: The maximum resident set size (KB) = 986528 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing 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.362285 - 0: The maximum resident set size (KB) = 1067784 + 0: The total amount of wall time = 460.724498 + 0: The maximum resident set size (KB) = 1061812 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.633956 - 0: The maximum resident set size (KB) = 1002428 + 0: The total amount of wall time = 464.284108 + 0: The maximum resident set size (KB) = 1002688 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.964130 - 0: The maximum resident set size (KB) = 1146328 + 0: The total amount of wall time = 455.889068 + 0: The maximum resident set size (KB) = 1138292 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.996321 - 0: The maximum resident set size (KB) = 984604 + 0: The total amount of wall time = 332.436845 + 0: The maximum resident set size (KB) = 983116 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.758640 - 0: The maximum resident set size (KB) = 1063556 + 0: The total amount of wall time = 455.915325 + 0: The maximum resident set size (KB) = 1065308 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 557.382468 - 0: The maximum resident set size (KB) = 701552 + 0: The total amount of wall time = 563.364641 + 0: The maximum resident set size (KB) = 698944 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 544.909232 - 0: The maximum resident set size (KB) = 763976 + 0: The total amount of wall time = 551.735761 + 0: The maximum resident set size (KB) = 761752 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 155.346733 - 0: The maximum resident set size (KB) = 1004724 + 0: The total amount of wall time = 160.446491 + 0: The maximum resident set size (KB) = 1039692 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 104.178417 - 0: The maximum resident set size (KB) = 914000 + 0: The total amount of wall time = 101.509351 + 0: The maximum resident set size (KB) = 944808 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.460323 - 0: The maximum resident set size (KB) = 943912 + 0: The total amount of wall time = 143.209510 + 0: The maximum resident set size (KB) = 888420 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 160.257335 - 0: The maximum resident set size (KB) = 1038208 + 0: The total amount of wall time = 152.935807 + 0: The maximum resident set size (KB) = 1003804 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 67.900861 - 0: The maximum resident set size (KB) = 935628 + 0: The total amount of wall time = 69.407238 + 0: The maximum resident set size (KB) = 937700 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.601558 - 0: The maximum resident set size (KB) = 725024 + 0: The total amount of wall time = 345.365789 + 0: The maximum resident set size (KB) = 728128 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.820731 - 0: The maximum resident set size (KB) = 722960 + 0: The total amount of wall time = 341.750828 + 0: The maximum resident set size (KB) = 724340 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.159346 - 0: The maximum resident set size (KB) = 726288 + 0: The total amount of wall time = 183.649354 + 0: The maximum resident set size (KB) = 716536 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.182828 - 0: The maximum resident set size (KB) = 648892 + 0: The total amount of wall time = 114.544416 + 0: The maximum resident set size (KB) = 646944 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.211896 - 0: The maximum resident set size (KB) = 1601916 + 0: The total amount of wall time = 151.498623 + 0: The maximum resident set size (KB) = 1603504 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.545515 - 0: The maximum resident set size (KB) = 867936 + 0: The total amount of wall time = 268.798068 + 0: The maximum resident set size (KB) = 875568 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.938870 - 0: The maximum resident set size (KB) = 1066060 + 0: The total amount of wall time = 838.517845 + 0: The maximum resident set size (KB) = 1061404 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.623706 - 0: The maximum resident set size (KB) = 979260 + 0: The total amount of wall time = 480.614712 + 0: The maximum resident set size (KB) = 977152 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 753.487954 - 0: The maximum resident set size (KB) = 970608 + 0: The total amount of wall time = 761.187304 + 0: The maximum resident set size (KB) = 969892 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.832720 - 0: The maximum resident set size (KB) = 796516 + 0: The total amount of wall time = 157.947123 + 0: The maximum resident set size (KB) = 752676 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + 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 = 155.925682 - 0: The maximum resident set size (KB) = 793144 + 0: The total amount of wall time = 152.440084 + 0: The maximum resident set size (KB) = 792668 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy_debug Checking test 088 control_stochy_debug 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.063351 - 0: The maximum resident set size (KB) = 804208 + 0: The total amount of wall time = 170.502161 + 0: The maximum resident set size (KB) = 792268 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_lndp_debug Checking test 089 control_lndp_debug 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.861094 - 0: The maximum resident set size (KB) = 801584 + 0: The total amount of wall time = 154.166166 + 0: The maximum resident set size (KB) = 793720 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.560003 - 0: The maximum resident set size (KB) = 846920 + 0: The total amount of wall time = 225.114471 + 0: The maximum resident set size (KB) = 844876 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.914282 - 0: The maximum resident set size (KB) = 842304 + 0: The total amount of wall time = 235.824733 + 0: The maximum resident set size (KB) = 845956 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.201496 - 0: The maximum resident set size (KB) = 805632 + 0: The total amount of wall time = 152.362287 + 0: The maximum resident set size (KB) = 797524 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.877021 - 0: The maximum resident set size (KB) = 848340 + 0: The total amount of wall time = 157.906755 + 0: The maximum resident set size (KB) = 851812 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_debug_p8 Checking test 094 control_debug_p8 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.892904 - 0: The maximum resident set size (KB) = 1625116 + 0: The total amount of wall time = 190.383688 + 0: The maximum resident set size (KB) = 1623428 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_debug Checking test 095 regional_debug 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.269674 - 0: The maximum resident set size (KB) = 885456 + 0: The total amount of wall time = 1022.742049 + 0: The maximum resident set size (KB) = 887824 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_debug Checking test 096 rap_control_debug 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.745979 - 0: The maximum resident set size (KB) = 1168932 + 0: The total amount of wall time = 272.642879 + 0: The maximum resident set size (KB) = 1170836 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_debug Checking test 097 hrrr_control_debug 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.590196 - 0: The maximum resident set size (KB) = 1168596 + 0: The total amount of wall time = 267.970165 + 0: The maximum resident set size (KB) = 1173164 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug 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.528576 - 0: The maximum resident set size (KB) = 1173592 + 0: The total amount of wall time = 279.975636 + 0: The maximum resident set size (KB) = 1175140 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_diag_debug Checking test 099 rap_diag_debug 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.454772 - 0: The maximum resident set size (KB) = 1263052 + 0: The total amount of wall time = 295.833705 + 0: The maximum resident set size (KB) = 1260056 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug 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.417120 - 0: The maximum resident set size (KB) = 1170928 + 0: The total amount of wall time = 280.861960 + 0: The maximum resident set size (KB) = 1173196 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.750515 - 0: The maximum resident set size (KB) = 1173148 + 0: The total amount of wall time = 287.140099 + 0: The maximum resident set size (KB) = 1172844 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_lndp_debug Checking test 102 rap_lndp_debug 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.531938 - 0: The maximum resident set size (KB) = 1175336 + 0: The total amount of wall time = 299.775164 + 0: The maximum resident set size (KB) = 1170796 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_flake_debug Checking test 103 rap_flake_debug 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.982551 - 0: The maximum resident set size (KB) = 1173488 + 0: The total amount of wall time = 278.462184 + 0: The maximum resident set size (KB) = 1172236 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug 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.614952 - 0: The maximum resident set size (KB) = 1176848 + 0: The total amount of wall time = 277.910478 + 0: The maximum resident set size (KB) = 1169060 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_noah_debug Checking test 105 rap_noah_debug 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.427999 - 0: The maximum resident set size (KB) = 1169628 + 0: The total amount of wall time = 275.583400 + 0: The maximum resident set size (KB) = 1177188 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug 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.141650 - 0: The maximum resident set size (KB) = 1173796 + 0: The total amount of wall time = 278.262049 + 0: The maximum resident set size (KB) = 1173512 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.003310 - 0: The maximum resident set size (KB) = 1171896 + 0: The total amount of wall time = 463.974215 + 0: The maximum resident set size (KB) = 1170280 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug 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.502771 - 0: The maximum resident set size (KB) = 1178176 + 0: The total amount of wall time = 279.962891 + 0: The maximum resident set size (KB) = 1140912 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 289.936492 - 0: The maximum resident set size (KB) = 521536 + 0: The total amount of wall time = 310.902856 + 0: The maximum resident set size (KB) = 522836 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 252.647918 - 0: The maximum resident set size (KB) = 1087688 + 0: The total amount of wall time = 300.192800 + 0: The maximum resident set size (KB) = 1094528 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 383.758112 - 0: The maximum resident set size (KB) = 1006020 + 0: The total amount of wall time = 409.977149 + 0: The maximum resident set size (KB) = 1001512 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 203.432345 - 0: The maximum resident set size (KB) = 960216 + 0: The total amount of wall time = 199.697349 + 0: The maximum resident set size (KB) = 904376 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.134561 - 0: The maximum resident set size (KB) = 1030680 + 0: The total amount of wall time = 430.549800 + 0: The maximum resident set size (KB) = 1023092 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 206.607952 - 0: The maximum resident set size (KB) = 1006572 + 0: The total amount of wall time = 205.844018 + 0: The maximum resident set size (KB) = 1004944 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 215.344012 - 0: The maximum resident set size (KB) = 902636 + 0: The total amount of wall time = 210.840531 + 0: The maximum resident set size (KB) = 905488 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.287813 - 0: The maximum resident set size (KB) = 954616 + 0: The total amount of wall time = 283.640350 + 0: The maximum resident set size (KB) = 942716 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.415718 - 0: The maximum resident set size (KB) = 869096 + 0: The total amount of wall time = 102.336733 + 0: The maximum resident set size (KB) = 868344 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.548117 - 0: The maximum resident set size (KB) = 975360 + 0: The total amount of wall time = 276.146607 + 0: The maximum resident set size (KB) = 972832 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 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.325041 - 0: The maximum resident set size (KB) = 1059336 + 0: The total amount of wall time = 275.967615 + 0: The maximum resident set size (KB) = 1060872 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 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.257416 - 0: The maximum resident set size (KB) = 1053436 + 0: The total amount of wall time = 268.454857 + 0: The maximum resident set size (KB) = 1057460 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug 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.234600 - 0: The maximum resident set size (KB) = 1103200 + 0: The total amount of wall time = 285.853197 + 0: The maximum resident set size (KB) = 1092604 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.737592 - 0: The maximum resident set size (KB) = 1055196 + 0: The total amount of wall time = 312.887134 + 0: The maximum resident set size (KB) = 1053460 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 398.032081 - 0: The maximum resident set size (KB) = 1422116 + 0: The total amount of wall time = 467.225919 + 0: The maximum resident set size (KB) = 1424704 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.481844 - 0: The maximum resident set size (KB) = 1229488 + 0: The total amount of wall time = 417.792851 + 0: The maximum resident set size (KB) = 1230944 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 733.354407 - 0: The maximum resident set size (KB) = 1261740 + 0: The total amount of wall time = 800.225245 + 0: The maximum resident set size (KB) = 1260232 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 832.389094 - 0: The maximum resident set size (KB) = 1282792 + 0: The total amount of wall time = 835.929364 + 0: The maximum resident set size (KB) = 1279908 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm 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 = 365.599015 - 0: The maximum resident set size (KB) = 513020 + 0: The total amount of wall time = 381.244364 + 0: The maximum resident set size (KB) = 505840 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 415.958286 - 0: The maximum resident set size (KB) = 515156 + 0: The total amount of wall time = 414.924558 + 0: The maximum resident set size (KB) = 462512 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm 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 = 175.662200 - 0: The maximum resident set size (KB) = 357592 + 0: The total amount of wall time = 177.796777 + 0: The maximum resident set size (KB) = 353644 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 469.955226 - 0: The maximum resident set size (KB) = 427488 + 0: The total amount of wall time = 458.244974 + 0: The maximum resident set size (KB) = 424220 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.514594 - 0: The maximum resident set size (KB) = 525540 + 0: The total amount of wall time = 228.732503 + 0: The maximum resident set size (KB) = 523224 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm 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 = 217.383257 - 0: The maximum resident set size (KB) = 520812 + 0: The total amount of wall time = 217.123713 + 0: The maximum resident set size (KB) = 524396 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.268738 - 0: The maximum resident set size (KB) = 567400 + 0: The total amount of wall time = 286.415148 + 0: The maximum resident set size (KB) = 567684 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm 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.916198 - 0: The maximum resident set size (KB) = 372756 + 0: The total amount of wall time = 68.068170 + 0: The maximum resident set size (KB) = 372676 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 747.687513 - 0: The maximum resident set size (KB) = 587772 + 0: The total amount of wall time = 767.205881 + 0: The maximum resident set size (KB) = 586256 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 542.186519 - 0: The maximum resident set size (KB) = 617936 + 0: The total amount of wall time = 535.659874 + 0: The maximum resident set size (KB) = 620276 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.868688 - 0: The maximum resident set size (KB) = 1231964 + 0: The total amount of wall time = 361.940368 + 0: The maximum resident set size (KB) = 1234596 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst 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.140965 - 0: The maximum resident set size (KB) = 1230980 + 0: The total amount of wall time = 359.957137 + 0: The maximum resident set size (KB) = 1228128 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps 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 = 945.569260 - 0: The maximum resident set size (KB) = 1045080 + 0: The total amount of wall time = 935.386400 + 0: The maximum resident set size (KB) = 1038440 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.198151 - 0: The maximum resident set size (KB) = 1058448 + 0: The total amount of wall time = 146.301524 + 0: The maximum resident set size (KB) = 1069068 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.947296 - 0: The maximum resident set size (KB) = 1008020 + 0: The total amount of wall time = 89.795551 + 0: The maximum resident set size (KB) = 1027020 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.022056 - 0: The maximum resident set size (KB) = 959064 + 0: The total amount of wall time = 145.340231 + 0: The maximum resident set size (KB) = 967048 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.581507 - 0: The maximum resident set size (KB) = 968112 + 0: The total amount of wall time = 146.731199 + 0: The maximum resident set size (KB) = 960924 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.841358 - 0: The maximum resident set size (KB) = 976704 + 0: The total amount of wall time = 148.690260 + 0: The maximum resident set size (KB) = 970292 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.747532 - 0: The maximum resident set size (KB) = 1074384 + 0: The total amount of wall time = 146.904658 + 0: The maximum resident set size (KB) = 1065564 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.278170 - 0: The maximum resident set size (KB) = 1071232 + 0: The total amount of wall time = 144.742426 + 0: The maximum resident set size (KB) = 1077088 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.761412 - 0: The maximum resident set size (KB) = 972640 + 0: The total amount of wall time = 145.280203 + 0: The maximum resident set size (KB) = 964556 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr 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 = 446.164853 - 0: The maximum resident set size (KB) = 881144 + 0: The total amount of wall time = 432.216900 + 0: The maximum resident set size (KB) = 883584 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs 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 = 447.343849 - 0: The maximum resident set size (KB) = 926128 + 0: The total amount of wall time = 452.654056 + 0: The maximum resident set size (KB) = 929892 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.634590 - 0: The maximum resident set size (KB) = 1055320 + 0: The total amount of wall time = 143.535851 + 0: The maximum resident set size (KB) = 1074024 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 197.917689 - 0: The maximum resident set size (KB) = 2365664 + 0: The total amount of wall time = 200.885737 + 0: The maximum resident set size (KB) = 2357588 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 198.168709 - 0: The maximum resident set size (KB) = 2359908 + 0: The total amount of wall time = 200.305562 + 0: The maximum resident set size (KB) = 2352240 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 354.017644 - 0: The maximum resident set size (KB) = 991668 + 0: The total amount of wall time = 358.782533 + 0: The maximum resident set size (KB) = 995112 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.991181 - 0: The maximum resident set size (KB) = 1070184 + 0: The total amount of wall time = 151.496396 + 0: The maximum resident set size (KB) = 1028396 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 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 @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.030856 - 0: The maximum resident set size (KB) = 261612 + 0: The total amount of wall time = 7.421626 + 0: The maximum resident set size (KB) = 260444 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst 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 @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.267089 - 0: The maximum resident set size (KB) = 284856 + 0: The total amount of wall time = 18.881271 + 0: The maximum resident set size (KB) = 273100 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 203.681403 - 0: The maximum resident set size (KB) = 1606260 + 0: The total amount of wall time = 208.973431 + 0: The maximum resident set size (KB) = 1615744 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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.705737 - 0: The maximum resident set size (KB) = 1645460 + 0: The total amount of wall time = 95.535265 + 0: The maximum resident set size (KB) = 1637160 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.494969 - 0: The maximum resident set size (KB) = 665408 + 0: The total amount of wall time = 88.006758 + 0: The maximum resident set size (KB) = 662596 Test 159 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.145887 - 0: The maximum resident set size (KB) = 2975780 + 0: The total amount of wall time = 231.506948 + 0: The maximum resident set size (KB) = 2901316 Test 160 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.132207 - 0: The maximum resident set size (KB) = 3050592 + 0: The total amount of wall time = 280.125635 + 0: The maximum resident set size (KB) = 3052032 Test 161 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing 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.603984 - 0: The maximum resident set size (KB) = 3055608 + 0: The total amount of wall time = 286.367837 + 0: The maximum resident set size (KB) = 3049360 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 615.116390 - 0: The maximum resident set size (KB) = 1478476 + 0: The total amount of wall time = 625.820746 + 0: The maximum resident set size (KB) = 1479892 Test 163 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1205.516766 - 0: The maximum resident set size (KB) = 1401464 + 0: The total amount of wall time = 1240.038893 + 0: The maximum resident set size (KB) = 1398692 Test 164 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 541.524071 - 0: The maximum resident set size (KB) = 1474248 + 0: The total amount of wall time = 545.173445 + 0: The maximum resident set size (KB) = 1481952 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 22 14:16:41 CDT 2023 -Elapsed time: 01h:14m:53s. Have a nice day! +Tue Apr 25 10:19:11 CDT 2023 +Elapsed time: 01h:15m:56s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 529b8cf657..5cff1d5ace 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,35 +1,34 @@ -Mon Apr 24 12:59:32 UTC 2023 +Tue Apr 25 01:34:50 UTC 2023 Start Regression test -Test 012 compile FAIL - -Compile 001 elapsed time 589 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1114 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 2263 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 510 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1121 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 873 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 962 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 009 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 2135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 2220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1673 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 019 elapsed time 1175 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1515 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 2527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1329 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 2053 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 1049 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 1437 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_mixedmode +Compile 001 elapsed time 813 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1766 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 533 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1901 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1045 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1046 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 826 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 225 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 680 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 987 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 019 elapsed time 423 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1122 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1149 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 826 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 970 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.786944 -The maximum resident set size (KB) = 2954188 +The total amount of wall time = 340.001886 +The maximum resident set size (KB) = 2953484 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -166,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.428658 -The maximum resident set size (KB) = 2981552 +The total amount of wall time = 391.877435 +The maximum resident set size (KB) = 2983508 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -226,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.382308 -The maximum resident set size (KB) = 2871276 +The total amount of wall time = 235.956127 +The maximum resident set size (KB) = 2873452 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -298,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.675576 -The maximum resident set size (KB) = 2993652 +The total amount of wall time = 393.197844 +The maximum resident set size (KB) = 2994132 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -358,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 245.986310 -The maximum resident set size (KB) = 2880060 +The total amount of wall time = 235.985489 +The maximum resident set size (KB) = 2884632 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -418,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.611283 -The maximum resident set size (KB) = 3283632 +The total amount of wall time = 372.954929 +The maximum resident set size (KB) = 3286324 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -478,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.471617 -The maximum resident set size (KB) = 2977728 +The total amount of wall time = 386.889054 +The maximum resident set size (KB) = 2982984 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -538,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.137772 -The maximum resident set size (KB) = 2910048 +The total amount of wall time = 318.863659 +The maximum resident set size (KB) = 2922880 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -610,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.377634 -The maximum resident set size (KB) = 2980368 +The total amount of wall time = 390.747703 +The maximum resident set size (KB) = 2987300 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -665,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 936.996522 -The maximum resident set size (KB) = 3920880 +The total amount of wall time = 945.765071 +The maximum resident set size (KB) = 3922176 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -720,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 651.935188 -The maximum resident set size (KB) = 3896992 +The total amount of wall time = 671.830979 +The maximum resident set size (KB) = 3896688 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -791,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 281.641551 -The maximum resident set size (KB) = 1575968 +The total amount of wall time = 284.112706 +The maximum resident set size (KB) = 1575508 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -860,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 298.902385 -The maximum resident set size (KB) = 1635732 +The total amount of wall time = 302.515510 +The maximum resident set size (KB) = 1628184 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -929,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid 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 = 306.436427 -The maximum resident set size (KB) = 1628592 +The total amount of wall time = 308.277910 +The maximum resident set size (KB) = 1623840 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -986,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 433.637237 -The maximum resident set size (KB) = 2636848 +The total amount of wall time = 440.804071 +The maximum resident set size (KB) = 2640584 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1043,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 122.526893 -The maximum resident set size (KB) = 2654352 +The total amount of wall time = 125.741119 +The maximum resident set size (KB) = 2656936 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1100,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.401655 -The maximum resident set size (KB) = 2072660 +The total amount of wall time = 71.214394 +The maximum resident set size (KB) = 2071140 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1172,15 +1171,33 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.884060 -The maximum resident set size (KB) = 2979692 +The total amount of wall time = 384.508364 +The maximum resident set size (KB) = 2985052 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_flake +Checking test 019 control_flake 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 = 215.676452 +The maximum resident set size (KB) = 568584 + +Test 019 control_flake PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1206,15 +1223,15 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.389203 -The maximum resident set size (KB) = 518472 +The total amount of wall time = 130.713541 +The maximum resident set size (KB) = 520448 -Test 019 control_CubedSphereGrid PASS +Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_latlon -Checking test 020 control_latlon results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_latlon +Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1224,15 +1241,15 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.968888 -The maximum resident set size (KB) = 517172 +The total amount of wall time = 133.657363 +The maximum resident set size (KB) = 519504 -Test 020 control_latlon PASS +Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1242,15 +1259,15 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.753891 -The maximum resident set size (KB) = 513400 +The total amount of wall time = 135.388301 +The maximum resident set size (KB) = 517448 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c48 -Checking test 022 control_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c48 +Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1288,15 +1305,15 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.610061 -The maximum resident set size (KB) = 673976 +The total amount of wall time = 327.192590 +The maximum resident set size (KB) = 680900 -Test 022 control_c48 PASS +Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c192 -Checking test 023 control_c192 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c192 +Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1306,15 +1323,15 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.961170 -The maximum resident set size (KB) = 616828 +The total amount of wall time = 528.809717 +The maximum resident set size (KB) = 621520 -Test 023 control_c192 PASS +Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384 -Checking test 024 control_c384 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c384 +Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1324,15 +1341,15 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 589.700932 -The maximum resident set size (KB) = 920804 +The total amount of wall time = 566.547287 +The maximum resident set size (KB) = 935640 -Test 024 control_c384 PASS +Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384gdas -Checking test 025 control_c384gdas results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c384gdas +Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1374,15 +1391,15 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 498.218990 -The maximum resident set size (KB) = 1064028 +The total amount of wall time = 495.644387 +The maximum resident set size (KB) = 1064724 -Test 025 control_c384gdas PASS +Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy -Checking test 026 control_stochy results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy +Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1392,29 +1409,29 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.417520 -The maximum resident set size (KB) = 522660 +The total amount of wall time = 90.294792 +The maximum resident set size (KB) = 525916 -Test 026 control_stochy PASS +Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy_restart -Checking test 027 control_stochy_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy_restart +Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.242742 -The maximum resident set size (KB) = 290832 +The total amount of wall time = 50.322031 +The maximum resident set size (KB) = 296000 -Test 027 control_stochy_restart PASS +Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_lndp +Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1424,15 +1441,15 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.451979 -The maximum resident set size (KB) = 520864 +The total amount of wall time = 83.224283 +The maximum resident set size (KB) = 522204 -Test 028 control_lndp PASS +Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr4 -Checking test 029 control_iovr4 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_iovr4 +Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1446,15 +1463,15 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.424906 -The maximum resident set size (KB) = 516640 +The total amount of wall time = 136.468942 +The maximum resident set size (KB) = 520820 -Test 029 control_iovr4 PASS +Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr5 -Checking test 030 control_iovr5 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_iovr5 +Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1485,15 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.648895 -The maximum resident set size (KB) = 519496 +The total amount of wall time = 135.818032 +The maximum resident set size (KB) = 522432 -Test 030 control_iovr5 PASS +Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8 +Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1522,15 +1539,15 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.641218 -The maximum resident set size (KB) = 1485720 +The total amount of wall time = 180.231538 +The maximum resident set size (KB) = 1488380 -Test 031 control_p8 PASS +Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_p8 -Checking test 032 control_restart_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1568,15 +1585,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.539990 -The maximum resident set size (KB) = 656120 +The total amount of wall time = 105.972900 +The maximum resident set size (KB) = 659764 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_qr_p8 -Checking test 033 control_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_qr_p8 +Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1622,15 +1639,15 @@ Checking test 033 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 179.926871 -The maximum resident set size (KB) = 1498956 +The total amount of wall time = 179.075772 +The maximum resident set size (KB) = 1494784 -Test 033 control_qr_p8 PASS +Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_qr_p8 -Checking test 034 control_restart_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_restart_qr_p8 +Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1668,15 +1685,15 @@ Checking test 034 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 101.997620 -The maximum resident set size (KB) = 666896 +The total amount of wall time = 105.970015 +The maximum resident set size (KB) = 668788 -Test 034 control_restart_qr_p8 PASS +Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1718,15 +1735,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 200.108793 -The maximum resident set size (KB) = 1479360 +The total amount of wall time = 182.475428 +The maximum resident set size (KB) = 1489336 -Test 035 control_decomp_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1768,15 +1785,15 @@ Checking test 036 control_2threads_p8 results .... 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.135736 -The maximum resident set size (KB) = 1580672 +The total amount of wall time = 157.310533 +The maximum resident set size (KB) = 1575452 -Test 036 control_2threads_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_lndp -Checking test 037 control_p8_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_lndp +Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1794,15 +1811,15 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 330.925937 -The maximum resident set size (KB) = 1488000 +The total amount of wall time = 321.669075 +The maximum resident set size (KB) = 1487980 -Test 037 control_p8_lndp PASS +Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_rrtmgp -Checking test 038 control_p8_rrtmgp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1848,15 +1865,15 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 251.732612 -The maximum resident set size (KB) = 1547224 +The total amount of wall time = 236.029674 +The maximum resident set size (KB) = 1550064 -Test 038 control_p8_rrtmgp PASS +Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_mynn -Checking test 039 control_p8_mynn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_mynn +Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1902,15 +1919,15 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 195.904170 -The maximum resident set size (KB) = 1498264 +The total amount of wall time = 181.534677 +The maximum resident set size (KB) = 1486308 -Test 039 control_p8_mynn PASS +Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/merra2_thompson -Checking test 040 merra2_thompson results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/merra2_thompson +Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1956,15 +1973,15 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.681940 -The maximum resident set size (KB) = 1491160 +The total amount of wall time = 205.300003 +The maximum resident set size (KB) = 1497852 -Test 040 merra2_thompson PASS +Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control -Checking test 041 regional_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control +Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1974,29 +1991,29 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.992347 -The maximum resident set size (KB) = 657496 +The total amount of wall time = 292.945252 +The maximum resident set size (KB) = 660052 -Test 041 regional_control PASS +Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart -Checking test 042 regional_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_restart +Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.597256 -The maximum resident set size (KB) = 653292 +The total amount of wall time = 164.919689 +The maximum resident set size (KB) = 654936 -Test 042 regional_restart PASS +Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_qr -Checking test 043 regional_control_qr results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control_qr +Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2006,29 +2023,29 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.573372 -The maximum resident set size (KB) = 653556 +The total amount of wall time = 293.707452 +The maximum resident set size (KB) = 659648 -Test 043 regional_control_qr PASS +Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart_qr -Checking test 044 regional_restart_qr results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_restart_qr +Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.610277 -The maximum resident set size (KB) = 653332 +The total amount of wall time = 161.915663 +The maximum resident set size (KB) = 660728 -Test 044 regional_restart_qr PASS +Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_decomp -Checking test 045 regional_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_decomp +Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2038,15 +2055,15 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 325.659223 -The maximum resident set size (KB) = 654516 +The total amount of wall time = 310.196459 +The maximum resident set size (KB) = 658016 -Test 045 regional_decomp PASS +Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2threads -Checking test 046 regional_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_2threads +Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2056,44 +2073,44 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 193.509057 -The maximum resident set size (KB) = 693768 +The total amount of wall time = 181.326331 +The maximum resident set size (KB) = 697080 -Test 046 regional_2threads PASS +Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_noquilt -Checking test 047 regional_noquilt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_noquilt +Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.075000 -The maximum resident set size (KB) = 650708 +The total amount of wall time = 317.633157 +The maximum resident set size (KB) = 651488 -Test 047 regional_noquilt PASS +Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_netcdf_parallel -Checking test 048 regional_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_netcdf_parallel +Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 290.159693 -The maximum resident set size (KB) = 650444 +The total amount of wall time = 286.236683 +The maximum resident set size (KB) = 654196 -Test 048 regional_netcdf_parallel PASS +Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2dwrtdecomp -Checking test 049 regional_2dwrtdecomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_2dwrtdecomp +Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2103,15 +2120,15 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.258222 -The maximum resident set size (KB) = 654280 +The total amount of wall time = 290.824230 +The maximum resident set size (KB) = 655852 -Test 049 regional_2dwrtdecomp PASS +Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_wofs -Checking test 050 regional_wofs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_wofs +Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2121,15 +2138,15 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.468870 -The maximum resident set size (KB) = 342520 +The total amount of wall time = 370.850743 +The maximum resident set size (KB) = 346728 -Test 050 regional_wofs PASS +Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control -Checking test 051 rap_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control +Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2192,15 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.516176 -The maximum resident set size (KB) = 891092 +The total amount of wall time = 426.408955 +The maximum resident set size (KB) = 897632 -Test 051 rap_control PASS +Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_spp_sppt_shum_skeb +Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2193,15 +2210,15 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 245.803208 -The maximum resident set size (KB) = 990588 +The total amount of wall time = 246.958778 +The maximum resident set size (KB) = 983776 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_decomp -Checking test 053 rap_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_decomp +Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2247,15 +2264,15 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.654119 -The maximum resident set size (KB) = 896048 +The total amount of wall time = 435.465914 +The maximum resident set size (KB) = 898648 -Test 053 rap_decomp PASS +Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads -Checking test 054 rap_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_2threads +Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2301,15 +2318,15 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 388.907757 -The maximum resident set size (KB) = 970204 +The total amount of wall time = 387.026344 +The maximum resident set size (KB) = 973852 -Test 054 rap_2threads PASS +Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart -Checking test 055 rap_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_restart +Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2347,15 +2364,15 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.645148 -The maximum resident set size (KB) = 649556 +The total amount of wall time = 214.220548 +The maximum resident set size (KB) = 648204 -Test 055 rap_restart PASS +Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff -Checking test 056 rap_sfcdiff results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff +Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2401,15 +2418,15 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 423.262494 -The maximum resident set size (KB) = 894008 +The total amount of wall time = 421.484752 +The maximum resident set size (KB) = 893364 -Test 056 rap_sfcdiff PASS +Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_decomp +Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2455,15 +2472,15 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.354757 -The maximum resident set size (KB) = 894784 +The total amount of wall time = 439.361313 +The maximum resident set size (KB) = 898140 -Test 057 rap_sfcdiff_decomp PASS +Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_restart +Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2501,15 +2518,15 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.769795 -The maximum resident set size (KB) = 645264 +The total amount of wall time = 311.059053 +The maximum resident set size (KB) = 647844 -Test 058 rap_sfcdiff_restart PASS +Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control -Checking test 059 hrrr_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control +Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2522,48 +2539,48 @@ Checking test 059 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 406.789067 -The maximum resident set size (KB) = 895696 - -Test 059 hrrr_control PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp -Checking test 060 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 391.966938 +The maximum resident set size (KB) = 892764 + +Test 060 hrrr_control PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_decomp +Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2576,48 +2593,48 @@ Checking test 060 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 421.128381 -The maximum resident set size (KB) = 894680 - -Test 060 hrrr_control_decomp PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads -Checking test 061 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 406.295730 +The maximum resident set size (KB) = 891460 + +Test 061 hrrr_control_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_2threads +Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2630,94 +2647,62 @@ Checking test 061 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 374.072111 -The maximum resident set size (KB) = 961276 - -Test 061 hrrr_control_2threads PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart -Checking test 062 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 352.018282 +The maximum resident set size (KB) = 959628 + +Test 062 hrrr_control_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_restart +Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.532114 -The maximum resident set size (KB) = 640484 +The total amount of wall time = 287.085873 +The maximum resident set size (KB) = 645640 -Test 062 hrrr_control_restart PASS +Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1beta -Checking test 063 rrfs_v1beta results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1beta +Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2763,15 +2748,15 @@ Checking test 063 rrfs_v1beta results .... 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.091979 -The maximum resident set size (KB) = 894008 +The total amount of wall time = 422.205324 +The maximum resident set size (KB) = 895836 -Test 063 rrfs_v1beta PASS +Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl -Checking test 064 rrfs_v1nssl results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1nssl +Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2785,15 +2770,15 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.173609 -The maximum resident set size (KB) = 579812 +The total amount of wall time = 482.519029 +The maximum resident set size (KB) = 585844 -Test 064 rrfs_v1nssl PASS +Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1nssl_nohailnoccn +Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2807,15 +2792,15 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.839734 -The maximum resident set size (KB) = 573532 +The total amount of wall time = 473.651330 +The maximum resident set size (KB) = 574552 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm +Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2823,15 +2808,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 149.146413 -The maximum resident set size (KB) = 802528 +The total amount of wall time = 145.634869 +The maximum resident set size (KB) = 801492 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2839,15 +2824,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 106.625431 -The maximum resident set size (KB) = 806268 +The total amount of wall time = 103.969064 +The maximum resident set size (KB) = 803560 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm +Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2855,15 +2840,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.435385 -The maximum resident set size (KB) = 783120 +The total amount of wall time = 140.189998 +The maximum resident set size (KB) = 795300 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_radar_tten_warm +Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2871,27 +2856,27 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.744601 -The maximum resident set size (KB) = 806468 +The total amount of wall time = 155.268933 +The maximum resident set size (KB) = 807192 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.626581 -The maximum resident set size (KB) = 767764 +The total amount of wall time = 68.620298 +The maximum resident set size (KB) = 771980 -Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmg -Checking test 071 control_csawmg results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmg +Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2901,15 +2886,15 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.275207 -The maximum resident set size (KB) = 584444 +The total amount of wall time = 352.731147 +The maximum resident set size (KB) = 585948 -Test 071 control_csawmg PASS +Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmgt -Checking test 072 control_csawmgt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmgt +Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2919,15 +2904,15 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 364.245652 -The maximum resident set size (KB) = 583840 +The total amount of wall time = 347.335254 +The maximum resident set size (KB) = 585900 -Test 072 control_csawmgt PASS +Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_ras -Checking test 073 control_ras results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_ras +Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2937,27 +2922,27 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.458349 -The maximum resident set size (KB) = 552340 +The total amount of wall time = 189.592706 +The maximum resident set size (KB) = 552880 -Test 073 control_ras PASS +Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam -Checking test 074 control_wam results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wam +Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.067153 -The maximum resident set size (KB) = 275504 +The total amount of wall time = 118.717535 +The maximum resident set size (KB) = 275452 -Test 074 control_wam PASS +Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_faster -Checking test 075 control_p8_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_faster +Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3003,15 +2988,15 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.289726 -The maximum resident set size (KB) = 1493756 +The total amount of wall time = 178.549647 +The maximum resident set size (KB) = 1487340 -Test 075 control_p8_faster PASS +Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_faster -Checking test 076 regional_control_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control_faster +Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3021,775 +3006,455 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.851219 -The maximum resident set size (KB) = 653092 +The total amount of wall time = 286.845675 +The maximum resident set size (KB) = 659584 -Test 076 regional_control_faster PASS +Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam_debug -Checking test 103 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 297.294187 -The maximum resident set size (KB) = 302664 +The total amount of wall time = 918.267553 +The maximum resident set size (KB) = 834056 -Test 103 control_wam_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 232.449938 -The maximum resident set size (KB) = 887800 +The total amount of wall time = 527.116577 +The maximum resident set size (KB) = 831224 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug 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 = 815.262939 +The maximum resident set size (KB) = 822580 + +Test 080 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug 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 = 353.386201 -The maximum resident set size (KB) = 782124 +The total amount of wall time = 159.833838 +The maximum resident set size (KB) = 680304 -Test 105 rap_control_dyn32_phy32 PASS +Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug 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/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 188.356154 -The maximum resident set size (KB) = 776808 +The total amount of wall time = 159.720755 +The maximum resident set size (KB) = 683876 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy_debug +Checking test 083 control_stochy_debug 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 = 332.172607 -The maximum resident set size (KB) = 833488 +The total amount of wall time = 180.842088 +The maximum resident set size (KB) = 687104 -Test 107 rap_2threads_dyn32_phy32 PASS +Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_lndp_debug +Checking test 084 control_lndp_debug 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/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 173.043021 -The maximum resident set size (KB) = 832080 +The total amount of wall time = 162.417269 +The maximum resident set size (KB) = 686040 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmg_debug +Checking test 085 control_csawmg_debug 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/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 195.623567 -The maximum resident set size (KB) = 777624 - -Test 109 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 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 + Comparing atmf001.nc .........OK -The total amount of wall time = 260.245192 -The maximum resident set size (KB) = 615148 +The total amount of wall time = 255.902153 +The maximum resident set size (KB) = 727928 -Test 110 rap_restart_dyn32_phy32 PASS +Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 96.968978 -The maximum resident set size (KB) = 607968 +The total amount of wall time = 252.671875 +The maximum resident set size (KB) = 723872 -Test 111 hrrr_control_restart_dyn32_phy32 PASS +Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_ras_debug +Checking test 087 control_ras_debug 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/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 245.604524 -The maximum resident set size (KB) = 793952 +The total amount of wall time = 163.427095 +The maximum resident set size (KB) = 694096 -Test 112 rap_control_dyn64_phy32 PASS +Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_diag_debug +Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.219485 -The maximum resident set size (KB) = 942148 +The total amount of wall time = 164.735275 +The maximum resident set size (KB) = 740324 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_debug_p8 +Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.418426 -The maximum resident set size (KB) = 934880 +The total amount of wall time = 186.244542 +The maximum resident set size (KB) = 1510392 + +Test 089 control_debug_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_debug +Checking test 090 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 1047.339132 +The maximum resident set size (KB) = 681656 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_debug +Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.636388 -The maximum resident set size (KB) = 955432 +The total amount of wall time = 308.379621 +The maximum resident set size (KB) = 1055756 -Test 115 rap_control_dyn64_phy32_debug PASS +Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 275.096473 -The maximum resident set size (KB) = 825000 +The total amount of wall time = 291.861001 +The maximum resident set size (KB) = 1050644 -Test 116 hafs_regional_atm PASS +Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_thompson_gfdlsf -Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 316.464386 -The maximum resident set size (KB) = 1185620 +The total amount of wall time = 299.846912 +The maximum resident set size (KB) = 1055600 -Test 117 hafs_regional_atm_thompson_gfdlsf PASS +Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_diag_debug +Checking test 094 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 391.437555 -The maximum resident set size (KB) = 858736 +The total amount of wall time = 311.695973 +The maximum resident set size (KB) = 1140584 -Test 118 hafs_regional_atm_ocn PASS +Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 705.815195 -The maximum resident set size (KB) = 890876 +The total amount of wall time = 309.185274 +The maximum resident set size (KB) = 1058516 -Test 119 hafs_regional_atm_wav PASS +Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn_wav -Checking test 120 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 899.418705 -The maximum resident set size (KB) = 915200 +The total amount of wall time = 306.960885 +The maximum resident set size (KB) = 1059620 -Test 120 hafs_regional_atm_ocn_wav PASS +Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_1nest_atm -Checking test 121 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 338.143935 -The maximum resident set size (KB) = 395516 +The total amount of wall time = 303.343090 +The maximum resident set size (KB) = 1056380 -Test 121 hafs_regional_1nest_atm PASS +Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_telescopic_2nests_atm -Checking test 122 hafs_regional_telescopic_2nests_atm 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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 404.011449 -The maximum resident set size (KB) = 405352 +The total amount of wall time = 301.167759 +The maximum resident set size (KB) = 1056728 -Test 122 hafs_regional_telescopic_2nests_atm PASS +Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_1nest_atm -Checking test 123 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 173.408393 -The maximum resident set size (KB) = 266360 +The total amount of wall time = 294.755934 +The maximum resident set size (KB) = 1051408 -Test 123 hafs_global_1nest_atm PASS +Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_multiple_4nests_atm -Checking test 124 hafs_global_multiple_4nests_atm 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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 490.282445 -The maximum resident set size (KB) = 350360 +The total amount of wall time = 300.759388 +The maximum resident set size (KB) = 1060788 -Test 124 hafs_global_multiple_4nests_atm PASS +Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_specified_moving_1nest_atm -Checking test 125 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 219.430252 -The maximum resident set size (KB) = 408844 +The total amount of wall time = 495.085353 +The maximum resident set size (KB) = 1058112 -Test 125 hafs_regional_specified_moving_1nest_atm PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm -Checking test 126 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 213.039662 -The maximum resident set size (KB) = 408800 +The total amount of wall time = 298.325036 +The maximum resident set size (KB) = 1049944 -Test 126 hafs_regional_storm_following_1nest_atm PASS +Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_clm_lake_debug +Checking test 103 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 254.164521 -The maximum resident set size (KB) = 495172 +The total amount of wall time = 379.757465 +The maximum resident set size (KB) = 1057800 -Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_storm_following_1nest_atm -Checking test 128 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_flake_debug +Checking test 104 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 85.543090 -The maximum resident set size (KB) = 291076 +The total amount of wall time = 300.856289 +The maximum resident set size (KB) = 1059060 -Test 128 hafs_global_storm_following_1nest_atm PASS +Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wam_debug +Checking test 105 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 805.965424 -The maximum resident set size (KB) = 491240 +The total amount of wall time = 295.989475 +The maximum resident set size (KB) = 306264 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 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 = 506.890615 -The maximum resident set size (KB) = 529368 +The total amount of wall time = 235.339661 +The maximum resident set size (KB) = 904664 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_atmlnd_sbs -Checking test 131 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 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 @@ -3822,77 +3487,82 @@ Checking test 131 control_p8_atmlnd_sbs results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 254.506716 -The maximum resident set size (KB) = 1541332 +The total amount of wall time = 356.195688 +The maximum resident set size (KB) = 777196 -Test 131 control_p8_atmlnd_sbs PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8 -Checking test 132 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 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 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 ............ALT CHECK......ERROR - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad -Checking test 133 atmaero_control_p8_rad results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 181.081766 +The maximum resident set size (KB) = 781356 + +Test 108 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 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 @@ -3926,24 +3596,127 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.990505 -The maximum resident set size (KB) = 2879264 +The total amount of wall time = 332.278035 +The maximum resident set size (KB) = 836116 -Test 133 atmaero_control_p8_rad PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad_micro -Checking test 134 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 163.037889 +The maximum resident set size (KB) = 822404 + +Test 110 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 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/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 188.921828 +The maximum resident set size (KB) = 775188 + +Test 111 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 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 @@ -3977,478 +3750,504 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 295.965472 -The maximum resident set size (KB) = 2886548 - -Test 134 atmaero_control_p8_rad_micro PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq -Checking test 135 regional_atmaq 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 = 988.702540 -The maximum resident set size (KB) = 1259292 - -Test 135 regional_atmaq PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_debug -Checking test 136 regional_atmaq_debug 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 = 1329.841478 -The maximum resident set size (KB) = 1289728 - -Test 136 regional_atmaq_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_faster -Checking test 137 regional_atmaq_faster 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 = 764.609880 -The maximum resident set size (KB) = 1258652 - -Test 137 regional_atmaq_faster PASS - -FAILED TESTS: -Test atmaero_control_p8 132 failed in run_test failed -Test compile_012 failed in run_compile failed - -REGRESSION TEST FAILED -Mon Apr 24 14:34:04 UTC 2023 -Elapsed time: 01h:34m:33s. Have a nice day! -Mon Apr 24 14:37:59 UTC 2023 -Start Regression test - -Compile 001 elapsed time 209 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 001 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 907.828960 -The maximum resident set size (KB) = 834208 - -Test 001 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 523.101721 -The maximum resident set size (KB) = 830936 - -Test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +The total amount of wall time = 270.255535 +The maximum resident set size (KB) = 619432 +Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_conus13km_hrrr_warm_debug -Checking test 003 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK -The total amount of wall time = 810.772608 -The maximum resident set size (KB) = 802388 - -Test 003 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_CubedSphereGrid_debug -Checking test 004 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 158.821739 -The maximum resident set size (KB) = 673868 +The total amount of wall time = 94.862429 +The maximum resident set size (KB) = 604820 -Test 004 control_CubedSphereGrid_debug PASS +Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_wrtGauss_netcdf_parallel_debug -Checking test 005 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 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/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.668342 -The maximum resident set size (KB) = 677184 +The total amount of wall time = 236.226549 +The maximum resident set size (KB) = 793204 -Test 005 control_wrtGauss_netcdf_parallel_debug PASS +Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_stochy_debug -Checking test 006 control_stochy_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.640409 -The maximum resident set size (KB) = 685172 +The total amount of wall time = 295.116520 +The maximum resident set size (KB) = 940488 -Test 006 control_stochy_debug PASS +Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_lndp_debug -Checking test 007 control_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.334670 -The maximum resident set size (KB) = 682840 +The total amount of wall time = 288.227537 +The maximum resident set size (KB) = 939648 -Test 007 control_lndp_debug PASS +Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmg_debug -Checking test 008 control_csawmg_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.294985 -The maximum resident set size (KB) = 719888 +The total amount of wall time = 297.757859 +The maximum resident set size (KB) = 957784 -Test 008 control_csawmg_debug PASS +Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmgt_debug -Checking test 009 control_csawmgt_debug 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-20230424/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 252.602767 -The maximum resident set size (KB) = 722360 +The total amount of wall time = 276.613477 +The maximum resident set size (KB) = 824016 -Test 009 control_csawmgt_debug PASS +Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_ras_debug -Checking test 010 control_ras_debug 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-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_thompson_gfdlsf +Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -The total amount of wall time = 162.257201 -The maximum resident set size (KB) = 694868 +The total amount of wall time = 330.753986 +The maximum resident set size (KB) = 1183320 -Test 010 control_ras_debug PASS +Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_diag_debug -Checking test 011 control_diag_debug 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-20230424/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 164.961975 -The maximum resident set size (KB) = 737296 +The total amount of wall time = 399.785582 +The maximum resident set size (KB) = 860852 -Test 011 control_diag_debug PASS +Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_debug_p8 -Checking test 012 control_debug_p8 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-20230424/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + 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 = 186.065222 -The maximum resident set size (KB) = 1505676 +The total amount of wall time = 712.474343 +The maximum resident set size (KB) = 896568 -Test 012 control_debug_p8 PASS +Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/regional_debug -Checking test 013 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + 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 = 1037.325789 -The maximum resident set size (KB) = 677636 +The total amount of wall time = 902.081405 +The maximum resident set size (KB) = 919484 -Test 013 regional_debug PASS +Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_control_debug -Checking test 014 rap_control_debug 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-20230424/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_1nest_atm +Checking test 123 hafs_regional_1nest_atm 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 = 296.944590 -The maximum resident set size (KB) = 1054700 +The total amount of wall time = 335.720823 +The maximum resident set size (KB) = 396212 -Test 014 rap_control_debug PASS +Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/hrrr_control_debug -Checking test 015 hrrr_control_debug 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-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_telescopic_2nests_atm +Checking test 124 hafs_regional_telescopic_2nests_atm 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 -The total amount of wall time = 290.306582 -The maximum resident set size (KB) = 1047212 +The total amount of wall time = 404.645006 +The maximum resident set size (KB) = 403824 -Test 015 hrrr_control_debug PASS +Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_drag_suite_debug -Checking test 016 rap_unified_drag_suite_debug 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-20230424/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_1nest_atm +Checking test 125 hafs_global_1nest_atm 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 = 296.234072 -The maximum resident set size (KB) = 1057256 +The total amount of wall time = 174.475008 +The maximum resident set size (KB) = 270900 -Test 016 rap_unified_drag_suite_debug PASS +Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_diag_debug -Checking test 017 rap_diag_debug 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-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_multiple_4nests_atm +Checking test 126 hafs_global_multiple_4nests_atm 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 -The total amount of wall time = 307.911077 -The maximum resident set size (KB) = 1135276 +The total amount of wall time = 490.421231 +The maximum resident set size (KB) = 347856 -Test 017 rap_diag_debug PASS +Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_cires_ugwp_debug -Checking test 018 rap_cires_ugwp_debug 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-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_specified_moving_1nest_atm +Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 302.521620 -The maximum resident set size (KB) = 1053676 +The total amount of wall time = 220.197761 +The maximum resident set size (KB) = 411776 -Test 018 rap_cires_ugwp_debug PASS +Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_ugwp_debug -Checking test 019 rap_unified_ugwp_debug 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-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm +Checking test 128 hafs_regional_storm_following_1nest_atm 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 = 303.310686 -The maximum resident set size (KB) = 1056240 +The total amount of wall time = 206.943437 +The maximum resident set size (KB) = 413628 -Test 019 rap_unified_ugwp_debug PASS +Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_lndp_debug -Checking test 020 rap_lndp_debug 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-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 300.522189 -The maximum resident set size (KB) = 1054548 +The total amount of wall time = 260.872560 +The maximum resident set size (KB) = 471132 -Test 020 rap_lndp_debug PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_flake_debug -Checking test 021 rap_flake_debug 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-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_storm_following_1nest_atm +Checking test 130 hafs_global_storm_following_1nest_atm 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 = 296.139168 -The maximum resident set size (KB) = 1053616 +The total amount of wall time = 86.952880 +The maximum resident set size (KB) = 281604 -Test 021 rap_flake_debug PASS +Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_progcld_thompson_debug -Checking test 022 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK - -The total amount of wall time = 297.245024 -The maximum resident set size (KB) = 1057192 - -Test 022 rap_progcld_thompson_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_debug -Checking test 023 rap_noah_debug results .... - Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 291.404869 -The maximum resident set size (KB) = 1048908 +The total amount of wall time = 806.226257 +The maximum resident set size (KB) = 497256 -Test 023 rap_noah_debug PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_sfcdiff_debug -Checking test 024 rap_sfcdiff_debug 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-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 297.967733 -The maximum resident set size (KB) = 1052580 +The total amount of wall time = 506.702596 +The maximum resident set size (KB) = 528772 -Test 024 rap_sfcdiff_debug PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug 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-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_atmlnd_sbs +Checking test 133 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 487.318256 -The maximum resident set size (KB) = 1051996 +The total amount of wall time = 239.379563 +The maximum resident set size (KB) = 1547396 -Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_v1beta_debug -Checking test 026 rrfs_v1beta_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8 +Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.024711 -The maximum resident set size (KB) = 1046360 +The total amount of wall time = 251.143116 +The maximum resident set size (KB) = 2815120 -Test 026 rrfs_v1beta_debug PASS +Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/atmaero_control_p8 -Checking test 027 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8_rad +Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4482,21 +4281,24 @@ Checking test 027 atmaero_control_p8 results .... 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 ............ALT CHECK......ERROR -FAILED TESTS: -Test atmaero_control_p8 027 failed in run_test failed - -REGRESSION TEST FAILED -Mon Apr 24 15:02:40 UTC 2023 -Elapsed time: 00h:24m:42s. Have a nice day! -Mon Apr 24 15:55:26 UTC 2023 -Start Regression test + 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.061763 +The maximum resident set size (KB) = 2878984 -Compile 001 elapsed time 459 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_92479/atmaero_control_p8 -Checking test 001 atmaero_control_p8 results .... + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8_rad_micro +Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4539,12 +4341,79 @@ Checking test 001 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.529149 -The maximum resident set size (KB) = 2814932 +The total amount of wall time = 290.907880 +The maximum resident set size (KB) = 2885808 + +Test 136 atmaero_control_p8_rad_micro PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq +Checking test 137 regional_atmaq 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 = 697.203483 +The maximum resident set size (KB) = 1261036 + +Test 137 regional_atmaq PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq_debug +Checking test 138 regional_atmaq_debug 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 = 1312.111708 +The maximum resident set size (KB) = 1292148 + +Test 138 regional_atmaq_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq_faster +Checking test 139 regional_atmaq_faster 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 = 645.223778 +The maximum resident set size (KB) = 1261108 -Test 001 atmaero_control_p8 PASS +Test 139 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 24 16:11:03 UTC 2023 -Elapsed time: 00h:15m:38s. Have a nice day! +Tue Apr 25 02:45:34 UTC 2023 +Elapsed time: 01h:10m:45s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index bb4fe900be..435415ab68 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -457,8 +457,12 @@ export OZ_PHYS_OLD=.true. export OZ_PHYS_NEW=.false. export H2O_PHYS=.false. -# Flake model -export LKM=0 +# Lake models +export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points +export IOPT_LAKE=2 # 1=flake, 2=clm lake +export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it +export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it +export FRAC_ICE=.false. export CPL=.false. export CPLCHM=.false. diff --git a/tests/fv3_conf/lake_control_run.IN b/tests/fv3_conf/lake_control_run.IN new file mode 100644 index 0000000000..7d34e82e23 --- /dev/null +++ b/tests/fv3_conf/lake_control_run.IN @@ -0,0 +1,152 @@ +rm -fr INPUT RESTART +if [ $NPX = 97 ]; then + inputdir=FV3_input_data +elif [ $NPX = 49 ]; then + inputdir=FV3_input_data48 +elif [ $NPX = 193 ]; then + inputdir=FV3_input_data192 +elif [ $NPX = 385 ]; then + inputdir=FV3_input_data384 +elif [ $NPX = 769 ]; then + inputdir=FV3_input_data768 +fi +echo "inputdir=$inputdir,NPX=$NPX" + +LAKE_DATA_PATH=@[INPUTDATA_ROOT]/lake_p8_water_fraction2020 + +OPNREQ_TEST=${OPNREQ_TEST:-false} +SUFFIX=${RT_SUFFIX} +if [ $WARM_START = .false. ]; then + mkdir INPUT RESTART + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. +# cp -r @[INPUTDATA_ROOT]/${inputdir}/ORO_FLAKE/* ./INPUT/. + cp $LAKE_DATA_PATH/oro_C96.mx100.tile1.nc ./INPUT/oro_data.tile1.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile2.nc ./INPUT/oro_data.tile2.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile3.nc ./INPUT/oro_data.tile3.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile4.nc ./INPUT/oro_data.tile4.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile5.nc ./INPUT/oro_data.tile5.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile6.nc ./INPUT/oro_data.tile6.nc +else + mkdir INPUT RESTART + + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + if [ $MODEL_INITIALIZATION = false ]; then + #read_inc and iau tests restart from fh=24 + CURRDIR=`pwd` + FILEDIR=${CURRDIR}/../${DEP_RUN}${SUFFIX}/RESTART + else + #for warm start from initialiation time + FILEDIR=@[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_GDAS + fi + + if [[ ${IAU_OFFSET} != 0 ]] || [[ $READ_INCREMENT = .true. ]]; then + + if [ $MODEL_INITIALIZATION = false ]; then + cp ${FILEDIR}/../INPUT/fv3_increment.nc INPUT/. + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data.tile*.nc INPUT/. + else + cp ${FILEDIR}/fv_increment*.nc INPUT/. + cp ${FILEDIR}/grid_spec.nc INPUT/. + cp ${FILEDIR}/*_grid.tile*.nc INPUT/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. +# cp -r @[INPUTDATA_ROOT]/${inputdir}/ORO_FLAKE/* ./INPUT/. + cp $LAKE_DATA_PATH/oro_C96.mx100.tile1.nc ./INPUT/oro_data.tile1.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile2.nc ./INPUT/oro_data.tile2.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile3.nc ./INPUT/oro_data.tile3.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile4.nc ./INPUT/oro_data.tile4.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile5.nc ./INPUT/oro_data.tile5.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile6.nc ./INPUT/oro_data.tile6.nc + fi + cp ${FILEDIR}/coupler.res INPUT/. + cp ${FILEDIR}/fv_core.res.* INPUT/. + cp ${FILEDIR}/fv_srf_wnd.res.* INPUT/. + cp ${FILEDIR}/fv_tracer.* INPUT/. + cp ${FILEDIR}/phy_data.* INPUT/. + cp ${FILEDIR}/sfc_data.* INPUT/. + else + #restart test start from fh FHROT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi + +fi + +if [ $TILEDFIX = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/CFSR.SEAICE.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +fi + +if [ $CPLWAV = .true. ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/post_itag_gfs itag + cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/ExtData . +fi diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index 8c637562c8..8855c40d72 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -106,6 +106,12 @@ deflate_level=1 / &gfs_physics_nml + lkm = @[LKM] + iopt_lake = @[IOPT_LAKE] + lakefrac_threshold = @[LAKEFRAC_THRESHOLD] ! 0.15 + lakedepth_threshold = @[LAKEDEPTH_THRESHOLD] ! 0.5 + clm_lake_debug = .false. + fhzero = 6 h2o_phys = .true. ldiag3d = .false. diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index eea8cc353f..75177cc326 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -132,6 +132,7 @@ deflate_level=1 pdfcld = .false. fhswr = 3600. fhlwr = 3600. + frac_ice = @[FRAC_ICE] ialb = @[IALB] iems = @[IEMS] iaer = @[IAER] @@ -190,6 +191,7 @@ deflate_level=1 nstf_name = 2,0,0,0,0 nst_anl = .true. lkm = @[LKM] + iopt_lake = @[IOPT_LAKE] psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 lgfdlmprad = .true. diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index bbcc30e184..1d6ea99ad3 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -195,6 +195,7 @@ fhlwr = 1200.0 fhswr = 1200.0 fhzero = @[FHZERO] + frac_ice = @[FRAC_ICE] ! fscav_aero = @[FSCAV_AERO] gwd_opt = @[GWD_OPT] h2o_phys = .true. @@ -240,6 +241,7 @@ ! lfnc_p0 = @[LFNC_P0] lheatstrg = @[LHEATSTRG] lkm = @[LKM] + iopt_lake = @[IOPT_LAKE] lndp_type = @[LNDP_TYPE] lradar = @[LRADAR] lrefres = .true. diff --git a/tests/rt.conf b/tests/rt.conf index da5d08f6cf..8316a06c49 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -48,7 +48,8 @@ RUN | cpld_control_p8_faster # ATM tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 | | fv3 | +RUN | control_flake | | fv3 | RUN | control_CubedSphereGrid | | fv3 | RUN | control_CubedSphereGrid_parallel | - wcoss2.intel acorn.intel | fv3 | RUN | control_latlon | | fv3 | @@ -92,7 +93,7 @@ RUN | regional_ifi_control RUN | regional_ifi_decomp | + acorn.intel | | RUN | regional_ifi_2threads | + acorn.intel | | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | RUN | regional_spp_sppt_shum_skeb | | fv3 | @@ -106,6 +107,7 @@ RUN | hrrr_control RUN | hrrr_control_decomp | | | RUN | hrrr_control_2threads | | | RUN | hrrr_control_restart | | | hrrr_control + RUN | rrfs_v1beta | | fv3 | RUN | rrfs_v1nssl | | fv3 | RUN | rrfs_v1nssl_nohailnoccn | | fv3 | @@ -139,7 +141,7 @@ RUN | regional_control_faster # DEBUG ATM tests # ################################################################################################################################################################################### -COMPILE | -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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm_debug | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | | | @@ -166,13 +168,15 @@ RUN | rap_diag_debug RUN | rap_cires_ugwp_debug | | fv3 | RUN | rap_unified_ugwp_debug | | | RUN | rap_lndp_debug | | fv3 | -RUN | rap_flake_debug | | fv3 | RUN | rap_progcld_thompson_debug | | fv3 | RUN | rap_noah_debug | | fv3 | RUN | rap_sfcdiff_debug | | fv3 | RUN | rap_noah_sfcdiff_cires_ugwp_debug | | fv3 | RUN | rrfs_v1beta_debug | | fv3 | +RUN | rap_clm_lake_debug | | fv3 | +RUN | rap_flake_debug | | fv3 | + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | @@ -181,7 +185,7 @@ RUN | control_wam_debug ################################################################################################################################################################################### # -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | | fv3 | RUN | rap_control_dyn32_phy32 | | fv3 | RUN | hrrr_control_dyn32_phy32 | | fv3 | @@ -194,11 +198,11 @@ RUN | hrrr_control_restart_dyn32_phy32 COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | RUN | rap_control_dyn64_phy32 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | RUN | rap_control_debug_dyn32_phy32 | | fv3 | RUN | hrrr_control_debug_dyn32_phy32 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | RUN | rap_control_dyn64_phy32_debug | | fv3 | ################################################################################################################################################################################### diff --git a/tests/rt.sh b/tests/rt.sh index 7848d35455..df6885638e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230418 +BL_DATE=20230424 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 2ec838b1ab..c0145a8456 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,12 +2,13 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | RUN | control_c48 | | fv3 | RUN | control_stochy | | fv3 | RUN | control_ras | | fv3 | RUN | control_p8 | | fv3 | +RUN | control_flake | | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | @@ -60,6 +61,9 @@ RUN | rrfs_conus13km_hrrr_warm_debug # This will run and not crash, but will not match its baseline: #RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | | | +RUN | rap_flake_debug | | fv3 | +RUN | rap_clm_lake_debug | | fv3 | + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | @@ -68,7 +72,7 @@ RUN | control_wam_debug # 32-bit physics tests # ################################################################################################################################################################## -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | RUN | rap_control_dyn32_phy32 | | fv3 | RUN | hrrr_control_dyn32_phy32 | | fv3 | RUN | rap_2threads_dyn32_phy32 | | | diff --git a/tests/tests/control_flake b/tests/tests/control_flake index cb3df6e9a6..7a732aa695 100644 --- a/tests/tests/control_flake +++ b/tests/tests/control_flake @@ -29,11 +29,15 @@ export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 +export RESTART_INTERVAL=6 + +export LKM=1 +export IOPT_LAKE=1 export DO_SPPT=.true. export DO_SHUM=.true. export DO_SKEB=.true. -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_GFS_v16_flake export INPUT_NML=control_flake.nml.IN diff --git a/tests/tests/control_flake_debug b/tests/tests/control_flake_debug new file mode 100644 index 0000000000..b5403e8c85 --- /dev/null +++ b/tests/tests/control_flake_debug @@ -0,0 +1,40 @@ +############################################################################### +# +# Global control with flake test +# +############################################################################### + +export TEST_DESCR="Compare global control flake results with previous trunk version" + +export CNTL_DIR=control_flake_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +#export WRITE_DOPOST=.true. +export IAER=5111 +export FHMAX=1 +export OUTPUT_FH="0 1" + +export LKM=1 +export IOPT_LAKE=1 + +export DO_SPPT=.true. +export DO_SHUM=.true. +export DO_SKEB=.true. + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_GFS_v16_flake +export INPUT_NML=control_flake.nml.IN diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 1e47a413f2..7e78491304 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version" export CNTL_DIR=hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -68,15 +68,19 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index be17532b24..008ca80846 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR with 2 threads results with control test" +export TEST_DESCR="Compare HRRR CLM Lake with 2 threads results with control test" export CNTL_DIR=hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -68,20 +68,25 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index cfecbb0a2c..a53cdd4a5c 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR control with 2 threads test +# HRRR CLM Lake with 2 threads test # ############################################################################### -export TEST_DESCR="Compare HRRR with 2 threads results with control test" +export TEST_DESCR="Compare HRRR CLM Lake with 2 threads results with control test" export CNTL_DIR=hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -69,20 +69,25 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_debug b/tests/tests/hrrr_control_debug index 7067153aff..c03bd04b3e 100644 --- a/tests/tests/hrrr_control_debug +++ b/tests/tests/hrrr_control_debug @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR debug results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" export CNTL_DIR=hrrr_control_debug @@ -27,15 +27,19 @@ export IAER=5111 export OUTPUT_FH='0 1' export FHMAX=1 -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_debug_dyn32_phy32 b/tests/tests/hrrr_control_debug_dyn32_phy32 index 7a2438e435..e0b1820c88 100644 --- a/tests/tests/hrrr_control_debug_dyn32_phy32 +++ b/tests/tests/hrrr_control_debug_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################## # -# HRRR debug control test: atmosphere only at C96L127 +# HRRR debug CLM Lake control test: atmosphere only at C96L127 # ############################################################################### -export TEST_DESCR="Compare HRRR debug results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" export CNTL_DIR=hrrr_control_debug_dyn32_phy32 @@ -27,15 +27,19 @@ export IAER=5111 export OUTPUT_FH='0 1' export FHMAX=1 -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_decomp b/tests/tests/hrrr_control_decomp index 77b89a3475..ff5a897919 100644 --- a/tests/tests/hrrr_control_decomp +++ b/tests/tests/hrrr_control_decomp @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR decomp results with control" +export TEST_DESCR="Compare HRRR CLM Lake decomp results with control" export CNTL_DIR=hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -68,18 +68,22 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export INPES=6 export JNPES=4 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_decomp_dyn32_phy32 b/tests/tests/hrrr_control_decomp_dyn32_phy32 index f7837892e4..d4b1c516df 100644 --- a/tests/tests/hrrr_control_decomp_dyn32_phy32 +++ b/tests/tests/hrrr_control_decomp_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR control test with different PEs +# HRRR CLM Lake control test with different PEs # ############################################################################### -export TEST_DESCR="Compare HRRR decomp results with control" +export TEST_DESCR="Compare HRRR CLM Lake decomp results with control" export CNTL_DIR=hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -69,18 +69,22 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export INPES=6 export JNPES=4 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_dyn32_phy32 b/tests/tests/hrrr_control_dyn32_phy32 index aee729a131..04669a8a64 100644 --- a/tests/tests/hrrr_control_dyn32_phy32 +++ b/tests/tests/hrrr_control_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR control test: atmosphere only at C96L127 +# HRRR clm lake test: atmosphere only at C96L127 # ############################################################################### -export TEST_DESCR="Compare HRRR results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version" export CNTL_DIR=hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -69,15 +69,19 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LHEATSTRG=.false. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_restart b/tests/tests/hrrr_control_restart index 9292f6e8fa..c37a7510bc 100644 --- a/tests/tests/hrrr_control_restart +++ b/tests/tests/hrrr_control_restart @@ -4,46 +4,14 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR restart results with control" +export TEST_DESCR="Compare HRRR CLM Lake restart results with control" export CNTL_DIR=hrrr_control export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ - GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + GFSPRS.GrbF12" export_fv3 export NPZ=127 @@ -59,6 +27,9 @@ export WRITE_DOPOST=.true. export IAER=5111 export FHROT=6 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. @@ -66,16 +37,17 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_restart_dyn32_phy32 b/tests/tests/hrrr_control_restart_dyn32_phy32 index a10379c088..3edf8beb15 100644 --- a/tests/tests/hrrr_control_restart_dyn32_phy32 +++ b/tests/tests/hrrr_control_restart_dyn32_phy32 @@ -1,49 +1,17 @@ ############################################################################### # -# HRRR restart test +# HRRR CLM Lake restart test # ############################################################################### -export TEST_DESCR="Compare HRRR restart results with control" +export TEST_DESCR="Compare HRRR CLM Lake restart results with control" export CNTL_DIR=hrrr_control_dyn32_phy32 export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ - GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + GFSPRS.GrbF12" export_fv3 export NPZ=127 @@ -60,6 +28,9 @@ export IAER=5111 export FHROT=6 export FHMAX=12 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. @@ -67,16 +38,17 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" export SFCLAY_COMPUTE_FLUX=.true. export LHEATSTRG=.false. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_clm_lake b/tests/tests/rap_clm_lake new file mode 100644 index 0000000000..c424fbb196 --- /dev/null +++ b/tests/tests/rap_clm_lake @@ -0,0 +1,106 @@ +############################################################################### +# +# RAP control test: lake coupled at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RAP lake coupled results with previous trunk version" + +export CNTL_DIR=rap_clm_lake + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 21 24' + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_RAP_clm_lake +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export LKM=1 +export IOPT_LAKE=2 +export FRAC_ICE=.true. + +export LHEATSTRG=.false. +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_clm_lake_debug b/tests/tests/rap_clm_lake_debug new file mode 100644 index 0000000000..79a5d70d63 --- /dev/null +++ b/tests/tests/rap_clm_lake_debug @@ -0,0 +1,66 @@ +############################################################################### +# +# RAP control test: lake coupled at C96L127 (debug mode) +# +############################################################################### + +export TEST_DESCR="Compare RAP lake coupled results in debug mode with previous trunk version" + +export CNTL_DIR=rap_clm_lake_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 1' +export FHMAX=1 + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_RAP_clm_lake +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export LKM=1 +export IOPT_LAKE=2 +export FRAC_ICE=.true. + +export LHEATSTRG=.false. +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_flake_debug b/tests/tests/rap_flake_debug index 39b90e85f1..5f6d19f77a 100644 --- a/tests/tests/rap_flake_debug +++ b/tests/tests/rap_flake_debug @@ -28,7 +28,7 @@ export FHMAX=1 export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_RAP_flake export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke @@ -51,6 +51,7 @@ export LSM=3 export LSOIL_LSM=9 export KICE=9 export LKM=1 +export IOPT_LAKE=1 export GWD_OPT=3 export DO_UGWP_V0=.false. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm index 7b85d19b37..aee7ecbe8e 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ b/tests/tests/rrfs_conus13km_hrrr_warm @@ -41,6 +41,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -105,3 +106,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads index 0334f2a7d7..7bcb6927a3 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_2threads +++ b/tests/tests/rrfs_conus13km_hrrr_warm_2threads @@ -46,6 +46,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -110,3 +111,6 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_debug b/tests/tests/rrfs_conus13km_hrrr_warm_debug index 00be635af0..af160182e3 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_debug +++ b/tests/tests/rrfs_conus13km_hrrr_warm_debug @@ -39,6 +39,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -103,3 +104,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_conus13km_hrrr_warm_decomp index b90e11d20a..ee84b2e021 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_decomp +++ b/tests/tests/rrfs_conus13km_hrrr_warm_decomp @@ -44,6 +44,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -106,3 +107,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart b/tests/tests/rrfs_conus13km_hrrr_warm_restart index 9a8ea26763..20caf15e1e 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart @@ -40,6 +40,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -104,3 +105,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch index 9c31539088..b2703d1481 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch @@ -104,3 +104,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm index dc82d24e9f..346907349d 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_conus13km_radar_tten_warm @@ -43,6 +43,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -107,3 +108,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads index 173142c35d..3f5ab71ddc 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads @@ -48,6 +48,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -112,3 +113,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_debug b/tests/tests/rrfs_conus13km_radar_tten_warm_debug index 962175f9aa..46736e8cfc 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_debug +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_debug @@ -41,6 +41,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -105,3 +106,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp index 761e27952e..18eb6c3374 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp @@ -46,6 +46,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -108,3 +109,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_restart b/tests/tests/rrfs_conus13km_radar_tten_warm_restart index 14d365e679..52233523f1 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_restart +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_restart @@ -42,6 +42,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -106,3 +107,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm index 6e9c9dee6e..b3d41a2f02 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm @@ -44,6 +44,7 @@ export RRFS_SMOKE=.true. export SEAS_OPT=0 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -108,4 +109,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke \ No newline at end of file +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads index 9d70a75128..df8f023822 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads @@ -114,3 +114,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug index 661fff7ca7..14950bfbbf 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug @@ -107,3 +107,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads index 124e93de52..1fde465f1b 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads @@ -112,3 +112,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp index 2031fc77d1..4860e9e67d 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp @@ -108,3 +108,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp index 58b07b3ea4..cbffadb7c4 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp @@ -110,3 +110,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart index efd07b9fab..a7df19d269 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart @@ -108,3 +108,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm index 1366e3462c..6e47ece44b 100644 --- a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm @@ -111,3 +111,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. From 0bd36d8894f8caf929b20b713e2b5af3a0a281a0 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 14 Jun 2023 22:16:35 +0000 Subject: [PATCH 3/5] add successful Hera RT logs --- tests/RegressionTests_hera.gnu.log | 1042 ++++++------- tests/RegressionTests_hera.intel.log | 2140 +++++++++++++------------- 2 files changed, 1566 insertions(+), 1616 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 30563e535a..c766d32509 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Jun 12 17:27:20 UTC 2023 +Wed Jun 14 20:47:50 UTC 2023 Start Regression test -Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 337 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 108 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 414 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 358 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 151 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 128 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 350 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 433 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 344 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 344 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 230 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 148 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_c48 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_c48 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 684.895811 -0: The maximum resident set size (KB) = 704444 +0: The total amount of wall time = 689.923099 +0: The maximum resident set size (KB) = 703504 Test 001 control_c48 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_stochy -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_stochy +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 664.775253 - 0: The maximum resident set size (KB) = 476676 + 0: The total amount of wall time = 654.243692 + 0: The maximum resident set size (KB) = 478376 Test 002 control_stochy PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_ras -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_ras +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 830.363294 - 0: The maximum resident set size (KB) = 482208 + 0: The total amount of wall time = 832.002142 + 0: The maximum resident set size (KB) = 486128 Test 003 control_ras PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,15 +144,33 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 930.711493 - 0: The maximum resident set size (KB) = 1233160 + 0: The total amount of wall time = 907.327263 + 0: The maximum resident set size (KB) = 1236300 Test 004 control_p8 PASS +baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_flake +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_flake +Checking test 005 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1562.434182 + 0: The maximum resident set size (KB) = 524812 + +Test 005 control_flake PASS + + baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_control -Checking test 005 rap_control results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_control +Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -198,15 +216,15 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1509.680394 - 0: The maximum resident set size (KB) = 828556 + 0: The total amount of wall time = 1457.654923 + 0: The maximum resident set size (KB) = 828572 -Test 005 rap_control PASS +Test 006 rap_control PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_decomp -Checking test 006 rap_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_decomp +Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -252,15 +270,15 @@ Checking test 006 rap_decomp results .... Comparing 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.397274 - 0: The maximum resident set size (KB) = 826232 + 0: The total amount of wall time = 1435.782190 + 0: The maximum resident set size (KB) = 829820 -Test 006 rap_decomp PASS +Test 007 rap_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_2threads -Checking test 007 rap_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_2threads +Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -306,15 +324,15 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1343.724918 - 0: The maximum resident set size (KB) = 890684 + 0: The total amount of wall time = 1370.424783 + 0: The maximum resident set size (KB) = 895076 -Test 007 rap_2threads PASS +Test 008 rap_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_restart -Checking test 008 rap_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_restart +Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -352,15 +370,15 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 736.229793 - 0: The maximum resident set size (KB) = 547336 + 0: The total amount of wall time = 729.085500 + 0: The maximum resident set size (KB) = 546864 -Test 008 rap_restart PASS +Test 009 rap_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_sfcdiff +Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -406,15 +424,15 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.069039 - 0: The maximum resident set size (KB) = 827416 + 0: The total amount of wall time = 1481.959435 + 0: The maximum resident set size (KB) = 831056 -Test 009 rap_sfcdiff PASS +Test 010 rap_sfcdiff PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_sfcdiff_decomp +Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -460,15 +478,15 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.955573 - 0: The maximum resident set size (KB) = 823436 + 0: The total amount of wall time = 1452.021757 + 0: The maximum resident set size (KB) = 830364 -Test 010 rap_sfcdiff_decomp PASS +Test 011 rap_sfcdiff_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_sfcdiff_restart +Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -506,15 +524,15 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1074.435050 - 0: The maximum resident set size (KB) = 548216 + 0: The total amount of wall time = 1101.614966 + 0: The maximum resident set size (KB) = 544200 -Test 011 rap_sfcdiff_restart PASS +Test 012 rap_sfcdiff_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control -Checking test 012 hrrr_control results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control +Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -527,48 +545,48 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1481.059722 - 0: The maximum resident set size (KB) = 821804 - -Test 012 hrrr_control PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1454.533339 + 0: The maximum resident set size (KB) = 823312 + +Test 013 hrrr_control PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_2threads +Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -581,48 +599,48 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1378.599691 - 0: The maximum resident set size (KB) = 895940 - -Test 013 hrrr_control_2threads PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1505.775816 + 0: The maximum resident set size (KB) = 888604 + +Test 014 hrrr_control_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_decomp +Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -635,94 +653,62 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1478.947960 - 0: The maximum resident set size (KB) = 821176 - -Test 014 hrrr_control_decomp PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1451.824200 + 0: The maximum resident set size (KB) = 822104 + +Test 015 hrrr_control_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_restart +Checking test 016 hrrr_control_restart 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 - 0: The total amount of wall time = 1036.377175 - 0: The maximum resident set size (KB) = 545160 + 0: The total amount of wall time = 1042.351243 + 0: The maximum resident set size (KB) = 546752 -Test 015 hrrr_control_restart PASS +Test 016 hrrr_control_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_v1beta +Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -768,15 +754,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1506.423311 - 0: The maximum resident set size (KB) = 825020 + 0: The total amount of wall time = 1484.516889 + 0: The maximum resident set size (KB) = 820840 -Test 016 rrfs_v1beta PASS +Test 017 rrfs_v1beta PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_smoke_conus13km_hrrr_warm -Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +770,15 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 768.997295 - 0: The maximum resident set size (KB) = 666316 + 0: The total amount of wall time = 797.251039 + 0: The maximum resident set size (KB) = 670712 -Test 017 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +786,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1008.954705 - 0: The maximum resident set size (KB) = 667136 + 0: The total amount of wall time = 1080.510831 + 0: The maximum resident set size (KB) = 664888 -Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_conus13km_hrrr_warm -Checking test 019 rrfs_conus13km_hrrr_warm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_conus13km_hrrr_warm +Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +802,15 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 808.839032 - 0: The maximum resident set size (KB) = 642748 + 0: The total amount of wall time = 773.226366 + 0: The maximum resident set size (KB) = 647236 -Test 019 rrfs_conus13km_hrrr_warm PASS +Test 020 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_smoke_conus13km_radar_tten_warm -Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_smoke_conus13km_radar_tten_warm +Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,235 +818,263 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 782.695906 - 0: The maximum resident set size (KB) = 671568 + 0: The total amount of wall time = 823.773931 + 0: The maximum resident set size (KB) = 674948 -Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 405.933672 - 0: The maximum resident set size (KB) = 632644 + 0: The total amount of wall time = 403.566064 + 0: The maximum resident set size (KB) = 635648 -Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_diag_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_diag_debug -Checking test 022 control_diag_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_diag_debug +Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.108144 - 0: The maximum resident set size (KB) = 523496 + 0: The total amount of wall time = 126.564210 + 0: The maximum resident set size (KB) = 524220 -Test 022 control_diag_debug PASS +Test 023 control_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/regional_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/regional_debug -Checking test 023 regional_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/regional_debug +Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 661.713949 - 0: The maximum resident set size (KB) = 590216 + 0: The total amount of wall time = 707.595484 + 0: The maximum resident set size (KB) = 592040 -Test 023 regional_debug PASS +Test 024 regional_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_control_debug -Checking test 024 rap_control_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_control_debug +Checking test 025 rap_control_debug 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.644218 - 0: The maximum resident set size (KB) = 835232 + 0: The total amount of wall time = 175.768212 + 0: The maximum resident set size (KB) = 836716 -Test 024 rap_control_debug PASS +Test 025 rap_control_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_debug -Checking test 025 hrrr_control_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_debug +Checking test 026 hrrr_control_debug 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.279823 - 0: The maximum resident set size (KB) = 832228 + 0: The total amount of wall time = 171.757515 + 0: The maximum resident set size (KB) = 837412 -Test 025 hrrr_control_debug PASS +Test 026 hrrr_control_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_diag_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_diag_debug -Checking test 026 rap_diag_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_diag_debug +Checking test 027 rap_diag_debug 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.722556 - 0: The maximum resident set size (KB) = 917156 + 0: The total amount of wall time = 215.636844 + 0: The maximum resident set size (KB) = 918616 -Test 026 rap_diag_debug PASS +Test 027 rap_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.052439 - 0: The maximum resident set size (KB) = 831252 + 0: The total amount of wall time = 283.424376 + 0: The maximum resident set size (KB) = 830744 -Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_progcld_thompson_debug -Checking test 028 rap_progcld_thompson_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_progcld_thompson_debug +Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.972975 - 0: The maximum resident set size (KB) = 838512 + 0: The total amount of wall time = 178.741742 + 0: The maximum resident set size (KB) = 839928 -Test 028 rap_progcld_thompson_debug PASS +Test 029 rap_progcld_thompson_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_v1beta_debug -Checking test 029 rrfs_v1beta_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_v1beta_debug +Checking test 030 rrfs_v1beta_debug 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.538180 - 0: The maximum resident set size (KB) = 831224 + 0: The total amount of wall time = 175.870675 + 0: The maximum resident set size (KB) = 836116 -Test 029 rrfs_v1beta_debug PASS +Test 030 rrfs_v1beta_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_ras_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_ras_debug -Checking test 030 control_ras_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_ras_debug +Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.490499 - 0: The maximum resident set size (KB) = 478592 + 0: The total amount of wall time = 101.950920 + 0: The maximum resident set size (KB) = 476760 -Test 030 control_ras_debug PASS +Test 031 control_ras_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_stochy_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_stochy_debug -Checking test 031 control_stochy_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.462227 - 0: The maximum resident set size (KB) = 473484 + 0: The total amount of wall time = 117.877834 + 0: The maximum resident set size (KB) = 473120 -Test 031 control_stochy_debug PASS +Test 032 control_stochy_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_debug_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_debug_p8 -Checking test 032 control_debug_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.302438 - 0: The maximum resident set size (KB) = 1223648 + 0: The total amount of wall time = 119.591516 + 0: The maximum resident set size (KB) = 1225084 -Test 032 control_debug_p8 PASS +Test 033 control_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 637.988186 - 0: The maximum resident set size (KB) = 682096 + 0: The total amount of wall time = 635.055384 + 0: The maximum resident set size (KB) = 682368 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 759.845550 - 0: The maximum resident set size (KB) = 680728 + 0: The total amount of wall time = 747.437357 + 0: The maximum resident set size (KB) = 684008 -Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rrfs_conus13km_hrrr_warm_debug -Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rrfs_conus13km_hrrr_warm_debug +Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 617.529091 + 0: The maximum resident set size (KB) = 657280 + +Test 036 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_flake_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_flake_debug +Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 583.715042 - 0: The maximum resident set size (KB) = 656636 + 0: The total amount of wall time = 175.622186 + 0: The maximum resident set size (KB) = 836900 -Test 035 rrfs_conus13km_hrrr_warm_debug PASS +Test 037 rap_flake_debug PASS + + +baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_clm_lake_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_clm_lake_debug +Checking test 038 rap_clm_lake_debug 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.310971 + 0: The maximum resident set size (KB) = 842612 + +Test 038 rap_clm_lake_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/control_wam_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/control_wam_debug -Checking test 036 control_wam_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/control_wam_debug +Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 180.195583 - 0: The maximum resident set size (KB) = 191804 + 0: The total amount of wall time = 180.648613 + 0: The maximum resident set size (KB) = 193448 -Test 036 control_wam_debug PASS +Test 039 control_wam_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_control_dyn32_phy32 -Checking test 037 rap_control_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_control_dyn32_phy32 +Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1106,15 +1120,15 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1483.526176 - 0: The maximum resident set size (KB) = 685072 + 0: The total amount of wall time = 1508.645557 + 0: The maximum resident set size (KB) = 679864 -Test 037 rap_control_dyn32_phy32 PASS +Test 040 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_dyn32_phy32 -Checking test 038 hrrr_control_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_dyn32_phy32 +Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1127,48 +1141,48 @@ Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 774.669723 - 0: The maximum resident set size (KB) = 684244 - -Test 038 hrrr_control_dyn32_phy32 PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 745.052757 + 0: The maximum resident set size (KB) = 679216 + +Test 041 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_2threads_dyn32_phy32 -Checking test 039 rap_2threads_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_2threads_dyn32_phy32 +Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,15 +1228,15 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1419.334207 - 0: The maximum resident set size (KB) = 728436 + 0: The total amount of wall time = 1354.137201 + 0: The maximum resident set size (KB) = 731352 -Test 039 rap_2threads_dyn32_phy32 PASS +Test 042 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_2threads_dyn32_phy32 -Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_2threads_dyn32_phy32 +Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1235,48 +1249,48 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 672.717339 - 0: The maximum resident set size (KB) = 724596 - -Test 040 hrrr_control_2threads_dyn32_phy32 PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 756.666012 + 0: The maximum resident set size (KB) = 723192 + +Test 043 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_decomp_dyn32_phy32 -Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_decomp_dyn32_phy32 +Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1289,48 +1303,48 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 706.210934 - 0: The maximum resident set size (KB) = 681748 - -Test 041 hrrr_control_decomp_dyn32_phy32 PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 721.868289 + 0: The maximum resident set size (KB) = 679708 + +Test 044 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_restart_dyn32_phy32 -Checking test 042 rap_restart_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_restart_dyn32_phy32 +Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1368,61 +1382,29 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1088.551082 - 0: The maximum resident set size (KB) = 510520 + 0: The total amount of wall time = 1087.063492 + 0: The maximum resident set size (KB) = 512000 -Test 042 rap_restart_dyn32_phy32 PASS +Test 045 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_restart_dyn32_phy32 -Checking test 043 hrrr_control_restart_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_restart_dyn32_phy32 +Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 359.875177 - 0: The maximum resident set size (KB) = 508584 + 0: The total amount of wall time = 380.099797 + 0: The maximum resident set size (KB) = 506436 -Test 043 hrrr_control_restart_dyn32_phy32 PASS +Test 046 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_control_dyn64_phy32 -Checking test 044 rap_control_dyn64_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_control_dyn64_phy32 +Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1468,57 +1450,57 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1096.779461 - 0: The maximum resident set size (KB) = 705680 + 0: The total amount of wall time = 1072.553256 + 0: The maximum resident set size (KB) = 705300 -Test 044 rap_control_dyn64_phy32 PASS +Test 047 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_control_debug_dyn32_phy32 -Checking test 045 rap_control_debug_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_control_debug_dyn32_phy32 +Checking test 048 rap_control_debug_dyn32_phy32 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.742833 - 0: The maximum resident set size (KB) = 695896 + 0: The total amount of wall time = 172.740160 + 0: The maximum resident set size (KB) = 697856 -Test 045 rap_control_debug_dyn32_phy32 PASS +Test 048 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/hrrr_control_debug_dyn32_phy32 -Checking test 046 hrrr_control_debug_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 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.299058 - 0: The maximum resident set size (KB) = 694416 + 0: The total amount of wall time = 170.200715 + 0: The maximum resident set size (KB) = 697268 -Test 046 hrrr_control_debug_dyn32_phy32 PASS +Test 049 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/rap_control_dyn64_phy32_debug -Checking test 047 rap_control_dyn64_phy32_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/rap_control_dyn64_phy32_debug +Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.321189 - 0: The maximum resident set size (KB) = 711304 + 0: The total amount of wall time = 207.720350 + 0: The maximum resident set size (KB) = 713672 -Test 047 rap_control_dyn64_phy32_debug PASS +Test 050 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1582,15 +1564,15 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1790.470096 - 0: The maximum resident set size (KB) = 1426704 + 0: The total amount of wall time = 1797.200219 + 0: The maximum resident set size (KB) = 1425700 -Test 048 cpld_control_p8 PASS +Test 051 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/cpld_control_nowave_noaero_p8 -Checking test 049 cpld_control_nowave_noaero_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/cpld_control_nowave_noaero_p8 +Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1651,15 +1633,15 @@ Checking test 049 cpld_control_nowave_noaero_p8 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 = 1235.626878 - 0: The maximum resident set size (KB) = 1325692 + 0: The total amount of wall time = 1225.985654 + 0: The maximum resident set size (KB) = 1337796 -Test 049 cpld_control_nowave_noaero_p8 PASS +Test 052 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/cpld_debug_p8 -Checking test 050 cpld_debug_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/cpld_debug_p8 +Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1711,25 +1693,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 906.729102 - 0: The maximum resident set size (KB) = 1435712 + 0: The total amount of wall time = 845.314837 + 0: The maximum resident set size (KB) = 1437164 -Test 050 cpld_debug_p8 PASS +Test 053 cpld_debug_p8 PASS Tries: 2 baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_GNU/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_6377/datm_cdeps_control_cfsr -Checking test 051 datm_cdeps_control_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4939/datm_cdeps_control_cfsr +Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 179.924732 - 0: The maximum resident set size (KB) = 663312 + 0: The total amount of wall time = 174.495887 + 0: The maximum resident set size (KB) = 669904 -Test 051 datm_cdeps_control_cfsr PASS +Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jun 12 18:23:01 UTC 2023 -Elapsed time: 00h:55m:42s. Have a nice day! +Wed Jun 14 22:09:56 UTC 2023 +Elapsed time: 01h:22m:08s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a2190453c9..a53f5e3c0c 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Thu Jun 8 17:50:34 UTC 2023 +Wed Jun 14 15:33:08 UTC 2023 Start Regression test -Compile 001 elapsed time 618 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 616 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 585 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 222 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 206 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 533 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 528 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 709 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 487 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 011 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 226 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 599 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 021 elapsed time 206 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 652 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 598 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 024 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 192 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 482 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 530 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 558 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 486 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 461 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 657 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 666 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 616 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 271 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 576 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 746 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 216 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 562 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 021 elapsed time 191 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 546 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 024 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 180 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 538 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 542 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 536 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 516 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 505 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 571 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_p8_mixedmode +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.934740 - 0: The maximum resident set size (KB) = 3084268 + 0: The total amount of wall time = 307.045221 + 0: The maximum resident set size (KB) = 3129188 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_gfsv17 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_gfsv17 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 230.367609 - 0: The maximum resident set size (KB) = 1719892 + 0: The total amount of wall time = 226.437374 + 0: The maximum resident set size (KB) = 1710260 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.940743 - 0: The maximum resident set size (KB) = 3134092 + 0: The total amount of wall time = 340.580865 + 0: The maximum resident set size (KB) = 3161700 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_restart_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.259543 - 0: The maximum resident set size (KB) = 3046496 + 0: The total amount of wall time = 195.787648 + 0: The maximum resident set size (KB) = 3034660 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_qr_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.061670 - 0: The maximum resident set size (KB) = 3153232 + 0: The total amount of wall time = 346.375598 + 0: The maximum resident set size (KB) = 3136632 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_restart_qr_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.654742 - 0: The maximum resident set size (KB) = 3001424 + 0: The total amount of wall time = 201.793110 + 0: The maximum resident set size (KB) = 3048388 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_2threads_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.888021 - 0: The maximum resident set size (KB) = 3506316 + 0: The total amount of wall time = 350.072867 + 0: The maximum resident set size (KB) = 3500604 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_decomp_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.096880 - 0: The maximum resident set size (KB) = 3154308 + 0: The total amount of wall time = 343.722795 + 0: The maximum resident set size (KB) = 3155692 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_mpi_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.449154 - 0: The maximum resident set size (KB) = 3009900 + 0: The total amount of wall time = 280.094126 + 0: The maximum resident set size (KB) = 3010780 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_ciceC_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.881560 - 0: The maximum resident set size (KB) = 3167324 + 0: The total amount of wall time = 340.075285 + 0: The maximum resident set size (KB) = 3161724 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 599.400361 - 0: The maximum resident set size (KB) = 3245380 + 0: The total amount of wall time = 594.736258 + 0: The maximum resident set size (KB) = 3236648 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_restart_c192_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 392.585910 - 0: The maximum resident set size (KB) = 3137776 + 0: The total amount of wall time = 401.684319 + 0: The maximum resident set size (KB) = 3136400 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 729.456842 - 0: The maximum resident set size (KB) = 4019964 + 0: The total amount of wall time = 727.469965 + 0: The maximum resident set size (KB) = 4023376 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_restart_bmark_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.208702 - 0: The maximum resident set size (KB) = 3899256 + 0: The total amount of wall time = 492.190998 + 0: The maximum resident set size (KB) = 3948852 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_noaero_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_noaero_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.457890 - 0: The maximum resident set size (KB) = 1707968 + 0: The total amount of wall time = 262.229687 + 0: The maximum resident set size (KB) = 1709020 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_nowave_noaero_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 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.240861 - 0: The maximum resident set size (KB) = 1750084 + 0: The total amount of wall time = 263.380033 + 0: The maximum resident set size (KB) = 1760360 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 526.728190 - 0: The maximum resident set size (KB) = 3228996 + 0: The total amount of wall time = 541.063133 + 0: The maximum resident set size (KB) = 3229072 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_debug_noaero_p8 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.248247 - 0: The maximum resident set size (KB) = 1734260 + 0: The total amount of wall time = 376.032982 + 0: The maximum resident set size (KB) = 1728676 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_noaero_p8_agrid +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.946867 - 0: The maximum resident set size (KB) = 1733456 + 0: The total amount of wall time = 269.054749 + 0: The maximum resident set size (KB) = 1751528 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c48 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_c48 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 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 = 587.278768 - 0: The maximum resident set size (KB) = 2802888 + 0: The total amount of wall time = 585.151452 + 0: The maximum resident set size (KB) = 2800548 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 157.030432 - 0: The maximum resident set size (KB) = 2794096 + 0: The total amount of wall time = 156.048301 + 0: The maximum resident set size (KB) = 2797988 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_restart_c48 +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.937954 - 0: The maximum resident set size (KB) = 2203088 + 0: The total amount of wall time = 81.884899 + 0: The maximum resident set size (KB) = 2246208 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8_faster -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/cpld_control_p8_faster +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1490,33 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.639344 - 0: The maximum resident set size (KB) = 3167844 + 0: The total amount of wall time = 320.855088 + 0: The maximum resident set size (KB) = 3171080 Test 023 cpld_control_p8_faster PASS +baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_flake +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_flake +Checking test 024 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 187.377431 + 0: The maximum resident set size (KB) = 673628 + +Test 024 control_flake PASS + + baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_CubedSphereGrid -Checking test 024 control_CubedSphereGrid results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_CubedSphereGrid +Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1524,29 +1542,29 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.429061 - 0: The maximum resident set size (KB) = 608144 + 0: The total amount of wall time = 130.026957 + 0: The maximum resident set size (KB) = 624652 -Test 024 control_CubedSphereGrid PASS +Test 025 control_CubedSphereGrid PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_CubedSphereGrid_parallel -Checking test 025 control_CubedSphereGrid_parallel results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_CubedSphereGrid_parallel +Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 130.915672 - 0: The maximum resident set size (KB) = 629256 + 0: The total amount of wall time = 130.457133 + 0: The maximum resident set size (KB) = 624508 -Test 025 control_CubedSphereGrid_parallel PASS +Test 026 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_latlon -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_latlon -Checking test 026 control_latlon results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_latlon +Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1556,15 +1574,15 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.647460 - 0: The maximum resident set size (KB) = 611224 + 0: The total amount of wall time = 135.028882 + 0: The maximum resident set size (KB) = 625420 -Test 026 control_latlon PASS +Test 027 control_latlon PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_wrtGauss_netcdf_parallel -Checking test 027 control_wrtGauss_netcdf_parallel results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_wrtGauss_netcdf_parallel +Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1592,15 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.475093 - 0: The maximum resident set size (KB) = 629384 + 0: The total amount of wall time = 136.684928 + 0: The maximum resident set size (KB) = 628676 -Test 027 control_wrtGauss_netcdf_parallel PASS +Test 028 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_c48 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_c48 -Checking test 028 control_c48 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_c48 +Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1620,15 +1638,15 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 375.301097 -0: The maximum resident set size (KB) = 806048 +0: The total amount of wall time = 366.474126 +0: The maximum resident set size (KB) = 820524 -Test 028 control_c48 PASS +Test 029 control_c48 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_c192 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_c192 -Checking test 029 control_c192 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_c192 +Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1656,15 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 533.895005 - 0: The maximum resident set size (KB) = 757636 + 0: The total amount of wall time = 527.731098 + 0: The maximum resident set size (KB) = 767416 -Test 029 control_c192 PASS +Test 030 control_c192 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_c384 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_c384 -Checking test 030 control_c384 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_c384 +Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1674,15 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.621259 - 0: The maximum resident set size (KB) = 1256880 + 0: The total amount of wall time = 522.867046 + 0: The maximum resident set size (KB) = 1262052 -Test 030 control_c384 PASS +Test 031 control_c384 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_c384gdas -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_c384gdas -Checking test 031 control_c384gdas results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_c384gdas +Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1706,15 +1724,15 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.703206 - 0: The maximum resident set size (KB) = 1376804 + 0: The total amount of wall time = 459.291942 + 0: The maximum resident set size (KB) = 1370036 -Test 031 control_c384gdas PASS +Test 032 control_c384gdas PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_stochy -Checking test 032 control_stochy results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_stochy +Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1724,29 +1742,29 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.101508 - 0: The maximum resident set size (KB) = 631552 + 0: The total amount of wall time = 88.235535 + 0: The maximum resident set size (KB) = 629440 -Test 032 control_stochy PASS +Test 033 control_stochy PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_stochy_restart -Checking test 033 control_stochy_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_stochy_restart +Checking test 034 control_stochy_restart 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.749439 - 0: The maximum resident set size (KB) = 481984 + 0: The total amount of wall time = 48.260818 + 0: The maximum resident set size (KB) = 486720 -Test 033 control_stochy_restart PASS +Test 034 control_stochy_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_lndp -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_lndp -Checking test 034 control_lndp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_lndp +Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1756,15 +1774,15 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.519146 - 0: The maximum resident set size (KB) = 630184 + 0: The total amount of wall time = 82.385797 + 0: The maximum resident set size (KB) = 634948 -Test 034 control_lndp PASS +Test 035 control_lndp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_iovr4 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_iovr4 -Checking test 035 control_iovr4 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_iovr4 +Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,15 +1796,15 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.074715 - 0: The maximum resident set size (KB) = 625936 + 0: The total amount of wall time = 137.867205 + 0: The maximum resident set size (KB) = 628008 -Test 035 control_iovr4 PASS +Test 036 control_iovr4 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_iovr5 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_iovr5 -Checking test 036 control_iovr5 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_iovr5 +Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,15 +1818,15 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.968833 - 0: The maximum resident set size (KB) = 630724 + 0: The total amount of wall time = 137.306229 + 0: The maximum resident set size (KB) = 626524 -Test 036 control_iovr5 PASS +Test 037 control_iovr5 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_p8 -Checking test 037 control_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_p8 +Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,15 +1872,15 @@ Checking test 037 control_p8 results .... Comparing 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.340312 - 0: The maximum resident set size (KB) = 1603452 + 0: The total amount of wall time = 169.691428 + 0: The maximum resident set size (KB) = 1590540 -Test 037 control_p8 PASS +Test 038 control_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_restart_p8 -Checking test 038 control_restart_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_restart_p8 +Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1900,15 +1918,15 @@ Checking test 038 control_restart_p8 results .... Comparing 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.362763 - 0: The maximum resident set size (KB) = 861968 + 0: The total amount of wall time = 88.363502 + 0: The maximum resident set size (KB) = 875760 -Test 038 control_restart_p8 PASS +Test 039 control_restart_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_qr_p8 -Checking test 039 control_qr_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_qr_p8 +Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1954,15 +1972,15 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.520126 - 0: The maximum resident set size (KB) = 1601096 + 0: The total amount of wall time = 169.532981 + 0: The maximum resident set size (KB) = 1600660 -Test 039 control_qr_p8 PASS +Test 040 control_qr_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_restart_qr_p8 -Checking test 040 control_restart_qr_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_restart_qr_p8 +Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2000,15 +2018,15 @@ Checking test 040 control_restart_qr_p8 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.094001 - 0: The maximum resident set size (KB) = 870536 + 0: The total amount of wall time = 91.035576 + 0: The maximum resident set size (KB) = 864620 -Test 040 control_restart_qr_p8 PASS +Test 041 control_restart_qr_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_decomp_p8 -Checking test 041 control_decomp_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_decomp_p8 +Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2050,15 +2068,15 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.937944 - 0: The maximum resident set size (KB) = 1579804 + 0: The total amount of wall time = 177.386388 + 0: The maximum resident set size (KB) = 1576212 -Test 041 control_decomp_p8 PASS +Test 042 control_decomp_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_2threads_p8 -Checking test 042 control_2threads_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_2threads_p8 +Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2100,15 +2118,15 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.770348 - 0: The maximum resident set size (KB) = 1670288 + 0: The total amount of wall time = 159.446644 + 0: The maximum resident set size (KB) = 1682968 -Test 042 control_2threads_p8 PASS +Test 043 control_2threads_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8_lndp -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_p8_lndp -Checking test 043 control_p8_lndp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_p8_lndp +Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,15 +2144,15 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 319.754768 - 0: The maximum resident set size (KB) = 1589540 + 0: The total amount of wall time = 316.465725 + 0: The maximum resident set size (KB) = 1595440 -Test 043 control_p8_lndp PASS +Test 044 control_p8_lndp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8_rrtmgp -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_p8_rrtmgp -Checking test 044 control_p8_rrtmgp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2180,15 +2198,15 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.450867 - 0: The maximum resident set size (KB) = 1661964 + 0: The total amount of wall time = 227.540438 + 0: The maximum resident set size (KB) = 1677004 -Test 044 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8_mynn -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_p8_mynn -Checking test 045 control_p8_mynn results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_p8_mynn +Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2234,15 +2252,15 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.877321 - 0: The maximum resident set size (KB) = 1598620 + 0: The total amount of wall time = 173.092621 + 0: The maximum resident set size (KB) = 1611012 -Test 045 control_p8_mynn PASS +Test 046 control_p8_mynn PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/merra2_thompson -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/merra2_thompson -Checking test 046 merra2_thompson results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/merra2_thompson +Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2288,15 +2306,15 @@ Checking test 046 merra2_thompson results .... Comparing 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.322511 - 0: The maximum resident set size (KB) = 1599496 + 0: The total amount of wall time = 193.796679 + 0: The maximum resident set size (KB) = 1602620 -Test 046 merra2_thompson PASS +Test 047 merra2_thompson PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_control -Checking test 047 regional_control results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_control +Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2306,29 +2324,29 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.921282 - 0: The maximum resident set size (KB) = 865460 + 0: The total amount of wall time = 298.695033 + 0: The maximum resident set size (KB) = 867644 -Test 047 regional_control PASS +Test 048 regional_control PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_restart -Checking test 048 regional_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_restart +Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.773155 - 0: The maximum resident set size (KB) = 852772 + 0: The total amount of wall time = 154.388184 + 0: The maximum resident set size (KB) = 863184 -Test 048 regional_restart PASS +Test 049 regional_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_control_qr -Checking test 049 regional_control_qr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_control_qr +Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2338,29 +2356,29 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.824767 - 0: The maximum resident set size (KB) = 862284 + 0: The total amount of wall time = 298.424158 + 0: The maximum resident set size (KB) = 868544 -Test 049 regional_control_qr PASS +Test 050 regional_control_qr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_restart_qr -Checking test 050 regional_restart_qr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_restart_qr +Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.621947 - 0: The maximum resident set size (KB) = 864472 + 0: The total amount of wall time = 152.473832 + 0: The maximum resident set size (KB) = 860552 -Test 050 regional_restart_qr PASS +Test 051 regional_restart_qr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_decomp -Checking test 051 regional_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_decomp +Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2370,15 +2388,15 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.873633 - 0: The maximum resident set size (KB) = 854656 + 0: The total amount of wall time = 315.098897 + 0: The maximum resident set size (KB) = 865908 -Test 051 regional_decomp PASS +Test 052 regional_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_2threads -Checking test 052 regional_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_2threads +Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,44 +2406,44 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.852527 - 0: The maximum resident set size (KB) = 836888 + 0: The total amount of wall time = 187.662510 + 0: The maximum resident set size (KB) = 847124 -Test 052 regional_2threads PASS +Test 053 regional_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_noquilt -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_noquilt -Checking test 053 regional_noquilt results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_noquilt +Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.944323 - 0: The maximum resident set size (KB) = 854260 + 0: The total amount of wall time = 320.812073 + 0: The maximum resident set size (KB) = 855776 -Test 053 regional_noquilt PASS +Test 054 regional_noquilt PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_netcdf_parallel -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_netcdf_parallel -Checking test 054 regional_netcdf_parallel results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_netcdf_parallel +Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 298.815621 - 0: The maximum resident set size (KB) = 858296 + 0: The total amount of wall time = 294.591514 + 0: The maximum resident set size (KB) = 860216 -Test 054 regional_netcdf_parallel PASS +Test 055 regional_netcdf_parallel PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_2dwrtdecomp -Checking test 055 regional_2dwrtdecomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_2dwrtdecomp +Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2435,15 +2453,15 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 302.459163 - 0: The maximum resident set size (KB) = 864136 + 0: The total amount of wall time = 301.683476 + 0: The maximum resident set size (KB) = 866164 -Test 055 regional_2dwrtdecomp PASS +Test 056 regional_2dwrtdecomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_wofs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_wofs -Checking test 056 regional_wofs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_wofs +Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2471,15 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 377.396480 - 0: The maximum resident set size (KB) = 630064 + 0: The total amount of wall time = 378.546546 + 0: The maximum resident set size (KB) = 607316 -Test 056 regional_wofs PASS +Test 057 regional_wofs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_control -Checking test 057 rap_control results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_control +Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2507,15 +2525,15 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.783622 - 0: The maximum resident set size (KB) = 1054464 + 0: The total amount of wall time = 460.620786 + 0: The maximum resident set size (KB) = 1056524 -Test 057 rap_control PASS +Test 058 rap_control PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_spp_sppt_shum_skeb +Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2525,15 +2543,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.010871 - 0: The maximum resident set size (KB) = 1174804 + 0: The total amount of wall time = 233.835126 + 0: The maximum resident set size (KB) = 1188608 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 059 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_decomp -Checking test 059 rap_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_decomp +Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2579,15 +2597,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.948382 - 0: The maximum resident set size (KB) = 996344 + 0: The total amount of wall time = 482.338378 + 0: The maximum resident set size (KB) = 998252 -Test 059 rap_decomp PASS +Test 060 rap_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_2threads -Checking test 060 rap_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_2threads +Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2633,15 +2651,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.618815 - 0: The maximum resident set size (KB) = 1127016 + 0: The total amount of wall time = 436.689431 + 0: The maximum resident set size (KB) = 1134824 -Test 060 rap_2threads PASS +Test 061 rap_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_restart -Checking test 061 rap_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_restart +Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2679,15 +2697,15 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.746146 - 0: The maximum resident set size (KB) = 964084 + 0: The total amount of wall time = 235.029016 + 0: The maximum resident set size (KB) = 944124 -Test 061 rap_restart PASS +Test 062 rap_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_sfcdiff +Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2733,15 +2751,15 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.129808 - 0: The maximum resident set size (KB) = 1054484 + 0: The total amount of wall time = 461.639762 + 0: The maximum resident set size (KB) = 1048660 -Test 062 rap_sfcdiff PASS +Test 063 rap_sfcdiff PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_sfcdiff_decomp +Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2787,15 +2805,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.599966 - 0: The maximum resident set size (KB) = 995020 + 0: The total amount of wall time = 485.526081 + 0: The maximum resident set size (KB) = 988200 -Test 063 rap_sfcdiff_decomp PASS +Test 064 rap_sfcdiff_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_sfcdiff_restart +Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2833,15 +2851,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing 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.858047 - 0: The maximum resident set size (KB) = 983896 + 0: The total amount of wall time = 345.036111 + 0: The maximum resident set size (KB) = 979744 -Test 064 rap_sfcdiff_restart PASS +Test 065 rap_sfcdiff_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control -Checking test 065 hrrr_control results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control +Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,48 +2872,48 @@ Checking test 065 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 444.312612 - 0: The maximum resident set size (KB) = 1049552 - -Test 065 hrrr_control PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 429.043752 + 0: The maximum resident set size (KB) = 1048604 + +Test 066 hrrr_control PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_decomp +Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,48 +2926,48 @@ Checking test 066 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 470.629538 - 0: The maximum resident set size (KB) = 959360 - -Test 066 hrrr_control_decomp PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 449.436272 + 0: The maximum resident set size (KB) = 991888 + +Test 067 hrrr_control_decomp PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_2threads +Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2962,94 +2980,62 @@ Checking test 067 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 421.759555 - 0: The maximum resident set size (KB) = 1129172 - -Test 067 hrrr_control_2threads PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 399.511382 + 0: The maximum resident set size (KB) = 1065092 + +Test 068 hrrr_control_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_restart +Checking test 069 hrrr_control_restart 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 - 0: The total amount of wall time = 337.550337 - 0: The maximum resident set size (KB) = 964132 + 0: The total amount of wall time = 320.568283 + 0: The maximum resident set size (KB) = 981516 -Test 068 hrrr_control_restart PASS +Test 069 hrrr_control_restart PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_v1beta +Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3095,15 +3081,15 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.797900 - 0: The maximum resident set size (KB) = 1056096 + 0: The total amount of wall time = 456.587464 + 0: The maximum resident set size (KB) = 1052312 -Test 069 rrfs_v1beta PASS +Test 070 rrfs_v1beta PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_v1nssl +Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3117,15 +3103,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.969019 - 0: The maximum resident set size (KB) = 695788 + 0: The total amount of wall time = 540.175406 + 0: The maximum resident set size (KB) = 691308 -Test 070 rrfs_v1nssl PASS +Test 071 rrfs_v1nssl PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_v1nssl_nohailnoccn +Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3139,15 +3125,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.817183 - 0: The maximum resident set size (KB) = 733508 + 0: The total amount of wall time = 527.313512 + 0: The maximum resident set size (KB) = 752952 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 072 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_smoke_conus13km_hrrr_warm -Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_smoke_conus13km_hrrr_warm +Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3155,15 +3141,15 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.554115 - 0: The maximum resident set size (KB) = 1030112 + 0: The total amount of wall time = 147.374657 + 0: The maximum resident set size (KB) = 1027668 -Test 072 rrfs_smoke_conus13km_hrrr_warm PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3171,15 +3157,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.766988 - 0: The maximum resident set size (KB) = 898600 + 0: The total amount of wall time = 95.627438 + 0: The maximum resident set size (KB) = 930164 -Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_conus13km_hrrr_warm -Checking test 074 rrfs_conus13km_hrrr_warm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_conus13km_hrrr_warm +Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3187,15 +3173,15 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.025342 - 0: The maximum resident set size (KB) = 939488 + 0: The total amount of wall time = 131.897563 + 0: The maximum resident set size (KB) = 980360 -Test 074 rrfs_conus13km_hrrr_warm PASS +Test 075 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_smoke_conus13km_radar_tten_warm -Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_smoke_conus13km_radar_tten_warm +Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3203,27 +3189,27 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.336160 - 0: The maximum resident set size (KB) = 1023432 + 0: The total amount of wall time = 151.494591 + 0: The maximum resident set size (KB) = 1030024 -Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.480074 - 0: The maximum resident set size (KB) = 925328 + 0: The total amount of wall time = 70.151611 + 0: The maximum resident set size (KB) = 970716 -Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_csawmg -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_csawmg -Checking test 077 control_csawmg results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_csawmg +Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3233,15 +3219,15 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 346.642401 - 0: The maximum resident set size (KB) = 728568 + 0: The total amount of wall time = 351.423398 + 0: The maximum resident set size (KB) = 717676 -Test 077 control_csawmg PASS +Test 078 control_csawmg PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_csawmgt -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_csawmgt -Checking test 078 control_csawmgt results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_csawmgt +Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3251,15 +3237,15 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.543592 - 0: The maximum resident set size (KB) = 713200 + 0: The total amount of wall time = 342.561890 + 0: The maximum resident set size (KB) = 695800 -Test 078 control_csawmgt PASS +Test 079 control_csawmgt PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_ras -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_ras -Checking test 079 control_ras results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_ras +Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3269,27 +3255,27 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.915233 - 0: The maximum resident set size (KB) = 716864 + 0: The total amount of wall time = 181.297126 + 0: The maximum resident set size (KB) = 713192 -Test 079 control_ras PASS +Test 080 control_ras PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_wam -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_wam -Checking test 080 control_wam results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_wam +Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.307149 - 0: The maximum resident set size (KB) = 636744 + 0: The total amount of wall time = 111.942647 + 0: The maximum resident set size (KB) = 643852 -Test 080 control_wam PASS +Test 081 control_wam PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8_faster -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_p8_faster -Checking test 081 control_p8_faster results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_p8_faster +Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3335,15 +3321,15 @@ Checking test 081 control_p8_faster results .... Comparing 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.507367 - 0: The maximum resident set size (KB) = 1591680 + 0: The total amount of wall time = 153.821269 + 0: The maximum resident set size (KB) = 1593648 -Test 081 control_p8_faster PASS +Test 082 control_p8_faster PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_control_faster -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_control_faster -Checking test 082 regional_control_faster results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_control_faster +Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3353,57 +3339,57 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 274.037126 - 0: The maximum resident set size (KB) = 868348 + 0: The total amount of wall time = 273.268820 + 0: The maximum resident set size (KB) = 855656 -Test 082 regional_control_faster PASS +Test 083 regional_control_faster PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 835.391624 - 0: The maximum resident set size (KB) = 1060588 + 0: The total amount of wall time = 837.520960 + 0: The maximum resident set size (KB) = 1056492 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 479.852276 - 0: The maximum resident set size (KB) = 970624 + 0: The total amount of wall time = 471.250878 + 0: The maximum resident set size (KB) = 964828 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_conus13km_hrrr_warm_debug -Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_conus13km_hrrr_warm_debug +Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 741.180113 - 0: The maximum resident set size (KB) = 964680 + 0: The total amount of wall time = 743.551316 + 0: The maximum resident set size (KB) = 1006440 -Test 085 rrfs_conus13km_hrrr_warm_debug PASS +Test 086 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_CubedSphereGrid_debug -Checking test 086 control_CubedSphereGrid_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_CubedSphereGrid_debug +Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3429,335 +3415,349 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.214855 - 0: The maximum resident set size (KB) = 762960 + 0: The total amount of wall time = 146.103331 + 0: The maximum resident set size (KB) = 789532 -Test 086 control_CubedSphereGrid_debug PASS +Test 087 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_wrtGauss_netcdf_parallel_debug -Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_wrtGauss_netcdf_parallel_debug +Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.167949 - 0: The maximum resident set size (KB) = 793676 + 0: The total amount of wall time = 143.050970 + 0: The maximum resident set size (KB) = 792744 -Test 087 control_wrtGauss_netcdf_parallel_debug PASS +Test 088 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_stochy_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_stochy_debug -Checking test 088 control_stochy_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_stochy_debug +Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.153181 - 0: The maximum resident set size (KB) = 794412 + 0: The total amount of wall time = 162.128961 + 0: The maximum resident set size (KB) = 800288 -Test 088 control_stochy_debug PASS +Test 089 control_stochy_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_lndp_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_lndp_debug -Checking test 089 control_lndp_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_lndp_debug +Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.289759 - 0: The maximum resident set size (KB) = 790152 + 0: The total amount of wall time = 146.883736 + 0: The maximum resident set size (KB) = 791888 -Test 089 control_lndp_debug PASS +Test 090 control_lndp_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_csawmg_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_csawmg_debug -Checking test 090 control_csawmg_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_csawmg_debug +Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.131619 - 0: The maximum resident set size (KB) = 835460 + 0: The total amount of wall time = 230.704582 + 0: The maximum resident set size (KB) = 832764 -Test 090 control_csawmg_debug PASS +Test 091 control_csawmg_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_csawmgt_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_csawmgt_debug -Checking test 091 control_csawmgt_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_csawmgt_debug +Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.560829 - 0: The maximum resident set size (KB) = 837632 + 0: The total amount of wall time = 225.089936 + 0: The maximum resident set size (KB) = 840720 -Test 091 control_csawmgt_debug PASS +Test 092 control_csawmgt_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_ras_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_ras_debug -Checking test 092 control_ras_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_ras_debug +Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.056634 - 0: The maximum resident set size (KB) = 801268 + 0: The total amount of wall time = 150.372662 + 0: The maximum resident set size (KB) = 800496 -Test 092 control_ras_debug PASS +Test 093 control_ras_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_diag_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_diag_debug -Checking test 093 control_diag_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_diag_debug +Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.134031 - 0: The maximum resident set size (KB) = 845252 + 0: The total amount of wall time = 151.223451 + 0: The maximum resident set size (KB) = 850348 -Test 093 control_diag_debug PASS +Test 094 control_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_debug_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_debug_p8 -Checking test 094 control_debug_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_debug_p8 +Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.696108 - 0: The maximum resident set size (KB) = 1587880 + 0: The total amount of wall time = 165.315604 + 0: The maximum resident set size (KB) = 1616772 -Test 094 control_debug_p8 PASS +Test 095 control_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_debug -Checking test 095 regional_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_debug +Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.437592 - 0: The maximum resident set size (KB) = 883152 + 0: The total amount of wall time = 981.062310 + 0: The maximum resident set size (KB) = 883944 -Test 095 regional_debug PASS +Test 096 regional_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_control_debug -Checking test 096 rap_control_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_control_debug +Checking test 097 rap_control_debug 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.525493 - 0: The maximum resident set size (KB) = 1161428 + 0: The total amount of wall time = 272.009052 + 0: The maximum resident set size (KB) = 1153920 -Test 096 rap_control_debug PASS +Test 097 rap_control_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_debug -Checking test 097 hrrr_control_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_debug +Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.075196 - 0: The maximum resident set size (KB) = 1164556 + 0: The total amount of wall time = 269.675804 + 0: The maximum resident set size (KB) = 1157588 -Test 097 hrrr_control_debug PASS +Test 098 hrrr_control_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_unified_drag_suite_debug -Checking test 098 rap_unified_drag_suite_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_unified_drag_suite_debug +Checking test 099 rap_unified_drag_suite_debug 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.627824 - 0: The maximum resident set size (KB) = 1167276 + 0: The total amount of wall time = 272.607189 + 0: The maximum resident set size (KB) = 1164248 -Test 098 rap_unified_drag_suite_debug PASS +Test 099 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_diag_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_diag_debug -Checking test 099 rap_diag_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_diag_debug +Checking test 100 rap_diag_debug 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.111256 - 0: The maximum resident set size (KB) = 1251364 + 0: The total amount of wall time = 283.408908 + 0: The maximum resident set size (KB) = 1253168 -Test 099 rap_diag_debug PASS +Test 100 rap_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_cires_ugwp_debug -Checking test 100 rap_cires_ugwp_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_cires_ugwp_debug +Checking test 101 rap_cires_ugwp_debug 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.241911 - 0: The maximum resident set size (KB) = 1170868 + 0: The total amount of wall time = 276.515902 + 0: The maximum resident set size (KB) = 1167500 -Test 100 rap_cires_ugwp_debug PASS +Test 101 rap_cires_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_unified_ugwp_debug -Checking test 101 rap_unified_ugwp_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_unified_ugwp_debug +Checking test 102 rap_unified_ugwp_debug 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.052844 - 0: The maximum resident set size (KB) = 1165960 + 0: The total amount of wall time = 282.798507 + 0: The maximum resident set size (KB) = 1167564 -Test 101 rap_unified_ugwp_debug PASS +Test 102 rap_unified_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_lndp_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_lndp_debug -Checking test 102 rap_lndp_debug 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.733013 - 0: The maximum resident set size (KB) = 1170604 - -Test 102 rap_lndp_debug PASS - - -baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_flake_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_flake_debug -Checking test 103 rap_flake_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_lndp_debug +Checking test 103 rap_lndp_debug 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.145988 - 0: The maximum resident set size (KB) = 1165928 + 0: The total amount of wall time = 275.764445 + 0: The maximum resident set size (KB) = 1166604 -Test 103 rap_flake_debug PASS +Test 103 rap_lndp_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug 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.357164 - 0: The maximum resident set size (KB) = 1166396 + 0: The total amount of wall time = 270.793387 + 0: The maximum resident set size (KB) = 1165928 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_noah_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_noah_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.467116 - 0: The maximum resident set size (KB) = 1168364 + 0: The total amount of wall time = 267.476162 + 0: The maximum resident set size (KB) = 1167628 Test 105 rap_noah_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_sfcdiff_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug 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.440511 - 0: The maximum resident set size (KB) = 1134332 + 0: The total amount of wall time = 268.002706 + 0: The maximum resident set size (KB) = 1165684 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.191598 - 0: The maximum resident set size (KB) = 1164236 + 0: The total amount of wall time = 448.339466 + 0: The maximum resident set size (KB) = 1163872 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug 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.722209 - 0: The maximum resident set size (KB) = 1160384 + 0: The total amount of wall time = 266.163007 + 0: The maximum resident set size (KB) = 1161504 Test 108 rrfs_v1beta_debug PASS +baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_clm_lake_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_clm_lake_debug +Checking test 109 rap_clm_lake_debug 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.885215 + 0: The maximum resident set size (KB) = 1166640 + +Test 109 rap_clm_lake_debug PASS + + +baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_flake_debug +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_flake_debug +Checking test 110 rap_flake_debug 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.469664 + 0: The maximum resident set size (KB) = 1150216 + +Test 110 rap_flake_debug PASS + + baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_wam_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_wam_debug -Checking test 109 control_wam_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_wam_debug +Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 273.806777 - 0: The maximum resident set size (KB) = 513540 + 0: The total amount of wall time = 274.312402 + 0: The maximum resident set size (KB) = 524928 -Test 109 control_wam_debug PASS +Test 111 control_wam_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +3767,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 231.728042 - 0: The maximum resident set size (KB) = 1070704 + 0: The total amount of wall time = 227.391956 + 0: The maximum resident set size (KB) = 1062868 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_control_dyn32_phy32 -Checking test 111 rap_control_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_control_dyn32_phy32 +Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +3821,15 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.514471 - 0: The maximum resident set size (KB) = 998256 + 0: The total amount of wall time = 387.588008 + 0: The maximum resident set size (KB) = 992700 -Test 111 rap_control_dyn32_phy32 PASS +Test 113 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_dyn32_phy32 -Checking test 112 hrrr_control_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_dyn32_phy32 +Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3842,48 +3842,48 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 207.870423 - 0: The maximum resident set size (KB) = 959684 - -Test 112 hrrr_control_dyn32_phy32 PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 193.629955 + 0: The maximum resident set size (KB) = 935236 + +Test 114 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_2threads_dyn32_phy32 -Checking test 113 rap_2threads_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_2threads_dyn32_phy32 +Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +3929,15 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.505340 - 0: The maximum resident set size (KB) = 1025632 + 0: The total amount of wall time = 371.976218 + 0: The maximum resident set size (KB) = 1010656 -Test 113 rap_2threads_dyn32_phy32 PASS +Test 115 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_2threads_dyn32_phy32 -Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_2threads_dyn32_phy32 +Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3950,48 +3950,48 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 196.356779 - 0: The maximum resident set size (KB) = 976216 - -Test 114 hrrr_control_2threads_dyn32_phy32 PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 183.042603 + 0: The maximum resident set size (KB) = 922696 + +Test 116 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_decomp_dyn32_phy32 -Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_decomp_dyn32_phy32 +Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4004,48 +4004,48 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 213.528496 - 0: The maximum resident set size (KB) = 902344 - -Test 115 hrrr_control_decomp_dyn32_phy32 PASS + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 203.210708 + 0: The maximum resident set size (KB) = 896480 + +Test 117 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_restart_dyn32_phy32 -Checking test 116 rap_restart_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_restart_dyn32_phy32 +Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,61 +4083,29 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.373791 - 0: The maximum resident set size (KB) = 949636 + 0: The total amount of wall time = 294.362612 + 0: The maximum resident set size (KB) = 942508 -Test 116 rap_restart_dyn32_phy32 PASS +Test 118 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_restart_dyn32_phy32 -Checking test 117 hrrr_control_restart_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_restart_dyn32_phy32 +Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 106.290444 - 0: The maximum resident set size (KB) = 833992 + 0: The total amount of wall time = 99.108961 + 0: The maximum resident set size (KB) = 857488 -Test 117 hrrr_control_restart_dyn32_phy32 PASS +Test 119 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_control_dyn64_phy32 -Checking test 118 rap_control_dyn64_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_control_dyn64_phy32 +Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4183,82 +4151,82 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.642070 - 0: The maximum resident set size (KB) = 960040 + 0: The total amount of wall time = 247.879892 + 0: The maximum resident set size (KB) = 965424 -Test 118 rap_control_dyn64_phy32 PASS +Test 120 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_control_debug_dyn32_phy32 -Checking test 119 rap_control_debug_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_control_debug_dyn32_phy32 +Checking test 121 rap_control_debug_dyn32_phy32 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.685418 - 0: The maximum resident set size (KB) = 1046924 + 0: The total amount of wall time = 272.081858 + 0: The maximum resident set size (KB) = 1052176 -Test 119 rap_control_debug_dyn32_phy32 PASS +Test 121 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hrrr_control_debug_dyn32_phy32 -Checking test 120 hrrr_control_debug_dyn32_phy32 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hrrr_control_debug_dyn32_phy32 +Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.334323 - 0: The maximum resident set size (KB) = 1047612 + 0: The total amount of wall time = 266.827798 + 0: The maximum resident set size (KB) = 1051636 -Test 120 hrrr_control_debug_dyn32_phy32 PASS +Test 122 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/rap_control_dyn64_phy32_debug -Checking test 121 rap_control_dyn64_phy32_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/rap_control_dyn64_phy32_debug +Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.755044 - 0: The maximum resident set size (KB) = 1090904 + 0: The total amount of wall time = 272.945761 + 0: The maximum resident set size (KB) = 1094868 -Test 121 rap_control_dyn64_phy32_debug PASS +Test 123 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_atm -Checking test 122 hafs_regional_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_atm +Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 250.729867 - 0: The maximum resident set size (KB) = 1056464 + 0: The total amount of wall time = 240.138963 + 0: The maximum resident set size (KB) = 1051696 -Test 122 hafs_regional_atm PASS +Test 124 hafs_regional_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_atm_thompson_gfdlsf -Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_atm_thompson_gfdlsf +Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 354.205804 - 0: The maximum resident set size (KB) = 1402976 + 0: The total amount of wall time = 328.039229 + 0: The maximum resident set size (KB) = 1396784 -Test 123 hafs_regional_atm_thompson_gfdlsf PASS +Test 125 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_atm_ocn -Checking test 124 hafs_regional_atm_ocn results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_atm_ocn +Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4266,15 +4234,15 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 387.601227 - 0: The maximum resident set size (KB) = 1213168 + 0: The total amount of wall time = 384.208710 + 0: The maximum resident set size (KB) = 1223868 -Test 124 hafs_regional_atm_ocn PASS +Test 126 hafs_regional_atm_ocn PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_wav -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_atm_wav -Checking test 125 hafs_regional_atm_wav results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_atm_wav +Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4282,15 +4250,15 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 748.874773 - 0: The maximum resident set size (KB) = 1243148 + 0: The total amount of wall time = 754.037796 + 0: The maximum resident set size (KB) = 1249392 -Test 125 hafs_regional_atm_wav PASS +Test 127 hafs_regional_atm_wav PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_atm_ocn_wav -Checking test 126 hafs_regional_atm_ocn_wav results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_atm_ocn_wav +Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4300,29 +4268,29 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 853.563951 - 0: The maximum resident set size (KB) = 1269636 + 0: The total amount of wall time = 856.940045 + 0: The maximum resident set size (KB) = 1272024 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 128 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_1nest_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_1nest_atm -Checking test 127 hafs_regional_1nest_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_1nest_atm +Checking test 129 hafs_regional_1nest_atm 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 = 322.926937 - 0: The maximum resident set size (KB) = 498628 + 0: The total amount of wall time = 322.519571 + 0: The maximum resident set size (KB) = 507364 -Test 127 hafs_regional_1nest_atm PASS +Test 129 hafs_regional_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_telescopic_2nests_atm -Checking test 128 hafs_regional_telescopic_2nests_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_telescopic_2nests_atm +Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4330,29 +4298,29 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 379.809313 - 0: The maximum resident set size (KB) = 512064 + 0: The total amount of wall time = 368.848238 + 0: The maximum resident set size (KB) = 512456 -Test 128 hafs_regional_telescopic_2nests_atm PASS +Test 130 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_global_1nest_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_global_1nest_atm -Checking test 129 hafs_global_1nest_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_global_1nest_atm +Checking test 131 hafs_global_1nest_atm 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 = 154.857860 - 0: The maximum resident set size (KB) = 350380 + 0: The total amount of wall time = 152.174249 + 0: The maximum resident set size (KB) = 349748 -Test 129 hafs_global_1nest_atm PASS +Test 131 hafs_global_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_global_multiple_4nests_atm -Checking test 130 hafs_global_multiple_4nests_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_global_multiple_4nests_atm +Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4369,15 +4337,15 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 422.202103 - 0: The maximum resident set size (KB) = 419332 + 0: The total amount of wall time = 415.131711 + 0: The maximum resident set size (KB) = 421216 -Test 130 hafs_global_multiple_4nests_atm PASS +Test 132 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_specified_moving_1nest_atm -Checking test 131 hafs_regional_specified_moving_1nest_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_specified_moving_1nest_atm +Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4385,29 +4353,29 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 208.247028 - 0: The maximum resident set size (KB) = 518464 + 0: The total amount of wall time = 206.238329 + 0: The maximum resident set size (KB) = 520428 -Test 131 hafs_regional_specified_moving_1nest_atm PASS +Test 133 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_storm_following_1nest_atm -Checking test 132 hafs_regional_storm_following_1nest_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_storm_following_1nest_atm +Checking test 134 hafs_regional_storm_following_1nest_atm 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 = 201.250986 - 0: The maximum resident set size (KB) = 518548 + 0: The total amount of wall time = 194.039380 + 0: The maximum resident set size (KB) = 518724 -Test 132 hafs_regional_storm_following_1nest_atm PASS +Test 134 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_storm_following_1nest_atm_ocn -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_storm_following_1nest_atm_ocn +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4415,43 +4383,43 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 231.119218 - 0: The maximum resident set size (KB) = 561164 + 0: The total amount of wall time = 225.104432 + 0: The maximum resident set size (KB) = 562584 -Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_global_storm_following_1nest_atm -Checking test 134 hafs_global_storm_following_1nest_atm results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_global_storm_following_1nest_atm +Checking test 136 hafs_global_storm_following_1nest_atm 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 = 61.581660 - 0: The maximum resident set size (KB) = 335928 + 0: The total amount of wall time = 59.717702 + 0: The maximum resident set size (KB) = 367108 -Test 134 hafs_global_storm_following_1nest_atm PASS +Test 136 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 723.639556 - 0: The maximum resident set size (KB) = 595728 + 0: The total amount of wall time = 721.521834 + 0: The maximum resident set size (KB) = 586108 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4461,162 +4429,162 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 487.376635 - 0: The maximum resident set size (KB) = 614508 + 0: The total amount of wall time = 486.932996 + 0: The maximum resident set size (KB) = 623408 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_docn -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_docn -Checking test 137 hafs_regional_docn results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_docn +Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.949730 - 0: The maximum resident set size (KB) = 1230916 + 0: The total amount of wall time = 363.499290 + 0: The maximum resident set size (KB) = 1229940 -Test 137 hafs_regional_docn PASS +Test 139 hafs_regional_docn PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_docn_oisst -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_docn_oisst -Checking test 138 hafs_regional_docn_oisst results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_docn_oisst +Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 362.328365 - 0: The maximum resident set size (KB) = 1182008 + 0: The total amount of wall time = 359.884577 + 0: The maximum resident set size (KB) = 1213420 -Test 138 hafs_regional_docn_oisst PASS +Test 140 hafs_regional_docn_oisst PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/hafs_regional_datm_cdeps -Checking test 139 hafs_regional_datm_cdeps results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/hafs_regional_datm_cdeps +Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 954.300567 - 0: The maximum resident set size (KB) = 1040836 + 0: The total amount of wall time = 960.343132 + 0: The maximum resident set size (KB) = 1042136 -Test 139 hafs_regional_datm_cdeps PASS +Test 141 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_control_cfsr -Checking test 140 datm_cdeps_control_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_control_cfsr +Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.393117 - 0: The maximum resident set size (KB) = 1056368 + 0: The total amount of wall time = 157.417163 + 0: The maximum resident set size (KB) = 1060128 -Test 140 datm_cdeps_control_cfsr PASS +Test 142 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_restart_cfsr -Checking test 141 datm_cdeps_restart_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_restart_cfsr +Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.669124 - 0: The maximum resident set size (KB) = 1014344 + 0: The total amount of wall time = 93.492774 + 0: The maximum resident set size (KB) = 1025940 -Test 141 datm_cdeps_restart_cfsr PASS +Test 143 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_gefs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_control_gefs -Checking test 142 datm_cdeps_control_gefs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_control_gefs +Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.054708 - 0: The maximum resident set size (KB) = 977876 + 0: The total amount of wall time = 149.180639 + 0: The maximum resident set size (KB) = 972668 -Test 142 datm_cdeps_control_gefs PASS +Test 144 datm_cdeps_control_gefs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_iau_gefs -Checking test 143 datm_cdeps_iau_gefs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_iau_gefs +Checking test 145 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.287475 - 0: The maximum resident set size (KB) = 961264 + 0: The total amount of wall time = 151.121937 + 0: The maximum resident set size (KB) = 960476 -Test 143 datm_cdeps_iau_gefs PASS +Test 145 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_stochy_gefs -Checking test 144 datm_cdeps_stochy_gefs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_stochy_gefs +Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.047108 - 0: The maximum resident set size (KB) = 965620 + 0: The total amount of wall time = 151.110210 + 0: The maximum resident set size (KB) = 957344 -Test 144 datm_cdeps_stochy_gefs PASS +Test 146 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_ciceC_cfsr -Checking test 145 datm_cdeps_ciceC_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_ciceC_cfsr +Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.891864 - 0: The maximum resident set size (KB) = 1068552 + 0: The total amount of wall time = 155.427450 + 0: The maximum resident set size (KB) = 1052812 -Test 145 datm_cdeps_ciceC_cfsr PASS +Test 147 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_bulk_cfsr -Checking test 146 datm_cdeps_bulk_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_bulk_cfsr +Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.005586 - 0: The maximum resident set size (KB) = 1057232 + 0: The total amount of wall time = 159.115962 + 0: The maximum resident set size (KB) = 1056844 -Test 146 datm_cdeps_bulk_cfsr PASS +Test 148 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_bulk_gefs -Checking test 147 datm_cdeps_bulk_gefs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_bulk_gefs +Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.992902 - 0: The maximum resident set size (KB) = 962736 + 0: The total amount of wall time = 150.591532 + 0: The maximum resident set size (KB) = 968648 -Test 147 datm_cdeps_bulk_gefs PASS +Test 149 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_mx025_cfsr -Checking test 148 datm_cdeps_mx025_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_mx025_cfsr +Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4624,15 +4592,15 @@ Checking test 148 datm_cdeps_mx025_cfsr 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 = 411.592803 - 0: The maximum resident set size (KB) = 871652 + 0: The total amount of wall time = 422.155181 + 0: The maximum resident set size (KB) = 873456 -Test 148 datm_cdeps_mx025_cfsr PASS +Test 150 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_mx025_gefs -Checking test 149 datm_cdeps_mx025_gefs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_mx025_gefs +Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4640,78 +4608,78 @@ Checking test 149 datm_cdeps_mx025_gefs 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 = 413.218426 - 0: The maximum resident set size (KB) = 928240 + 0: The total amount of wall time = 422.698493 + 0: The maximum resident set size (KB) = 932920 -Test 149 datm_cdeps_mx025_gefs PASS +Test 151 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_multiple_files_cfsr -Checking test 150 datm_cdeps_multiple_files_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_multiple_files_cfsr +Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.088780 - 0: The maximum resident set size (KB) = 1074980 + 0: The total amount of wall time = 156.786439 + 0: The maximum resident set size (KB) = 1064260 -Test 150 datm_cdeps_multiple_files_cfsr PASS +Test 152 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_3072x1536_cfsr -Checking test 151 datm_cdeps_3072x1536_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_3072x1536_cfsr +Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 219.230735 - 0: The maximum resident set size (KB) = 2364272 + 0: The total amount of wall time = 226.815652 + 0: The maximum resident set size (KB) = 2362220 -Test 151 datm_cdeps_3072x1536_cfsr PASS +Test 153 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_gfs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_gfs -Checking test 152 datm_cdeps_gfs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_gfs +Checking test 154 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 224.031845 - 0: The maximum resident set size (KB) = 2359096 + 0: The total amount of wall time = 236.815208 + 0: The maximum resident set size (KB) = 2305164 -Test 152 datm_cdeps_gfs PASS +Test 154 datm_cdeps_gfs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_debug_cfsr -Checking test 153 datm_cdeps_debug_cfsr results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_debug_cfsr +Checking test 155 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 358.780471 - 0: The maximum resident set size (KB) = 980200 + 0: The total amount of wall time = 357.081844 + 0: The maximum resident set size (KB) = 977508 -Test 153 datm_cdeps_debug_cfsr PASS +Test 155 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_control_cfsr_faster -Checking test 154 datm_cdeps_control_cfsr_faster results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_control_cfsr_faster +Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.142625 - 0: The maximum resident set size (KB) = 1070292 + 0: The total amount of wall time = 155.583341 + 0: The maximum resident set size (KB) = 1052632 -Test 154 datm_cdeps_control_cfsr_faster PASS +Test 156 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_lnd_gswp3 -Checking test 155 datm_cdeps_lnd_gswp3 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_lnd_gswp3 +Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4719,15 +4687,15 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.622645 - 0: The maximum resident set size (KB) = 263900 + 0: The total amount of wall time = 7.086498 + 0: The maximum resident set size (KB) = 261604 -Test 155 datm_cdeps_lnd_gswp3 PASS +Test 157 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/datm_cdeps_lnd_gswp3_rst -Checking test 156 datm_cdeps_lnd_gswp3_rst results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/datm_cdeps_lnd_gswp3_rst +Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4735,15 +4703,15 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.984542 - 0: The maximum resident set size (KB) = 255368 + 0: The total amount of wall time = 12.513787 + 0: The maximum resident set size (KB) = 262308 -Test 156 datm_cdeps_lnd_gswp3_rst PASS +Test 158 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_p8_atmlnd_sbs -Checking test 157 control_p8_atmlnd_sbs results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_p8_atmlnd_sbs +Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4827,15 +4795,15 @@ Checking test 157 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 208.452098 - 0: The maximum resident set size (KB) = 1607240 + 0: The total amount of wall time = 218.665949 + 0: The maximum resident set size (KB) = 1599892 -Test 157 control_p8_atmlnd_sbs PASS +Test 159 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/atmwav_control_noaero_p8 -Checking test 158 atmwav_control_noaero_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/atmwav_control_noaero_p8 +Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4845,15 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 97.100081 - 0: The maximum resident set size (KB) = 1623884 + 0: The total amount of wall time = 105.529590 + 0: The maximum resident set size (KB) = 1635072 -Test 158 atmwav_control_noaero_p8 PASS +Test 160 atmwav_control_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/control_atmwav -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/control_atmwav -Checking test 159 control_atmwav results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/control_atmwav +Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4928,15 +4896,15 @@ Checking test 159 control_atmwav 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.677571 - 0: The maximum resident set size (KB) = 657612 + 0: The total amount of wall time = 91.228917 + 0: The maximum resident set size (KB) = 660424 -Test 159 control_atmwav PASS +Test 161 control_atmwav PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/atmaero_control_p8 -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/atmaero_control_p8 -Checking test 160 atmaero_control_p8 results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/atmaero_control_p8 +Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4979,15 +4947,15 @@ Checking test 160 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.191634 - 0: The maximum resident set size (KB) = 2968140 + 0: The total amount of wall time = 241.925763 + 0: The maximum resident set size (KB) = 2960868 -Test 160 atmaero_control_p8 PASS +Test 162 atmaero_control_p8 PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/atmaero_control_p8_rad -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/atmaero_control_p8_rad -Checking test 161 atmaero_control_p8_rad results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/atmaero_control_p8_rad +Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5030,15 +4998,15 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.731716 - 0: The maximum resident set size (KB) = 3030252 + 0: The total amount of wall time = 288.753833 + 0: The maximum resident set size (KB) = 3036060 -Test 161 atmaero_control_p8_rad PASS +Test 163 atmaero_control_p8_rad PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/atmaero_control_p8_rad_micro -Checking test 162 atmaero_control_p8_rad_micro results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/atmaero_control_p8_rad_micro +Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5081,15 +5049,15 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.225682 - 0: The maximum resident set size (KB) = 3044456 + 0: The total amount of wall time = 291.467832 + 0: The maximum resident set size (KB) = 3050876 -Test 162 atmaero_control_p8_rad_micro PASS +Test 164 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_atmaq -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_atmaq -Checking test 163 regional_atmaq results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_atmaq +Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,15 +5072,15 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 649.466580 - 0: The maximum resident set size (KB) = 1443156 + 0: The total amount of wall time = 651.057616 + 0: The maximum resident set size (KB) = 1436472 -Test 163 regional_atmaq PASS +Test 165 regional_atmaq PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_atmaq_debug -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_atmaq_debug -Checking test 164 regional_atmaq_debug results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_atmaq_debug +Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5125,15 +5093,15 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1197.953664 - 0: The maximum resident set size (KB) = 1350952 + 0: The total amount of wall time = 1186.141259 + 0: The maximum resident set size (KB) = 1339816 -Test 164 regional_atmaq_debug PASS +Test 166 regional_atmaq_debug PASS baseline dir = /scratch1/BMC/gmtb/Grant.Firl/stmp4/Grant.Firl/FV3_RT/REGRESSION_TEST_INTEL/regional_atmaq_faster -working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_4554/regional_atmaq_faster -Checking test 165 regional_atmaq_faster results .... +working dir = /scratch1/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_5132/regional_atmaq_faster +Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5148,12 +5116,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 571.014238 - 0: The maximum resident set size (KB) = 1467508 + 0: The total amount of wall time = 566.390530 + 0: The maximum resident set size (KB) = 1448504 -Test 165 regional_atmaq_faster PASS +Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 8 19:02:56 UTC 2023 -Elapsed time: 01h:12m:23s. Have a nice day! +Wed Jun 14 16:48:47 UTC 2023 +Elapsed time: 01h:15m:40s. Have a nice day! From 8e4addc662348ad435e980210b3539c434dff581 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 15 Jun 2023 12:55:56 -0600 Subject: [PATCH 4/5] add successful Cheyenne logs and update BL_DATE in rt.ncar.sh --- tests/RegressionTests_cheyenne.gnu.log | 1170 +++++------ tests/RegressionTests_cheyenne.intel.log | 2454 +++++++++++----------- tests/rt.ncar.sh | 2 +- 3 files changed, 1788 insertions(+), 1838 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8afecb70a5..6432eadd3b 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Mon May 8 16:49:10 MDT 2023 +Thu Jun 15 09:44:09 MDT 2023 Start Regression test -Compile 001 elapsed time 386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 407 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 892 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1125 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 905 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 888 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 652 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 369 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 305 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_c48 +Compile 001 elapsed time 391 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 002 elapsed time 400 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 894 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 901 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 890 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 659 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 575 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 293 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_c48 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 822.602178 -0:The maximum resident set size (KB) = 679820 +0:The total amount of wall time = 820.123543 +0:The maximum resident set size (KB) = 680308 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_stochy +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_stochy +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.452875 -0:The maximum resident set size (KB) = 443468 +0:The total amount of wall time = 177.513594 +0:The maximum resident set size (KB) = 443528 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_ras +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_ras +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.249070 -0:The maximum resident set size (KB) = 451956 +0:The total amount of wall time = 294.310816 +0:The maximum resident set size (KB) = 452344 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,15 +144,33 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.418493 -0:The maximum resident set size (KB) = 1224696 +0:The total amount of wall time = 310.838140 +0:The maximum resident set size (KB) = 1225164 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_control -Checking test 005 rap_control results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_flake +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_flake +Checking test 005 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 351.750018 +0:The maximum resident set size (KB) = 490680 + +Test 005 control_flake PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_control +Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -198,15 +216,15 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.810733 -0:The maximum resident set size (KB) = 792192 +0:The total amount of wall time = 713.200906 +0:The maximum resident set size (KB) = 792392 -Test 005 rap_control PASS +Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_decomp -Checking test 006 rap_decomp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_decomp +Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -252,15 +270,15 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 727.289666 -0:The maximum resident set size (KB) = 791964 +0:The total amount of wall time = 717.834369 +0:The maximum resident set size (KB) = 791764 -Test 006 rap_decomp PASS +Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_2threads -Checking test 007 rap_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_2threads +Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -306,15 +324,15 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.305258 -0:The maximum resident set size (KB) = 865892 +0:The total amount of wall time = 656.374311 +0:The maximum resident set size (KB) = 866044 -Test 007 rap_2threads PASS +Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_restart -Checking test 008 rap_restart results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_restart +Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -352,15 +370,15 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.141756 -0:The maximum resident set size (KB) = 539508 +0:The total amount of wall time = 355.506725 +0:The maximum resident set size (KB) = 539472 -Test 008 rap_restart PASS +Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_sfcdiff +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_sfcdiff +Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -406,15 +424,15 @@ Checking test 009 rap_sfcdiff results .... Comparing 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.790188 -0:The maximum resident set size (KB) = 792384 +0:The total amount of wall time = 714.307347 +0:The maximum resident set size (KB) = 791832 -Test 009 rap_sfcdiff PASS +Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_sfcdiff +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_sfcdiff_decomp +Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -460,15 +478,15 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.057866 -0:The maximum resident set size (KB) = 791660 +0:The total amount of wall time = 720.728944 +0:The maximum resident set size (KB) = 791580 -Test 010 rap_sfcdiff_decomp PASS +Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_sfcdiff +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_sfcdiff_restart +Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -506,15 +524,15 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 526.599947 -0:The maximum resident set size (KB) = 544740 +0:The total amount of wall time = 529.838423 +0:The maximum resident set size (KB) = 544528 -Test 011 rap_sfcdiff_restart PASS +Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control -Checking test 012 hrrr_control results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control +Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -527,48 +545,48 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 691.420882 -0:The maximum resident set size (KB) = 790036 - -Test 012 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 686.761340 +0:The maximum resident set size (KB) = 789088 + +Test 013 hrrr_control PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_2threads +Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -581,48 +599,48 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 627.828556 -0:The maximum resident set size (KB) = 860272 - -Test 013 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 709.851417 +0:The maximum resident set size (KB) = 855748 + +Test 014 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_decomp +Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -635,94 +653,62 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 690.784236 -0:The maximum resident set size (KB) = 789344 - -Test 014 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 683.394129 +0:The maximum resident set size (KB) = 789036 + +Test 015 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_restart +Checking test 016 hrrr_control_restart 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 -0:The total amount of wall time = 511.322630 -0:The maximum resident set size (KB) = 540744 +0:The total amount of wall time = 508.594555 +0:The maximum resident set size (KB) = 539656 -Test 015 hrrr_control_restart PASS +Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_v1beta +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_v1beta +Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -768,15 +754,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.152556 -0:The maximum resident set size (KB) = 789288 +0:The total amount of wall time = 703.452714 +0:The maximum resident set size (KB) = 788960 -Test 016 rrfs_v1beta PASS +Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_smoke_conus13km_hrrr_warm -Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +770,15 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.811102 -0:The maximum resident set size (KB) = 637060 +0:The total amount of wall time = 230.420105 +0:The maximum resident set size (KB) = 639456 -Test 017 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +786,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.762510 -0:The maximum resident set size (KB) = 660604 +0:The total amount of wall time = 146.547690 +0:The maximum resident set size (KB) = 658632 -Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_conus13km_hrrr_warm -Checking test 019 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_conus13km_hrrr_warm +Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +802,15 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.186115 -0:The maximum resident set size (KB) = 616004 +0:The total amount of wall time = 210.893903 +0:The maximum resident set size (KB) = 618268 -Test 019 rrfs_conus13km_hrrr_warm PASS +Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_smoke_conus13km_radar_tten_warm -Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_smoke_conus13km_radar_tten_warm +Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,235 +818,263 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.634352 -0:The maximum resident set size (KB) = 639288 +0:The total amount of wall time = 232.414575 +0:The maximum resident set size (KB) = 642644 -Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 111.223838 -0:The maximum resident set size (KB) = 596588 +0:The total amount of wall time = 111.343206 +0:The maximum resident set size (KB) = 599532 -Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_diag_debug -Checking test 022 control_diag_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_diag_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_diag_debug +Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.681204 -0:The maximum resident set size (KB) = 492916 +0:The total amount of wall time = 83.983322 +0:The maximum resident set size (KB) = 492020 -Test 022 control_diag_debug PASS +Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/regional_debug -Checking test 023 regional_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/regional_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/regional_debug +Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 477.142900 -0:The maximum resident set size (KB) = 567852 +0:The total amount of wall time = 477.920582 +0:The maximum resident set size (KB) = 567240 + +Test 024 regional_debug PASS + -Test 023 regional_debug PASS +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_control_debug +Checking test 025 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 145.096993 +0:The maximum resident set size (KB) = 806148 + +Test 025 rap_control_debug PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_debug +Checking test 026 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 141.645676 +0:The maximum resident set size (KB) = 801456 +Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_control_debug -Checking test 024 rap_control_debug results .... + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_diag_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_diag_debug +Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.608072 -0:The maximum resident set size (KB) = 806008 +0:The total amount of wall time = 152.825426 +0:The maximum resident set size (KB) = 888180 -Test 024 rap_control_debug PASS +Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_debug -Checking test 025 hrrr_control_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.435969 -0:The maximum resident set size (KB) = 802016 +0:The total amount of wall time = 234.307215 +0:The maximum resident set size (KB) = 804364 -Test 025 hrrr_control_debug PASS +Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_diag_debug -Checking test 026 rap_diag_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_progcld_thompson_debug +Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.272170 -0:The maximum resident set size (KB) = 888736 +0:The total amount of wall time = 146.210042 +0:The maximum resident set size (KB) = 806260 -Test 026 rap_diag_debug PASS +Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_v1beta_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_v1beta_debug +Checking test 030 rrfs_v1beta_debug 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.253151 -0:The maximum resident set size (KB) = 804840 +0:The total amount of wall time = 144.142119 +0:The maximum resident set size (KB) = 801232 -Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_progcld_thompson_debug -Checking test 028 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_ras_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_ras_debug +Checking test 031 control_ras_debug 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.841816 -0:The maximum resident set size (KB) = 806208 +0:The total amount of wall time = 81.068143 +0:The maximum resident set size (KB) = 446468 -Test 028 rap_progcld_thompson_debug PASS +Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_v1beta_debug -Checking test 029 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_stochy_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.218497 -0:The maximum resident set size (KB) = 801692 +0:The total amount of wall time = 88.332565 +0:The maximum resident set size (KB) = 438900 -Test 029 rrfs_v1beta_debug PASS +Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_ras_debug -Checking test 030 control_ras_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_debug_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.168191 -0:The maximum resident set size (KB) = 446216 +0:The total amount of wall time = 92.050089 +0:The maximum resident set size (KB) = 1221728 -Test 030 control_ras_debug PASS +Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_stochy_debug -Checking test 031 control_stochy_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.087302 -0:The maximum resident set size (KB) = 439204 +0:The total amount of wall time = 436.499694 +0:The maximum resident set size (KB) = 645216 -Test 031 control_stochy_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_debug_p8 -Checking test 032 control_debug_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.808522 -0:The maximum resident set size (KB) = 1221176 +0:The total amount of wall time = 258.536899 +0:The maximum resident set size (KB) = 669460 -Test 032 control_debug_p8 PASS +Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rrfs_conus13km_hrrr_warm_debug +Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 438.373803 -0:The maximum resident set size (KB) = 641788 +0:The total amount of wall time = 395.841106 +0:The maximum resident set size (KB) = 623296 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_flake_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_flake_debug +Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.457359 -0:The maximum resident set size (KB) = 665988 +0:The total amount of wall time = 145.199403 +0:The maximum resident set size (KB) = 806112 -Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rrfs_conus13km_hrrr_warm_debug -Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_clm_lake_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_clm_lake_debug +Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 395.544245 -0:The maximum resident set size (KB) = 620512 +0:The total amount of wall time = 165.405450 +0:The maximum resident set size (KB) = 807740 -Test 035 rrfs_conus13km_hrrr_warm_debug PASS +Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/control_wam_debug -Checking test 036 control_wam_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/control_wam_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/control_wam_debug +Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 142.150747 -0:The maximum resident set size (KB) = 183400 +0:The total amount of wall time = 140.771619 +0:The maximum resident set size (KB) = 182300 -Test 036 control_wam_debug PASS +Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_control_dyn32_phy32 -Checking test 037 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_control_dyn32_phy32 +Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1106,15 +1120,15 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.770588 -0:The maximum resident set size (KB) = 673684 +0:The total amount of wall time = 705.296796 +0:The maximum resident set size (KB) = 672508 -Test 037 rap_control_dyn32_phy32 PASS +Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_dyn32_phy32 -Checking test 038 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_dyn32_phy32 +Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1127,48 +1141,48 @@ Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 356.387727 -0:The maximum resident set size (KB) = 671368 - -Test 038 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_2threads_dyn32_phy32 -Checking test 039 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 353.496190 +0:The maximum resident set size (KB) = 671104 + +Test 041 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_2threads_dyn32_phy32 +Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,15 +1228,15 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 643.528535 -0:The maximum resident set size (KB) = 719720 +0:The total amount of wall time = 643.906768 +0:The maximum resident set size (KB) = 720188 -Test 039 rap_2threads_dyn32_phy32 PASS +Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_2threads_dyn32_phy32 -Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_2threads_dyn32_phy32 +Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1235,48 +1249,48 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 321.629976 -0:The maximum resident set size (KB) = 716848 - -Test 040 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_decomp_dyn32_phy32 -Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 406.993567 +0:The maximum resident set size (KB) = 711644 + +Test 043 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_decomp_dyn32_phy32 +Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1289,48 +1303,48 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 355.326228 -0:The maximum resident set size (KB) = 670064 - -Test 041 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_restart_dyn32_phy32 -Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 352.634181 +0:The maximum resident set size (KB) = 669996 + +Test 044 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_restart_dyn32_phy32 +Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1368,61 +1382,29 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 521.754780 -0:The maximum resident set size (KB) = 511752 +0:The total amount of wall time = 521.844407 +0:The maximum resident set size (KB) = 511584 -Test 042 rap_restart_dyn32_phy32 PASS +Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_restart_dyn32_phy32 -Checking test 043 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_restart_dyn32_phy32 +Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 180.198555 -0:The maximum resident set size (KB) = 507476 +0:The total amount of wall time = 178.723407 +0:The maximum resident set size (KB) = 506056 -Test 043 hrrr_control_restart_dyn32_phy32 PASS +Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_control_dyn64_phy32 -Checking test 044 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_control_dyn64_phy32 +Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1468,57 +1450,57 @@ Checking test 044 rap_control_dyn64_phy32 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 = 414.348974 -0:The maximum resident set size (KB) = 694116 +0:The total amount of wall time = 417.135046 +0:The maximum resident set size (KB) = 693120 -Test 044 rap_control_dyn64_phy32 PASS +Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_control_debug_dyn32_phy32 -Checking test 045 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_control_debug_dyn32_phy32 +Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.762451 -0:The maximum resident set size (KB) = 688348 +0:The total amount of wall time = 142.505633 +0:The maximum resident set size (KB) = 686936 -Test 045 rap_control_debug_dyn32_phy32 PASS +Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/hrrr_control_debug_dyn32_phy32 -Checking test 046 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 140.220135 -0:The maximum resident set size (KB) = 684468 +0:The total amount of wall time = 139.565295 +0:The maximum resident set size (KB) = 684104 -Test 046 hrrr_control_debug_dyn32_phy32 PASS +Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/rap_control_dyn64_phy32_debug -Checking test 047 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/rap_control_dyn64_phy32_debug +Checking test 050 rap_control_dyn64_phy32_debug 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.046466 -0:The maximum resident set size (KB) = 707628 +0:The total amount of wall time = 148.497909 +0:The maximum resident set size (KB) = 707060 -Test 047 rap_control_dyn64_phy32_debug PASS +Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1582,15 +1564,15 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 502.998850 -0:The maximum resident set size (KB) = 3160608 +0:The total amount of wall time = 504.766468 +0:The maximum resident set size (KB) = 3160528 -Test 048 cpld_control_p8 PASS +Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/cpld_control_nowave_noaero_p8 -Checking test 049 cpld_control_nowave_noaero_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/cpld_control_nowave_noaero_p8 +Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1651,15 +1633,15 @@ Checking test 049 cpld_control_nowave_noaero_p8 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 = 248.923050 -0:The maximum resident set size (KB) = 1240276 +0:The total amount of wall time = 249.509057 +0:The maximum resident set size (KB) = 1240952 -Test 049 cpld_control_nowave_noaero_p8 PASS +Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/cpld_debug_p8 -Checking test 050 cpld_debug_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/cpld_debug_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/cpld_debug_p8 +Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1711,25 +1693,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 201.267139 -0:The maximum resident set size (KB) = 3173380 +0:The total amount of wall time = 200.067568 +0:The maximum resident set size (KB) = 3174284 -Test 050 cpld_debug_p8 PASS +Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_8682/datm_cdeps_control_cfsr -Checking test 051 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_45861/datm_cdeps_control_cfsr +Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 179.665112 -0:The maximum resident set size (KB) = 671816 +0:The total amount of wall time = 178.863498 +0:The maximum resident set size (KB) = 671500 -Test 051 datm_cdeps_control_cfsr PASS +Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon May 8 17:28:57 MDT 2023 -Elapsed time: 00h:39m:48s. Have a nice day! +Thu Jun 15 10:20:48 MDT 2023 +Elapsed time: 00h:36m:39s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 490d97d6e1..a3760773e5 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,43 +1,43 @@ -Mon May 8 17:51:01 MDT 2023 +Wed Jun 14 14:48:22 MDT 2023 Start Regression test -Compile 001 elapsed time 1538 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1428 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1383 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 465 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 416 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1103 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1111 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1843 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1095 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 983 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 011 elapsed time 949 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 422 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1563 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1621 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1467 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 476 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 431 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1176 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1195 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1911 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1012 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 902 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 457 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 865 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 295 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1160 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 021 elapsed time 369 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1583 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1139 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 024 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 225 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 451 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 973 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1021 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1041 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 902 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 906 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 324 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1054 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_p8_mixedmode +Compile 016 elapsed time 938 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 929 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1264 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 021 elapsed time 373 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1695 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1222 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 024 elapsed time 443 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 223 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 443 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1031 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1094 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1084 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 974 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 962 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 338 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1127 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.761712 -0:The maximum resident set size (KB) = 2698564 +0:The total amount of wall time = 328.138679 +0:The maximum resident set size (KB) = 2698800 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_gfsv17 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.630407 -0:The maximum resident set size (KB) = 1437392 +0:The total amount of wall time = 278.835308 +0:The maximum resident set size (KB) = 1437684 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.201096 -0:The maximum resident set size (KB) = 2715428 +0:The total amount of wall time = 323.990575 +0:The maximum resident set size (KB) = 2715300 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_restart_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 190.116283 -0:The maximum resident set size (KB) = 2576356 +0:The total amount of wall time = 188.670908 +0:The maximum resident set size (KB) = 2576848 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_qr_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 331.392838 -0:The maximum resident set size (KB) = 2719428 +0:The total amount of wall time = 328.356147 +0:The maximum resident set size (KB) = 2719804 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_restart_qr_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.878939 -0:The maximum resident set size (KB) = 2593328 +0:The total amount of wall time = 201.345850 +0:The maximum resident set size (KB) = 2593176 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_2threads_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 255.142218 -0:The maximum resident set size (KB) = 3177792 +0:The total amount of wall time = 257.579457 +0:The maximum resident set size (KB) = 3177884 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_decomp_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 318.984007 -0:The maximum resident set size (KB) = 2720216 +0:The total amount of wall time = 326.722255 +0:The maximum resident set size (KB) = 2722420 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_mpi_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 279.781736 -0:The maximum resident set size (KB) = 2680320 +0:The total amount of wall time = 278.411105 +0:The maximum resident set size (KB) = 2681568 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 327.058266 -0:The maximum resident set size (KB) = 2715424 +0:The total amount of wall time = 316.752812 +0:The maximum resident set size (KB) = 2715900 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_c192_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 642.828754 -0:The maximum resident set size (KB) = 3351868 +0:The total amount of wall time = 821.216953 +0:The maximum resident set size (KB) = 3350432 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_restart_c192_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 403.460362 -0:The maximum resident set size (KB) = 3276504 +0:The total amount of wall time = 392.641350 +0:The maximum resident set size (KB) = 3276516 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_noaero_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.932618 -0:The maximum resident set size (KB) = 1435684 +0:The total amount of wall time = 294.657201 +0:The maximum resident set size (KB) = 1435724 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 194.835745 -0:The maximum resident set size (KB) = 1453156 +0:The total amount of wall time = 199.217420 +0:The maximum resident set size (KB) = 1453376 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_debug_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_debug_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 353.228420 -0:The maximum resident set size (KB) = 2778864 +0:The total amount of wall time = 352.642363 +0:The maximum resident set size (KB) = 2780268 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1068,14 +1068,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.785798 -0:The maximum resident set size (KB) = 1454068 +0:The total amount of wall time = 301.474620 +0:The maximum resident set size (KB) = 1454060 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1137,14 @@ Checking test 017 cpld_control_noaero_p8_agrid 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 = 270.716147 -0:The maximum resident set size (KB) = 1457184 +0:The total amount of wall time = 275.789453 +0:The maximum resident set size (KB) = 1457236 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_control_c48 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c48 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 018 cpld_control_c48 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 = 611.361668 -0:The maximum resident set size (KB) = 2587032 +0:The total amount of wall time = 605.398168 +0:The maximum resident set size (KB) = 2586696 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_warmstart_c48 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1251,14 +1251,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 166.211130 -0:The maximum resident set size (KB) = 2601488 +0:The total amount of wall time = 163.551020 +0:The maximum resident set size (KB) = 2602700 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/cpld_restart_c48 +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1308,15 +1308,33 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 87.388132 -0:The maximum resident set size (KB) = 2018968 +0:The total amount of wall time = 85.596476 +0:The maximum resident set size (KB) = 2019888 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_flake +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_flake +Checking test 021 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 219.278316 +0:The maximum resident set size (KB) = 501352 + +Test 021 control_flake PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1342,29 +1360,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.435431 -0:The maximum resident set size (KB) = 454268 +0:The total amount of wall time = 142.360660 +0:The maximum resident set size (KB) = 454512 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 141.156418 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 143.404804 +0:The maximum resident set size (KB) = 454652 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_latlon -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_latlon +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1374,16 +1392,16 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.782222 -0:The maximum resident set size (KB) = 454340 +0:The total amount of wall time = 147.359764 +0:The maximum resident set size (KB) = 454624 -Test 023 control_latlon PASS +Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1392,15 +1410,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.227131 -0:The maximum resident set size (KB) = 454276 +0:The total amount of wall time = 148.567347 +0:The maximum resident set size (KB) = 454576 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_c48 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1438,15 +1456,15 @@ Checking test 025 control_c48 results .... Comparing 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.664646 -0:The maximum resident set size (KB) = 633544 +0:The total amount of wall time = 443.761982 +0:The maximum resident set size (KB) = 634320 -Test 025 control_c48 PASS +Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_c192 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_c192 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1456,15 +1474,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.541820 -0:The maximum resident set size (KB) = 560416 +0:The total amount of wall time = 596.475809 +0:The maximum resident set size (KB) = 560284 -Test 026 control_c192 PASS +Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_c384 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_c384 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1474,15 +1492,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 591.590011 -0:The maximum resident set size (KB) = 898988 +0:The total amount of wall time = 587.438069 +0:The maximum resident set size (KB) = 903180 -Test 027 control_c384 PASS +Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_c384gdas -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_c384gdas +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1524,15 +1542,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 521.341321 -0:The maximum resident set size (KB) = 1027108 +0:The total amount of wall time = 518.599750 +0:The maximum resident set size (KB) = 1028780 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_stochy +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1542,29 +1560,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 99.236466 -0:The maximum resident set size (KB) = 459144 +0:The total amount of wall time = 98.077076 +0:The maximum resident set size (KB) = 459376 -Test 029 control_stochy PASS +Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_stochy +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.583652 -0:The maximum resident set size (KB) = 226500 +0:The total amount of wall time = 53.096838 +0:The maximum resident set size (KB) = 227892 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_lndp -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_lndp +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1592,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.265186 -0:The maximum resident set size (KB) = 458204 +0:The total amount of wall time = 90.505263 +0:The maximum resident set size (KB) = 459132 -Test 031 control_lndp PASS +Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_iovr4 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_iovr4 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,15 +1614,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.494053 -0:The maximum resident set size (KB) = 454192 +0:The total amount of wall time = 149.823610 +0:The maximum resident set size (KB) = 454652 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_iovr5 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_iovr5 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1618,15 +1636,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.508339 -0:The maximum resident set size (KB) = 454376 +0:The total amount of wall time = 147.235491 +0:The maximum resident set size (KB) = 454540 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1672,15 +1690,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.235700 -0:The maximum resident set size (KB) = 1423928 +0:The total amount of wall time = 183.155910 +0:The maximum resident set size (KB) = 1423956 -Test 034 control_p8 PASS +Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1718,15 +1736,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.251997 -0:The maximum resident set size (KB) = 582920 +0:The total amount of wall time = 96.886055 +0:The maximum resident set size (KB) = 582104 -Test 035 control_restart_p8 PASS +Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_qr_p8 -Checking test 036 control_qr_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_qr_p8 +Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1772,15 +1790,15 @@ Checking test 036 control_qr_p8 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 = 186.836676 -0:The maximum resident set size (KB) = 1427248 +0:The total amount of wall time = 181.107801 +0:The maximum resident set size (KB) = 1427656 -Test 036 control_qr_p8 PASS +Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_restart_qr_p8 +Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1818,15 +1836,15 @@ Checking test 037 control_restart_qr_p8 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 = 99.081209 -0:The maximum resident set size (KB) = 596976 +0:The total amount of wall time = 98.743896 +0:The maximum resident set size (KB) = 597232 -Test 037 control_restart_qr_p8 PASS +Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_decomp_p8 +Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1868,15 +1886,15 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.288091 -0:The maximum resident set size (KB) = 1418384 +0:The total amount of wall time = 187.555356 +0:The maximum resident set size (KB) = 1417744 -Test 038 control_decomp_p8 PASS +Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_2threads_p8 +Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1918,15 +1936,15 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.824241 -0:The maximum resident set size (KB) = 1509064 +0:The total amount of wall time = 171.050835 +0:The maximum resident set size (KB) = 1509272 -Test 039 control_2threads_p8 PASS +Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8_lndp -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_p8_lndp -Checking test 040 control_p8_lndp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8_lndp +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1944,15 +1962,15 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 336.560241 -0:The maximum resident set size (KB) = 1424928 +0:The total amount of wall time = 337.343329 +0:The maximum resident set size (KB) = 1424232 -Test 040 control_p8_lndp PASS +Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8_rrtmgp +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_p8_rrtmgp +Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1998,15 +2016,15 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 248.236417 -0:The maximum resident set size (KB) = 1480268 +0:The total amount of wall time = 247.210155 +0:The maximum resident set size (KB) = 1480560 -Test 041 control_p8_rrtmgp PASS +Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8_mynn -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_p8_mynn -Checking test 042 control_p8_mynn results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8_mynn +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_p8_mynn +Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2052,15 +2070,15 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.594359 -0:The maximum resident set size (KB) = 1427980 +0:The total amount of wall time = 181.505267 +0:The maximum resident set size (KB) = 1428436 -Test 042 control_p8_mynn PASS +Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/merra2_thompson -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/merra2_thompson -Checking test 043 merra2_thompson results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/merra2_thompson +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/merra2_thompson +Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2106,15 +2124,15 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.072085 -0:The maximum resident set size (KB) = 1429684 +0:The total amount of wall time = 207.941242 +0:The maximum resident set size (KB) = 1429924 -Test 043 merra2_thompson PASS +Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_control -Checking test 044 regional_control results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_control +Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2124,29 +2142,29 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 349.094932 -0:The maximum resident set size (KB) = 604804 +0:The total amount of wall time = 339.575841 +0:The maximum resident set size (KB) = 605068 -Test 044 regional_control PASS +Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_restart -Checking test 045 regional_restart results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_restart +Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.865104 -0:The maximum resident set size (KB) = 594148 +0:The total amount of wall time = 177.406432 +0:The maximum resident set size (KB) = 594392 -Test 045 regional_restart PASS +Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_control_qr -Checking test 046 regional_control_qr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_control_qr +Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2156,29 +2174,29 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 348.563018 -0:The maximum resident set size (KB) = 604792 +0:The total amount of wall time = 350.980612 +0:The maximum resident set size (KB) = 605084 -Test 046 regional_control_qr PASS +Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_restart_qr -Checking test 047 regional_restart_qr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_restart_qr +Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 179.626317 -0:The maximum resident set size (KB) = 594208 +0:The total amount of wall time = 176.131872 +0:The maximum resident set size (KB) = 594324 -Test 047 regional_restart_qr PASS +Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_decomp -Checking test 048 regional_decomp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2188,15 +2206,15 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 365.957023 -0:The maximum resident set size (KB) = 598752 +0:The total amount of wall time = 368.646774 +0:The maximum resident set size (KB) = 598900 -Test 048 regional_decomp PASS +Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_2threads -Checking test 049 regional_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2206,44 +2224,44 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 213.690897 -0:The maximum resident set size (KB) = 611560 +0:The total amount of wall time = 218.663998 +0:The maximum resident set size (KB) = 611776 -Test 049 regional_2threads PASS +Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_noquilt -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_noquilt -Checking test 050 regional_noquilt results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_noquilt +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_noquilt +Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 354.550930 -0:The maximum resident set size (KB) = 599096 +0:The total amount of wall time = 364.920510 +0:The maximum resident set size (KB) = 599488 -Test 050 regional_noquilt PASS +Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_netcdf_parallel +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 338.868886 -0:The maximum resident set size (KB) = 596732 +0:The total amount of wall time = 344.010753 +0:The maximum resident set size (KB) = 596984 -Test 051 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2253,15 +2271,15 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 331.393985 -0:The maximum resident set size (KB) = 604812 +0:The total amount of wall time = 338.950023 +0:The maximum resident set size (KB) = 605124 -Test 052 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/fv3_regional_wofs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_wofs -Checking test 053 regional_wofs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_wofs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2271,15 +2289,15 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 428.757545 -0:The maximum resident set size (KB) = 275784 +0:The total amount of wall time = 434.122739 +0:The maximum resident set size (KB) = 276104 -Test 053 regional_wofs PASS +Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_control -Checking test 054 rap_control results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2325,15 +2343,15 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 486.145783 -0:The maximum resident set size (KB) = 823412 +0:The total amount of wall time = 475.707276 +0:The maximum resident set size (KB) = 823756 -Test 054 rap_control PASS +Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_spp_sppt_shum_skeb +Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2343,15 +2361,15 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 266.851190 -0:The maximum resident set size (KB) = 952264 +0:The total amount of wall time = 256.990184 +0:The maximum resident set size (KB) = 953420 -Test 055 regional_spp_sppt_shum_skeb PASS +Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_decomp -Checking test 056 rap_decomp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_decomp +Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2397,15 +2415,15 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.172898 -0:The maximum resident set size (KB) = 822440 +0:The total amount of wall time = 510.106808 +0:The maximum resident set size (KB) = 822612 -Test 056 rap_decomp PASS +Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_2threads -Checking test 057 rap_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_2threads +Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2451,15 +2469,15 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.992184 -0:The maximum resident set size (KB) = 893700 +0:The total amount of wall time = 464.225474 +0:The maximum resident set size (KB) = 893764 -Test 057 rap_2threads PASS +Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_restart -Checking test 058 rap_restart results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_restart +Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2497,15 +2515,15 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.493868 -0:The maximum resident set size (KB) = 571484 +0:The total amount of wall time = 246.588146 +0:The maximum resident set size (KB) = 571708 -Test 058 rap_restart PASS +Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_sfcdiff +Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2551,15 +2569,15 @@ Checking test 059 rap_sfcdiff results .... Comparing 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.930373 -0:The maximum resident set size (KB) = 823356 +0:The total amount of wall time = 481.844079 +0:The maximum resident set size (KB) = 823676 -Test 059 rap_sfcdiff PASS +Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_sfcdiff_decomp +Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2605,15 +2623,15 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.935867 -0:The maximum resident set size (KB) = 822128 +0:The total amount of wall time = 509.071406 +0:The maximum resident set size (KB) = 822748 -Test 060 rap_sfcdiff_decomp PASS +Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_sfcdiff_restart +Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2651,15 +2669,15 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 358.314857 -0:The maximum resident set size (KB) = 570788 +0:The total amount of wall time = 357.733868 +0:The maximum resident set size (KB) = 571764 -Test 061 rap_sfcdiff_restart PASS +Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control -Checking test 062 hrrr_control results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control +Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2672,48 +2690,48 @@ Checking test 062 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 463.800057 -0:The maximum resident set size (KB) = 820944 - -Test 062 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 443.380793 +0:The maximum resident set size (KB) = 821016 + +Test 063 hrrr_control PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_decomp +Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2726,48 +2744,48 @@ Checking test 063 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 483.966973 -0:The maximum resident set size (KB) = 820724 - -Test 063 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_2threads -Checking test 064 hrrr_control_2threads results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 461.762558 +0:The maximum resident set size (KB) = 820556 + +Test 064 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_2threads +Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2780,94 +2798,62 @@ Checking test 064 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 443.196610 -0:The maximum resident set size (KB) = 888472 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_restart -Checking test 065 hrrr_control_restart results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 505.410088 +0:The maximum resident set size (KB) = 895228 + +Test 065 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_restart +Checking test 066 hrrr_control_restart 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 -0:The total amount of wall time = 343.664338 -0:The maximum resident set size (KB) = 566300 +0:The total amount of wall time = 331.799744 +0:The maximum resident set size (KB) = 567592 -Test 065 hrrr_control_restart PASS +Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_v1beta -Checking test 066 rrfs_v1beta results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1beta +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_v1beta +Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2913,15 +2899,15 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.129592 -0:The maximum resident set size (KB) = 819592 +0:The total amount of wall time = 479.366139 +0:The maximum resident set size (KB) = 819744 -Test 066 rrfs_v1beta PASS +Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_v1nssl -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_v1nssl -Checking test 067 rrfs_v1nssl results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_v1nssl +Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2935,15 +2921,15 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 583.423619 -0:The maximum resident set size (KB) = 508792 +0:The total amount of wall time = 584.291487 +0:The maximum resident set size (KB) = 508644 -Test 067 rrfs_v1nssl PASS +Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_v1nssl_nohailnoccn +Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2957,15 +2943,15 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 569.564457 -0:The maximum resident set size (KB) = 502668 +0:The total amount of wall time = 568.920853 +0:The maximum resident set size (KB) = 502972 -Test 068 rrfs_v1nssl_nohailnoccn PASS Tries: 2 +Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_smoke_conus13km_hrrr_warm +Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2973,15 +2959,15 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 155.903655 -0:The maximum resident set size (KB) = 675276 +0:The total amount of wall time = 154.358888 +0:The maximum resident set size (KB) = 670976 -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2989,15 +2975,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 96.603004 -0:The maximum resident set size (KB) = 694000 +0:The total amount of wall time = 95.765540 +0:The maximum resident set size (KB) = 692928 -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_conus13km_hrrr_warm +Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3005,15 +2991,15 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 138.567567 -0:The maximum resident set size (KB) = 654088 +0:The total amount of wall time = 136.760164 +0:The maximum resident set size (KB) = 667236 -Test 071 rrfs_conus13km_hrrr_warm PASS +Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_smoke_conus13km_radar_tten_warm +Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3021,27 +3007,27 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 154.735924 -0:The maximum resident set size (KB) = 677956 +0:The total amount of wall time = 154.962480 +0:The maximum resident set size (KB) = 677540 -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.824837 -0:The maximum resident set size (KB) = 632224 +0:The total amount of wall time = 71.978246 +0:The maximum resident set size (KB) = 640136 -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_csawmg -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_csawmg -Checking test 074 control_csawmg results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_csawmg +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_csawmg +Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3051,15 +3037,15 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.356609 -0:The maximum resident set size (KB) = 527708 +0:The total amount of wall time = 398.532427 +0:The maximum resident set size (KB) = 528052 -Test 074 control_csawmg PASS +Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_csawmgt -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_csawmgt -Checking test 075 control_csawmgt results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_csawmgt +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_csawmgt +Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3069,15 +3055,15 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.643966 -0:The maximum resident set size (KB) = 528300 +0:The total amount of wall time = 379.538486 +0:The maximum resident set size (KB) = 528608 -Test 075 control_csawmgt PASS +Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_ras -Checking test 076 control_ras results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_ras +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_ras +Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3087,27 +3073,27 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.251503 -0:The maximum resident set size (KB) = 491244 +0:The total amount of wall time = 206.316432 +0:The maximum resident set size (KB) = 491204 -Test 076 control_ras PASS +Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_wam -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_wam -Checking test 077 control_wam results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_wam +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_wam +Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.981028 -0:The maximum resident set size (KB) = 206232 +0:The total amount of wall time = 130.378546 +0:The maximum resident set size (KB) = 206852 -Test 077 control_wam PASS +Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8_faster -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_p8_faster -Checking test 078 control_p8_faster results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8_faster +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_p8_faster +Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3153,15 +3139,15 @@ Checking test 078 control_p8_faster results .... Comparing 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.034422 -0:The maximum resident set size (KB) = 1423692 +0:The total amount of wall time = 174.395960 +0:The maximum resident set size (KB) = 1423804 -Test 078 control_p8_faster PASS +Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_control_faster -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_control_faster -Checking test 079 regional_control_faster results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_control_faster +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_control_faster +Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3171,57 +3157,57 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 327.399605 -0:The maximum resident set size (KB) = 604584 +0:The total amount of wall time = 328.047070 +0:The maximum resident set size (KB) = 604832 -Test 079 regional_control_faster PASS +Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 874.701513 -0:The maximum resident set size (KB) = 704752 +0:The total amount of wall time = 877.495249 +0:The maximum resident set size (KB) = 704272 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 497.968236 -0:The maximum resident set size (KB) = 724576 +0:The total amount of wall time = 501.320824 +0:The maximum resident set size (KB) = 723020 -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_conus13km_hrrr_warm_debug -Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_conus13km_hrrr_warm_debug +Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 780.646706 -0:The maximum resident set size (KB) = 683360 +0:The total amount of wall time = 782.442073 +0:The maximum resident set size (KB) = 697588 -Test 082 rrfs_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_CubedSphereGrid_debug -Checking test 083 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_CubedSphereGrid_debug +Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3247,335 +3233,349 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.419704 -0:The maximum resident set size (KB) = 617480 +0:The total amount of wall time = 155.314224 +0:The maximum resident set size (KB) = 618000 -Test 083 control_CubedSphereGrid_debug PASS +Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_wrtGauss_netcdf_parallel_debug -Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_wrtGauss_netcdf_parallel_debug +Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.192725 -0:The maximum resident set size (KB) = 615748 +0:The total amount of wall time = 156.240549 +0:The maximum resident set size (KB) = 615416 -Test 084 control_wrtGauss_netcdf_parallel_debug PASS +Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_stochy_debug -Checking test 085 control_stochy_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_stochy_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_stochy_debug +Checking test 086 control_stochy_debug 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.616780 -0:The maximum resident set size (KB) = 621292 +0:The total amount of wall time = 175.098524 +0:The maximum resident set size (KB) = 621124 -Test 085 control_stochy_debug PASS +Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_lndp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_lndp_debug -Checking test 086 control_lndp_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_lndp_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_lndp_debug +Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.933711 -0:The maximum resident set size (KB) = 620088 +0:The total amount of wall time = 157.399745 +0:The maximum resident set size (KB) = 620332 -Test 086 control_lndp_debug PASS +Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_csawmg_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_csawmg_debug -Checking test 087 control_csawmg_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_csawmg_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_csawmg_debug +Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 250.700870 -0:The maximum resident set size (KB) = 666464 +0:The total amount of wall time = 249.258350 +0:The maximum resident set size (KB) = 666820 -Test 087 control_csawmg_debug PASS +Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_csawmgt_debug -Checking test 088 control_csawmgt_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_csawmgt_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_csawmgt_debug +Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.262527 -0:The maximum resident set size (KB) = 667444 +0:The total amount of wall time = 244.910114 +0:The maximum resident set size (KB) = 667800 -Test 088 control_csawmgt_debug PASS +Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_ras_debug -Checking test 089 control_ras_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_ras_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_ras_debug +Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.686779 -0:The maximum resident set size (KB) = 630348 +0:The total amount of wall time = 160.112281 +0:The maximum resident set size (KB) = 630116 -Test 089 control_ras_debug PASS +Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_diag_debug -Checking test 090 control_diag_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_diag_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_diag_debug +Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.932733 -0:The maximum resident set size (KB) = 674920 +0:The total amount of wall time = 160.004596 +0:The maximum resident set size (KB) = 675352 -Test 090 control_diag_debug PASS +Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_debug_p8 -Checking test 091 control_debug_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_debug_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_debug_p8 +Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.117459 -0:The maximum resident set size (KB) = 1442472 +0:The total amount of wall time = 176.370595 +0:The maximum resident set size (KB) = 1443432 -Test 091 control_debug_p8 PASS +Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_debug -Checking test 092 regional_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_debug +Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1035.226783 -0:The maximum resident set size (KB) = 625924 +0:The total amount of wall time = 1034.071838 +0:The maximum resident set size (KB) = 626468 -Test 092 regional_debug PASS +Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_control_debug -Checking test 093 rap_control_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_control_debug +Checking test 094 rap_control_debug 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.139407 -0:The maximum resident set size (KB) = 986760 +0:The total amount of wall time = 287.961081 +0:The maximum resident set size (KB) = 987052 -Test 093 rap_control_debug PASS +Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_debug -Checking test 094 hrrr_control_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_debug +Checking test 095 hrrr_control_debug 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.867814 -0:The maximum resident set size (KB) = 984168 +0:The total amount of wall time = 281.302008 +0:The maximum resident set size (KB) = 983128 -Test 094 hrrr_control_debug PASS +Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_unified_drag_suite_debug -Checking test 095 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_unified_drag_suite_debug +Checking test 096 rap_unified_drag_suite_debug 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.144496 -0:The maximum resident set size (KB) = 986724 +0:The total amount of wall time = 286.753130 +0:The maximum resident set size (KB) = 987160 -Test 095 rap_unified_drag_suite_debug PASS +Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_diag_debug -Checking test 096 rap_diag_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_diag_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_diag_debug +Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.385023 -0:The maximum resident set size (KB) = 1069968 +0:The total amount of wall time = 299.272500 +0:The maximum resident set size (KB) = 1070128 -Test 096 rap_diag_debug PASS +Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_cires_ugwp_debug -Checking test 097 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_cires_ugwp_debug +Checking test 098 rap_cires_ugwp_debug 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.361688 -0:The maximum resident set size (KB) = 985820 +0:The total amount of wall time = 296.374557 +0:The maximum resident set size (KB) = 986308 -Test 097 rap_cires_ugwp_debug PASS +Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_unified_ugwp_debug -Checking test 098 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_unified_ugwp_debug +Checking test 099 rap_unified_ugwp_debug 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.935845 -0:The maximum resident set size (KB) = 986880 +0:The total amount of wall time = 296.072870 +0:The maximum resident set size (KB) = 987188 -Test 098 rap_unified_ugwp_debug PASS +Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_lndp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_lndp_debug -Checking test 099 rap_lndp_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_lndp_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_lndp_debug +Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.252602 -0:The maximum resident set size (KB) = 987576 +0:The total amount of wall time = 290.230457 +0:The maximum resident set size (KB) = 987740 -Test 099 rap_lndp_debug PASS +Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_flake_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_flake_debug -Checking test 100 rap_flake_debug 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.925066 -0:The maximum resident set size (KB) = 986852 - -Test 100 rap_flake_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_progcld_thompson_debug +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug 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.624005 -0:The maximum resident set size (KB) = 986604 +0:The total amount of wall time = 286.780046 +0:The maximum resident set size (KB) = 987112 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_noah_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_noah_debug +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_noah_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_noah_debug Checking test 102 rap_noah_debug 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.761174 -0:The maximum resident set size (KB) = 984484 +0:The total amount of wall time = 281.238801 +0:The maximum resident set size (KB) = 985100 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_sfcdiff_debug +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug 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.145795 -0:The maximum resident set size (KB) = 986456 +0:The total amount of wall time = 287.223849 +0:The maximum resident set size (KB) = 986912 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 471.996582 -0:The maximum resident set size (KB) = 985344 +0:The total amount of wall time = 472.034241 +0:The maximum resident set size (KB) = 985856 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rrfs_v1beta_debug +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug 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.218538 -0:The maximum resident set size (KB) = 983360 +0:The total amount of wall time = 284.097836 +0:The maximum resident set size (KB) = 982940 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_wam_debug -Checking test 106 control_wam_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_clm_lake_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_clm_lake_debug +Checking test 106 rap_clm_lake_debug 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.359295 +0:The maximum resident set size (KB) = 989868 + +Test 106 rap_clm_lake_debug PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_flake_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_flake_debug +Checking test 107 rap_flake_debug 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.888389 +0:The maximum resident set size (KB) = 987340 + +Test 107 rap_flake_debug PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_wam_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_wam_debug +Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.853088 -0:The maximum resident set size (KB) = 235428 +0:The total amount of wall time = 290.207280 +0:The maximum resident set size (KB) = 235660 -Test 106 control_wam_debug PASS +Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3585,15 +3585,15 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 246.781846 -0:The maximum resident set size (KB) = 850996 +0:The total amount of wall time = 245.692174 +0:The maximum resident set size (KB) = 855276 -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_control_dyn32_phy32 -Checking test 108 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3639,15 +3639,15 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 399.494615 -0:The maximum resident set size (KB) = 707764 +0:The total amount of wall time = 401.776147 +0:The maximum resident set size (KB) = 708116 -Test 108 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_dyn32_phy32 -Checking test 109 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3660,48 +3660,48 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 209.913756 -0:The maximum resident set size (KB) = 706456 - -Test 109 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_2threads_dyn32_phy32 -Checking test 110 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 197.421814 +0:The maximum resident set size (KB) = 707772 + +Test 111 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3747,15 +3747,15 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.911847 -0:The maximum resident set size (KB) = 759504 +0:The total amount of wall time = 382.414455 +0:The maximum resident set size (KB) = 759796 -Test 110 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_2threads_dyn32_phy32 -Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3768,48 +3768,48 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 199.282978 -0:The maximum resident set size (KB) = 756484 - -Test 111 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_decomp_dyn32_phy32 -Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 279.145412 +0:The maximum resident set size (KB) = 753356 + +Test 113 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3822,48 +3822,48 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 220.728658 -0:The maximum resident set size (KB) = 704444 - -Test 112 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_restart_dyn32_phy32 -Checking test 113 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 211.845047 +0:The maximum resident set size (KB) = 706052 + +Test 114 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3901,61 +3901,29 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 296.786500 -0:The maximum resident set size (KB) = 544784 +0:The total amount of wall time = 296.180778 +0:The maximum resident set size (KB) = 545344 -Test 113 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_restart_dyn32_phy32 -Checking test 114 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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 = 107.943173 -0:The maximum resident set size (KB) = 537580 +0:The total amount of wall time = 104.076619 +0:The maximum resident set size (KB) = 536892 -Test 114 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_control_dyn64_phy32 -Checking test 115 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4001,82 +3969,82 @@ Checking test 115 rap_control_dyn64_phy32 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 = 272.324695 -0:The maximum resident set size (KB) = 730432 +0:The total amount of wall time = 271.831214 +0:The maximum resident set size (KB) = 730536 -Test 115 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_control_debug_dyn32_phy32 -Checking test 116 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 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.131366 -0:The maximum resident set size (KB) = 872892 +0:The total amount of wall time = 282.586743 +0:The maximum resident set size (KB) = 872280 -Test 116 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hrrr_control_debug_dyn32_phy32 -Checking test 117 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 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.870376 -0:The maximum resident set size (KB) = 871096 +0:The total amount of wall time = 276.492953 +0:The maximum resident set size (KB) = 870940 -Test 117 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/rap_control_dyn64_phy32_debug -Checking test 118 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug 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.637841 -0:The maximum resident set size (KB) = 890068 +0:The total amount of wall time = 285.817576 +0:The maximum resident set size (KB) = 892992 -Test 118 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_atm -Checking test 119 hafs_regional_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 259.471288 -0:The maximum resident set size (KB) = 742692 +0:The total amount of wall time = 260.893770 +0:The maximum resident set size (KB) = 743028 -Test 119 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_atm_thompson_gfdlsf -Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 331.041285 -0:The maximum resident set size (KB) = 1099808 +0:The total amount of wall time = 289.469079 +0:The maximum resident set size (KB) = 1098708 -Test 120 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_atm_ocn -Checking test 121 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4084,15 +4052,15 @@ Checking test 121 hafs_regional_atm_ocn 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 = 430.715461 -0:The maximum resident set size (KB) = 740984 +0:The total amount of wall time = 456.830237 +0:The maximum resident set size (KB) = 743344 -Test 121 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_atm_wav -Checking test 122 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4100,15 +4068,15 @@ Checking test 122 hafs_regional_atm_wav 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 = 995.112600 -0:The maximum resident set size (KB) = 769948 +0:The total amount of wall time = 1034.454485 +0:The maximum resident set size (KB) = 773040 -Test 122 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_atm_ocn_wav -Checking test 123 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4118,29 +4086,29 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1196.031559 -0:The maximum resident set size (KB) = 792356 +0:The total amount of wall time = 1096.039955 +0:The maximum resident set size (KB) = 792740 -Test 123 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_1nest_atm -Checking test 124 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm 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 = 375.782437 -0:The maximum resident set size (KB) = 300760 +0:The total amount of wall time = 374.042827 +0:The maximum resident set size (KB) = 300628 -Test 124 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_telescopic_2nests_atm -Checking test 125 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4148,29 +4116,29 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.298241 -0:The maximum resident set size (KB) = 320052 +0:The total amount of wall time = 426.956868 +0:The maximum resident set size (KB) = 320900 -Test 125 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_global_1nest_atm -Checking test 126 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm 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 = 172.322915 -0:The maximum resident set size (KB) = 214012 +0:The total amount of wall time = 171.957735 +0:The maximum resident set size (KB) = 214352 -Test 126 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_global_multiple_4nests_atm -Checking test 127 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4187,15 +4155,15 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 483.236852 -0:The maximum resident set size (KB) = 302148 +0:The total amount of wall time = 482.465558 +0:The maximum resident set size (KB) = 303776 -Test 127 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_specified_moving_1nest_atm -Checking test 128 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4203,29 +4171,29 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 243.306524 -0:The maximum resident set size (KB) = 318528 +0:The total amount of wall time = 241.154911 +0:The maximum resident set size (KB) = 318744 -Test 128 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_storm_following_1nest_atm -Checking test 129 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm 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 = 228.897571 -0:The maximum resident set size (KB) = 318716 +0:The total amount of wall time = 224.060504 +0:The maximum resident set size (KB) = 319072 -Test 129 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_storm_following_1nest_atm_ocn -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4233,43 +4201,43 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.322525 -0:The maximum resident set size (KB) = 376372 +0:The total amount of wall time = 275.124861 +0:The maximum resident set size (KB) = 375836 -Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_global_storm_following_1nest_atm -Checking test 131 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_global_storm_following_1nest_atm +Checking test 133 hafs_global_storm_following_1nest_atm 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.181740 -0:The maximum resident set size (KB) = 233308 +0:The total amount of wall time = 67.722054 +0:The maximum resident set size (KB) = 233860 -Test 131 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 763.905733 -0:The maximum resident set size (KB) = 402984 +0:The total amount of wall time = 765.297460 +0:The maximum resident set size (KB) = 401912 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4279,162 +4247,162 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 763.394566 -0:The maximum resident set size (KB) = 426808 +0:The total amount of wall time = 779.114934 +0:The maximum resident set size (KB) = 427796 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_docn -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_docn -Checking test 134 hafs_regional_docn results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_docn +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_docn +Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 553.061288 -0:The maximum resident set size (KB) = 755244 +0:The total amount of wall time = 400.846681 +0:The maximum resident set size (KB) = 756600 -Test 134 hafs_regional_docn PASS +Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_docn_oisst -Checking test 135 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_docn_oisst +Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 393.695084 -0:The maximum resident set size (KB) = 735592 +0:The total amount of wall time = 398.441332 +0:The maximum resident set size (KB) = 736568 -Test 135 hafs_regional_docn_oisst PASS +Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/hafs_regional_datm_cdeps -Checking test 136 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/hafs_regional_datm_cdeps +Checking test 138 hafs_regional_datm_cdeps 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 = 1285.536127 -0:The maximum resident set size (KB) = 888120 +0:The total amount of wall time = 1280.885602 +0:The maximum resident set size (KB) = 887900 -Test 136 hafs_regional_datm_cdeps PASS +Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_control_cfsr -Checking test 137 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_control_cfsr +Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.617964 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 167.983806 +0:The maximum resident set size (KB) = 716660 -Test 137 datm_cdeps_control_cfsr PASS +Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_restart_cfsr -Checking test 138 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_restart_cfsr +Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 97.965118 -0:The maximum resident set size (KB) = 704888 +0:The total amount of wall time = 102.779926 +0:The maximum resident set size (KB) = 704804 -Test 138 datm_cdeps_restart_cfsr PASS +Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_control_gefs -Checking test 139 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_control_gefs +Checking test 141 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.771286 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 161.199360 +0:The maximum resident set size (KB) = 607084 -Test 139 datm_cdeps_control_gefs PASS +Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_iau_gefs -Checking test 140 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_iau_gefs +Checking test 142 datm_cdeps_iau_gefs 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 = 166.124136 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 164.497435 +0:The maximum resident set size (KB) = 607484 -Test 140 datm_cdeps_iau_gefs PASS +Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_stochy_gefs -Checking test 141 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_stochy_gefs +Checking test 143 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.777295 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 163.820991 +0:The maximum resident set size (KB) = 607460 -Test 141 datm_cdeps_stochy_gefs PASS +Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_ciceC_cfsr -Checking test 142 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_ciceC_cfsr +Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.477055 -0:The maximum resident set size (KB) = 716728 +0:The total amount of wall time = 168.076473 +0:The maximum resident set size (KB) = 716680 -Test 142 datm_cdeps_ciceC_cfsr PASS +Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_bulk_cfsr -Checking test 143 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_bulk_cfsr +Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-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.563281 -0:The maximum resident set size (KB) = 728188 +0:The total amount of wall time = 169.156000 +0:The maximum resident set size (KB) = 727648 -Test 143 datm_cdeps_bulk_cfsr PASS +Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_bulk_gefs -Checking test 144 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_bulk_gefs +Checking test 146 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 157.481164 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 160.634127 +0:The maximum resident set size (KB) = 607448 -Test 144 datm_cdeps_bulk_gefs PASS +Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_mx025_cfsr -Checking test 145 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_mx025_cfsr +Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4442,15 +4410,15 @@ Checking test 145 datm_cdeps_mx025_cfsr 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 = 426.186035 -0:The maximum resident set size (KB) = 514368 +0:The total amount of wall time = 870.739141 +0:The maximum resident set size (KB) = 514332 -Test 145 datm_cdeps_mx025_cfsr PASS +Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_mx025_gefs -Checking test 146 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_mx025_gefs +Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4458,78 +4426,78 @@ Checking test 146 datm_cdeps_mx025_gefs 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 = 443.136678 -0:The maximum resident set size (KB) = 494768 +0:The total amount of wall time = 819.025766 +0:The maximum resident set size (KB) = 494808 -Test 146 datm_cdeps_mx025_gefs PASS +Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_multiple_files_cfsr -Checking test 147 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_multiple_files_cfsr +Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.852533 -0:The maximum resident set size (KB) = 727856 +0:The total amount of wall time = 161.958685 +0:The maximum resident set size (KB) = 727776 -Test 147 datm_cdeps_multiple_files_cfsr PASS +Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_3072x1536_cfsr -Checking test 148 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_3072x1536_cfsr +Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 240.987262 -0:The maximum resident set size (KB) = 1941400 +0:The total amount of wall time = 257.708704 +0:The maximum resident set size (KB) = 1940372 -Test 148 datm_cdeps_3072x1536_cfsr PASS +Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_gfs -Checking test 149 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_gfs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_gfs +Checking test 151 datm_cdeps_gfs 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 = 256.471771 -0:The maximum resident set size (KB) = 1940324 +0:The total amount of wall time = 258.412697 +0:The maximum resident set size (KB) = 1941060 -Test 149 datm_cdeps_gfs PASS +Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_debug_cfsr -Checking test 150 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_debug_cfsr +Checking test 152 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 370.289911 -0:The maximum resident set size (KB) = 700652 +0:The total amount of wall time = 371.039713 +0:The maximum resident set size (KB) = 700576 -Test 150 datm_cdeps_debug_cfsr PASS +Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_control_cfsr_faster -Checking test 151 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_control_cfsr_faster +Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.294581 -0:The maximum resident set size (KB) = 716764 +0:The total amount of wall time = 167.603248 +0:The maximum resident set size (KB) = 716732 -Test 151 datm_cdeps_control_cfsr_faster PASS +Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_lnd_gswp3 -Checking test 152 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_lnd_gswp3 +Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4537,15 +4505,15 @@ Checking test 152 datm_cdeps_lnd_gswp3 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.842342 -0:The maximum resident set size (KB) = 204536 +0:The total amount of wall time = 10.564616 +0:The maximum resident set size (KB) = 216464 -Test 152 datm_cdeps_lnd_gswp3 PASS +Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/datm_cdeps_lnd_gswp3_rst -Checking test 153 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/datm_cdeps_lnd_gswp3_rst +Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4553,15 +4521,15 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 16.252475 -0:The maximum resident set size (KB) = 208208 +0:The total amount of wall time = 15.193048 +0:The maximum resident set size (KB) = 208252 -Test 153 datm_cdeps_lnd_gswp3_rst PASS +Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_p8_atmlnd_sbs -Checking test 154 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_p8_atmlnd_sbs +Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4645,15 +4613,15 @@ Checking test 154 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -0:The total amount of wall time = 234.449411 -0:The maximum resident set size (KB) = 1462900 +0:The total amount of wall time = 236.784606 +0:The maximum resident set size (KB) = 1463260 -Test 154 control_p8_atmlnd_sbs PASS +Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/atmwav_control_noaero_p8 -Checking test 155 atmwav_control_noaero_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/atmwav_control_noaero_p8 +Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4695,15 +4663,15 @@ Checking test 155 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 101.733015 -0:The maximum resident set size (KB) = 1434364 +0:The total amount of wall time = 101.334256 +0:The maximum resident set size (KB) = 1434632 -Test 155 atmwav_control_noaero_p8 PASS +Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/control_atmwav -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/control_atmwav -Checking test 156 control_atmwav results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/control_atmwav +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/control_atmwav +Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4746,15 +4714,15 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.323281 -0:The maximum resident set size (KB) = 474632 +0:The total amount of wall time = 101.564857 +0:The maximum resident set size (KB) = 475420 -Test 156 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/atmaero_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/atmaero_control_p8 -Checking test 157 atmaero_control_p8 results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/atmaero_control_p8 +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/atmaero_control_p8 +Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4797,15 +4765,15 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 250.006993 -0:The maximum resident set size (KB) = 2704044 +0:The total amount of wall time = 253.309399 +0:The maximum resident set size (KB) = 2703916 -Test 157 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4848,15 +4816,15 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.188031 -0:The maximum resident set size (KB) = 2757992 +0:The total amount of wall time = 305.188191 +0:The maximum resident set size (KB) = 2758704 -Test 158 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4899,15 +4867,15 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.789770 -0:The maximum resident set size (KB) = 2764336 +0:The total amount of wall time = 312.891060 +0:The maximum resident set size (KB) = 2765400 -Test 159 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_atmaq -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_atmaq -Checking test 160 regional_atmaq results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_atmaq +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_atmaq +Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4922,15 +4890,15 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 756.284246 -0:The maximum resident set size (KB) = 999224 +0:The total amount of wall time = 766.812300 +0:The maximum resident set size (KB) = 999776 -Test 160 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230508/INTEL/regional_atmaq_faster -working dir = /glade/scratch/dswales/FV3_RT/rt_62147/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... +baseline dir = /glade/scratch/grantf/FV3_RT/REGRESSION_TEST_INTEL/regional_atmaq_faster +working dir = /glade/scratch/grantf/FV3_RT/rt_9379/regional_atmaq_faster +Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4945,12 +4913,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 702.865348 -0:The maximum resident set size (KB) = 999352 +0:The total amount of wall time = 936.434344 +0:The maximum resident set size (KB) = 999556 -Test 161 regional_atmaq_faster PASS +Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon May 8 19:06:50 MDT 2023 -Elapsed time: 01h:15m:50s. Have a nice day! +Wed Jun 14 16:10:04 MDT 2023 +Elapsed time: 01h:21m:42s. Have a nice day! diff --git a/tests/rt.ncar.sh b/tests/rt.ncar.sh index 105b4b7575..9ec8d160df 100755 --- a/tests/rt.ncar.sh +++ b/tests/rt.ncar.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20230508 +BL_DATE=20230615 RTPWD=${RTPWD:-$DISKNM/NCAR/main-${BL_DATE}/${RT_COMPILER^^}} From 361e26933a8c1b61903e48ff68b359965296c4fa Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 29 Jun 2023 14:27:30 -0400 Subject: [PATCH 5/5] update FV3 submodule pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 1a47c561ee..a919cc25be 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1a47c561ee8b91db2ed44a646ac05246fdfcfb51 +Subproject commit a919cc25be37b303540ebf7b0f1ac1813e6c576a