From 495c5fd106ff3facb5b4aedbf94f8bba6c1da091 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Thu, 9 Mar 2023 13:26:39 -0500 Subject: [PATCH] Combined PR: hpc-stack locations, Disable Fused Multiply Add, and Enable usage of shared pio (#1645) * Gaea system: change in hpc-stack location, miniconda3 (EPIC-managed) * move DISABLE_FMA to one if at the end * only disable fma on wcoss if FASTER=ON * Update CMakeModules to develop; remove STATIC requirement from PIO find. Co-authored-by: Natalie Perlin Co-authored-by: ulmononian --- CMakeLists.txt | 3 +- CMakeModules | 2 +- cmake/Intel.cmake | 6 + cmake/configure_acorn.cmake | 4 + cmake/configure_wcoss2.cmake | 4 + modulefiles/ufs_gaea.intel | 56 - modulefiles/ufs_gaea.intel.lua | 35 + modulefiles/ufs_gaea.intel_debug | 53 - modulefiles/ufs_gaea.intel_debug.lua | 35 + tests/RegressionTests_acorn.intel.log | 1244 +++++++++--------- tests/RegressionTests_cheyenne.gnu.log | 424 +++--- tests/RegressionTests_cheyenne.intel.log | 1505 +++++++++++----------- tests/RegressionTests_gaea.intel.log | 1399 ++++++++++---------- tests/RegressionTests_hera.gnu.log | 560 ++++---- tests/RegressionTests_hera.intel.log | 1318 +++++++++---------- tests/RegressionTests_jet.intel.log | 1208 ++++++++--------- tests/RegressionTests_orion.intel.log | 1326 +++++++++---------- tests/RegressionTests_wcoss2.intel.log | 1088 ++++++++-------- tests/compile.sh | 6 +- tests/fv3_conf/fv3_qsub.IN_cheyenne | 2 +- tests/fv3_conf/fv3_qsub.IN_wcoss2 | 2 +- tests/fv3_conf/fv3_slurm.IN_expanse | 2 +- tests/fv3_conf/fv3_slurm.IN_gaea | 3 +- tests/fv3_conf/fv3_slurm.IN_hera | 2 +- tests/fv3_conf/fv3_slurm.IN_jet | 2 +- tests/fv3_conf/fv3_slurm.IN_orion | 2 +- tests/fv3_conf/fv3_slurm.IN_s4 | 2 +- tests/fv3_conf/fv3_slurm.IN_stampede | 2 +- tests/module-setup.sh | 27 +- tests/rt.sh | 4 +- tests/run_test.sh | 9 +- 31 files changed, 5111 insertions(+), 5224 deletions(-) delete mode 100644 modulefiles/ufs_gaea.intel create mode 100644 modulefiles/ufs_gaea.intel.lua delete mode 100644 modulefiles/ufs_gaea.intel_debug create mode 100644 modulefiles/ufs_gaea.intel_debug.lua diff --git a/CMakeLists.txt b/CMakeLists.txt index 2af40cae56..48dbbf9a7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,6 +63,7 @@ set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") set(DEBUG OFF CACHE BOOL "Enable DEBUG mode") set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") +set(DISABLE_FMA OFF CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) set(INLINE_POST ON CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") @@ -137,7 +138,7 @@ if(FMS) endif() if(CMEPS) - find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran STATIC) + find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran) endif() find_package(bacio 2.4.0 REQUIRED) diff --git a/CMakeModules b/CMakeModules index cedeb2c64e..cabd7753ae 160000 --- a/CMakeModules +++ b/CMakeModules @@ -1 +1 @@ -Subproject commit cedeb2c64e55d3445ac4e4847ea7c4fa3220c3dd +Subproject commit cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 3a8f252133..ac9cbabd4e 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -43,3 +43,9 @@ if(APPLE) # Passing the -c flag includes them and fixes an error with undefined symbols set(CMAKE_Fortran_ARCHIVE_FINISH " -c ") endif() + +# This must be last, to override all other optimization settings. +if(DISABLE_FMA) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") +endif() diff --git a/cmake/configure_acorn.cmake b/cmake/configure_acorn.cmake index c1c59110a7..aba198af7e 100644 --- a/cmake/configure_acorn.cmake +++ b/cmake/configure_acorn.cmake @@ -1,3 +1,7 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) + +if(FASTER) + set(DISABLE_FMA ON CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) +endif() diff --git a/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake index c1c59110a7..aba198af7e 100644 --- a/cmake/configure_wcoss2.cmake +++ b/cmake/configure_wcoss2.cmake @@ -1,3 +1,7 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) + +if(FASTER) + set(DISABLE_FMA ON CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) +endif() diff --git a/modulefiles/ufs_gaea.intel b/modulefiles/ufs_gaea.intel deleted file mode 100644 index 2f21f011a9..0000000000 --- a/modulefiles/ufs_gaea.intel +++ /dev/null @@ -1,56 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" -} - -module-whatis "loads UFS Model prerequisites for Gaea/Intel" - -module load PrgEnv-intel/6.0.5 -module rm intel -module rm cray-mpich -module rm netcdf -module load intel/18.0.6.288 -module load cray-mpich/7.7.11 -module load cray-python/3.7.3.2 -# Needed at runtime: -module load alps - -module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles -module load cmake/3.20.1 - -#needed for WW3 build -module load gcc/8.3.0 - -module use /lustre/f2/pdata/ncep_shared/hpc-stack.epic/libs/intel/2021.3.0/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/2021.3.0 -module load hpc-cray-mpich/7.7.11 - -#module load ufs_common -module load jasper/2.0.25 -module load zlib/1.2.11 -module load libpng/1.6.37 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.7 -module load esmf/8.3.0b09 -module load fms/2022.04 - -module load bacio/2.4.1 -module load crtm/2.4.0 -module load g2/3.4.5 -module load g2tmpl/1.10.2 -module load ip/3.3.3 -module load sp/2.3.3 -module load w3emc/2.9.2 - -module load gftl-shared/v1.5.0 -module load mapl/2.22.0-esmf-8.3.0b09 - -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform gaea.intel diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua new file mode 100644 index 0000000000..fb0ded562e --- /dev/null +++ b/modulefiles/ufs_gaea.intel.lua @@ -0,0 +1,35 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea using Intel-2022.1.2 +]]) + +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") +load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) +load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) +load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) +load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) + +-- needed for WW3 build +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_gaea.intel_debug b/modulefiles/ufs_gaea.intel_debug deleted file mode 100644 index c357773ae8..0000000000 --- a/modulefiles/ufs_gaea.intel_debug +++ /dev/null @@ -1,53 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" -} - -module-whatis "loads UFS Model prerequisites for Gaea/Intel" - -module load PrgEnv-intel/6.0.5 -module rm intel -module rm cray-mpich -module rm netcdf -module load intel/18.0.6.288 -module load cray-mpich/7.7.11 -module load cray-python/3.7.3.2 -# Needed at runtime: -module load alps - -module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles -module load cmake/3.20.1 - -module use /lustre/f2/pdata/ncep_shared/hpc-stack.epic/libs/intel/2021.3.0/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/2021.3.0 -module load hpc-cray-mpich/7.7.11 - -#module load ufs_common_debug -module load jasper/2.0.25 -module load zlib/1.2.11 -module load libpng/1.6.37 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.7 -module load esmf/8.3.0b09-debug -module load fms/2022.04 - -module load bacio/2.4.1 -module load crtm/2.4.0 -module load g2/3.4.5 -module load g2tmpl/1.10.2 -module load ip/3.3.3 -module load sp/2.3.3 -module load w3emc/2.9.2 - -module load gftl-shared/v1.5.0 -module load mapl/2.22.0-esmf-8.3.0b09 - -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform gaea.intel diff --git a/modulefiles/ufs_gaea.intel_debug.lua b/modulefiles/ufs_gaea.intel_debug.lua new file mode 100644 index 0000000000..a7445cea92 --- /dev/null +++ b/modulefiles/ufs_gaea.intel_debug.lua @@ -0,0 +1,35 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea using Intel-2022.1.2 +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model and debug 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") +load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) +load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) +load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) +load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) + +-- needed for WW3 build +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +-- Needed at runtime: +load("alps") +load("rocoto") + +load("ufs_common_debug") + +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/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index c5ed13ca11..b34b45b184 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,39 +1,39 @@ -Tue Mar 7 15:26:51 UTC 2023 +Thu Mar 9 13:46:25 UTC 2023 Start Regression test -Compile 001 elapsed time 656 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 539 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 1108 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1586 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 622 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 731 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1377 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 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 639 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 555 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 1010 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 938 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 570 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 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 770 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 360 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 1028 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 1413 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 022 elapsed time 316 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 892 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 384 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 690 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 026 elapsed time 716 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 714 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 744 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 367 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8_mixedmode +Compile 001 elapsed time 595 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 540 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 986 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 464 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 1076 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1100 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 736 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 811 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 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1283 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 972 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 536 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 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 503 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 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 020 elapsed time 877 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 857 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 022 elapsed time 736 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 225 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 145 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 685 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 026 elapsed time 534 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 473 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 773 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 216 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +98,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 = 335.601509 -The maximum resident set size (KB) = 2950460 +The total amount of wall time = 338.463955 +The maximum resident set size (KB) = 2952080 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +169,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 = 260.082897 -The maximum resident set size (KB) = 1586476 +The total amount of wall time = 262.091382 +The maximum resident set size (KB) = 1576640 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +241,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 = 387.585824 -The maximum resident set size (KB) = 2979368 +The total amount of wall time = 393.427385 +The maximum resident set size (KB) = 2977548 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +301,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.754193 -The maximum resident set size (KB) = 2867364 +The total amount of wall time = 228.765179 +The maximum resident set size (KB) = 2865740 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -361,14 +361,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.823584 -The maximum resident set size (KB) = 3283144 +The total amount of wall time = 380.396607 +The maximum resident set size (KB) = 3282260 Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -421,14 +421,14 @@ Checking test 006 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.346894 -The maximum resident set size (KB) = 2977072 +The total amount of wall time = 387.905667 +The maximum resident set size (KB) = 2978344 Test 006 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -481,14 +481,14 @@ Checking test 007 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.838622 -The maximum resident set size (KB) = 2906136 +The total amount of wall time = 324.501431 +The maximum resident set size (KB) = 2907872 Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -553,14 +553,14 @@ Checking test 008 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 = 391.323575 -The maximum resident set size (KB) = 2979264 +The total amount of wall time = 394.483259 +The maximum resident set size (KB) = 2986296 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 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 = 282.583985 -The maximum resident set size (KB) = 1569904 +The total amount of wall time = 280.413976 +The maximum resident set size (KB) = 1574796 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +693,14 @@ Checking test 010 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 = 300.323733 -The maximum resident set size (KB) = 1631236 +The total amount of wall time = 296.580305 +The maximum resident set size (KB) = 1621304 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +762,14 @@ Checking test 011 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 = 304.743637 -The maximum resident set size (KB) = 1620836 +The total amount of wall time = 310.078412 +The maximum resident set size (KB) = 1624140 Test 011 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -819,14 +819,14 @@ Checking test 012 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.050787 -The maximum resident set size (KB) = 2631728 +The total amount of wall time = 434.451641 +The maximum resident set size (KB) = 2627176 Test 012 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 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 = 120.074589 -The maximum resident set size (KB) = 2649140 +The total amount of wall time = 120.493048 +The maximum resident set size (KB) = 2648300 Test 013 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -933,14 +933,14 @@ Checking test 014 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 = 65.435689 -The maximum resident set size (KB) = 2062512 +The total amount of wall time = 67.507670 +The maximum resident set size (KB) = 2063236 Test 014 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1005,14 +1005,14 @@ Checking test 015 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 = 380.458861 -The maximum resident set size (KB) = 2977160 +The total amount of wall time = 377.299687 +The maximum resident set size (KB) = 2974992 Test 015 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.900762 -The maximum resident set size (KB) = 514500 +The total amount of wall time = 128.250969 +The maximum resident set size (KB) = 513460 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.687977 -The maximum resident set size (KB) = 517804 +The total amount of wall time = 131.480621 +The maximum resident set size (KB) = 516188 Test 017 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.125615 -The maximum resident set size (KB) = 518908 +The total amount of wall time = 133.507534 +The maximum resident set size (KB) = 519656 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1121,14 +1121,14 @@ Checking test 019 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.614850 -The maximum resident set size (KB) = 674736 +The total amount of wall time = 327.121126 +The maximum resident set size (KB) = 673184 Test 019 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.774136 -The maximum resident set size (KB) = 615916 +The total amount of wall time = 527.141448 +The maximum resident set size (KB) = 616108 Test 020 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 574.827781 -The maximum resident set size (KB) = 910956 +The total amount of wall time = 571.934871 +The maximum resident set size (KB) = 910968 Test 021 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 022 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 = 510.419813 -The maximum resident set size (KB) = 1042108 +The total amount of wall time = 504.504223 +The maximum resident set size (KB) = 1042412 Test 022 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1225,28 +1225,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.436103 -The maximum resident set size (KB) = 520844 +The total amount of wall time = 89.886784 +The maximum resident set size (KB) = 518684 Test 023 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy_restart Checking test 024 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.556625 -The maximum resident set size (KB) = 292108 +The total amount of wall time = 48.247837 +The maximum resident set size (KB) = 292520 Test 024 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.902953 -The maximum resident set size (KB) = 518456 +The total amount of wall time = 83.461188 +The maximum resident set size (KB) = 521332 Test 025 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.565619 -The maximum resident set size (KB) = 518860 +The total amount of wall time = 134.955098 +The maximum resident set size (KB) = 513844 Test 026 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.959919 -The maximum resident set size (KB) = 514128 +The total amount of wall time = 135.368007 +The maximum resident set size (KB) = 518536 Test 027 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1355,14 @@ Checking test 028 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 = 178.368608 -The maximum resident set size (KB) = 1487548 +The total amount of wall time = 176.747736 +The maximum resident set size (KB) = 1480992 Test 028 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.899884 -The maximum resident set size (KB) = 1484016 +The total amount of wall time = 319.501636 +The maximum resident set size (KB) = 1489332 Test 029 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 030 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.085548 -The maximum resident set size (KB) = 651040 +The total amount of wall time = 98.515880 +The maximum resident set size (KB) = 654848 Test 030 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 031 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.641091 -The maximum resident set size (KB) = 1478776 +The total amount of wall time = 179.460579 +The maximum resident set size (KB) = 1478660 Test 031 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1527,14 @@ Checking test 032 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 = 159.639036 -The maximum resident set size (KB) = 1569104 +The total amount of wall time = 159.670811 +The maximum resident set size (KB) = 1562936 Test 032 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 033 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 = 232.298551 -The maximum resident set size (KB) = 1544116 +The total amount of wall time = 233.404468 +The maximum resident set size (KB) = 1543124 Test 033 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 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 = 202.424831 -The maximum resident set size (KB) = 1494124 +The total amount of wall time = 202.011415 +The maximum resident set size (KB) = 1491556 Test 034 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1653,28 +1653,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.125278 -The maximum resident set size (KB) = 653984 +The total amount of wall time = 289.304157 +The maximum resident set size (KB) = 655144 Test 035 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_restart Checking test 036 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 = 153.253665 -The maximum resident set size (KB) = 650168 +The total amount of wall time = 153.235377 +The maximum resident set size (KB) = 648684 Test 036 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.514811 -The maximum resident set size (KB) = 652088 +The total amount of wall time = 302.797255 +The maximum resident set size (KB) = 650524 Test 037 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.255860 -The maximum resident set size (KB) = 702436 +The total amount of wall time = 179.216734 +The maximum resident set size (KB) = 699000 Test 038 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 039 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.915520 -The maximum resident set size (KB) = 642536 +The total amount of wall time = 312.562414 +The maximum resident set size (KB) = 642652 Test 039 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.700092 -The maximum resident set size (KB) = 653876 +The total amount of wall time = 289.241173 +The maximum resident set size (KB) = 650112 Test 040 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1754,14 +1754,14 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.866245 -The maximum resident set size (KB) = 339972 +The total amount of wall time = 362.324116 +The maximum resident set size (KB) = 340740 Test 041 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1808,14 @@ Checking test 042 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 = 417.118770 -The maximum resident set size (KB) = 895784 +The total amount of wall time = 419.236232 +The maximum resident set size (KB) = 893664 Test 042 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_spp_sppt_shum_skeb Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 285.241437 -The maximum resident set size (KB) = 983620 +The total amount of wall time = 285.879551 +The maximum resident set size (KB) = 983236 Test 043 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_decomp Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +1880,14 @@ Checking test 044 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 = 432.319931 -The maximum resident set size (KB) = 892296 +The total amount of wall time = 434.623989 +The maximum resident set size (KB) = 889664 Test 044 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_2threads Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +1934,14 @@ Checking test 045 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 = 391.082693 -The maximum resident set size (KB) = 964188 +The total amount of wall time = 392.548039 +The maximum resident set size (KB) = 961140 Test 045 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_restart Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 046 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 = 211.910152 -The maximum resident set size (KB) = 645184 +The total amount of wall time = 212.032550 +The maximum resident set size (KB) = 647764 Test 046 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 047 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 = 415.547789 -The maximum resident set size (KB) = 889368 +The total amount of wall time = 414.406827 +The maximum resident set size (KB) = 892572 Test 047 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_decomp Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2088,14 +2088,14 @@ Checking test 048 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 = 432.541695 -The maximum resident set size (KB) = 890352 +The total amount of wall time = 432.128719 +The maximum resident set size (KB) = 890516 Test 048 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 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.039179 -The maximum resident set size (KB) = 639076 +The total amount of wall time = 309.835281 +The maximum resident set size (KB) = 639932 Test 049 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 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 = 398.630783 -The maximum resident set size (KB) = 889828 +The total amount of wall time = 398.940241 +The maximum resident set size (KB) = 893844 Test 050 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_decomp Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 051 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 = 413.151330 -The maximum resident set size (KB) = 889108 +The total amount of wall time = 413.679912 +The maximum resident set size (KB) = 890488 Test 051 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_2threads Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2296,14 +2296,14 @@ Checking test 052 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 = 369.847431 -The maximum resident set size (KB) = 963080 +The total amount of wall time = 369.817624 +The maximum resident set size (KB) = 961556 Test 052 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_restart Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 053 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 = 297.716021 -The maximum resident set size (KB) = 639604 +The total amount of wall time = 299.114537 +The maximum resident set size (KB) = 640216 Test 053 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 054 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 = 409.127931 -The maximum resident set size (KB) = 887800 +The total amount of wall time = 409.473470 +The maximum resident set size (KB) = 883640 Test 054 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.430999 -The maximum resident set size (KB) = 577440 +The total amount of wall time = 471.819229 +The maximum resident set size (KB) = 577640 Test 055 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.149122 -The maximum resident set size (KB) = 567024 +The total amount of wall time = 462.467560 +The maximum resident set size (KB) = 565268 Test 056 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2456,14 +2456,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.064102 -The maximum resident set size (KB) = 761380 +The total amount of wall time = 113.678003 +The maximum resident set size (KB) = 763852 Test 057 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_smoke_conus13km_hrrr_warm Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.308852 -The maximum resident set size (KB) = 772024 +The total amount of wall time = 126.474123 +The maximum resident set size (KB) = 772716 Test 058 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.900611 -The maximum resident set size (KB) = 767520 +The total amount of wall time = 114.473725 +The maximum resident set size (KB) = 764160 Test 059 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm_2threads Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.308932 -The maximum resident set size (KB) = 758820 +The total amount of wall time = 83.795020 +The maximum resident set size (KB) = 760828 Test 060 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm_2threads Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.021027 -The maximum resident set size (KB) = 758120 +The total amount of wall time = 84.366686 +The maximum resident set size (KB) = 762412 Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmg Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2538,14 +2538,14 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.488005 -The maximum resident set size (KB) = 582424 +The total amount of wall time = 344.761001 +The maximum resident set size (KB) = 586472 Test 062 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmgt Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.191672 -The maximum resident set size (KB) = 581628 +The total amount of wall time = 342.232204 +The maximum resident set size (KB) = 584216 Test 063 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,26 +2574,26 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.964305 -The maximum resident set size (KB) = 550916 +The total amount of wall time = 180.189502 +The maximum resident set size (KB) = 550776 Test 064 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.127488 -The maximum resident set size (KB) = 271928 +The total amount of wall time = 117.309057 +The maximum resident set size (KB) = 271484 Test 065 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_faster Checking test 066 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 066 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.190574 -The maximum resident set size (KB) = 1484164 +The total amount of wall time = 174.498797 +The maximum resident set size (KB) = 1478352 Test 066 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_control_faster Checking test 067 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2658,42 +2658,42 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.201319 -The maximum resident set size (KB) = 648660 +The total amount of wall time = 284.316069 +The maximum resident set size (KB) = 652684 Test 067 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm_debug Checking test 068 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 = 780.378906 -The maximum resident set size (KB) = 787856 +The total amount of wall time = 787.183152 +The maximum resident set size (KB) = 788460 Test 068 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm_debug Checking test 069 rrfs_conus13km_radar_tten_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 = 784.152742 -The maximum resident set size (KB) = 794320 +The total amount of wall time = 781.688249 +The maximum resident set size (KB) = 790880 Test 069 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2720,334 +2720,334 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 167.218557 -The maximum resident set size (KB) = 672188 +The total amount of wall time = 166.268504 +The maximum resident set size (KB) = 671960 Test 070 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wrtGauss_netcdf_parallel_debug Checking test 071 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.492580 -The maximum resident set size (KB) = 675140 +The total amount of wall time = 158.553323 +The maximum resident set size (KB) = 676340 Test 071 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy_debug Checking test 072 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.124537 -The maximum resident set size (KB) = 678236 +The total amount of wall time = 178.165304 +The maximum resident set size (KB) = 683740 Test 072 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_lndp_debug Checking test 073 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.465033 -The maximum resident set size (KB) = 679848 +The total amount of wall time = 161.109704 +The maximum resident set size (KB) = 682812 Test 073 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmg_debug Checking test 074 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.419795 -The maximum resident set size (KB) = 716048 +The total amount of wall time = 254.829359 +The maximum resident set size (KB) = 716432 Test 074 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmgt_debug Checking test 075 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.431686 -The maximum resident set size (KB) = 715360 +The total amount of wall time = 252.803686 +The maximum resident set size (KB) = 713788 Test 075 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_ras_debug Checking test 076 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.012284 -The maximum resident set size (KB) = 687440 +The total amount of wall time = 163.381903 +The maximum resident set size (KB) = 688952 Test 076 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_diag_debug Checking test 077 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.409186 -The maximum resident set size (KB) = 734728 +The total amount of wall time = 164.858519 +The maximum resident set size (KB) = 734736 Test 077 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_debug_p8 Checking test 078 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 = 184.929010 -The maximum resident set size (KB) = 1504888 +The total amount of wall time = 186.245041 +The maximum resident set size (KB) = 1495504 Test 078 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_debug Checking test 079 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 = 1042.342296 -The maximum resident set size (KB) = 672444 +The total amount of wall time = 1047.384324 +The maximum resident set size (KB) = 673336 Test 079 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_debug Checking test 080 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 = 297.186878 -The maximum resident set size (KB) = 1052432 +The total amount of wall time = 298.344624 +The maximum resident set size (KB) = 1049408 Test 080 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_debug Checking test 081 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 = 293.975676 -The maximum resident set size (KB) = 1047200 +The total amount of wall time = 292.038376 +The maximum resident set size (KB) = 1043852 Test 081 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_unified_drag_suite_debug Checking test 082 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.936866 -The maximum resident set size (KB) = 1052100 +The total amount of wall time = 297.825894 +The maximum resident set size (KB) = 1048208 Test 082 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_diag_debug Checking test 083 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.443576 -The maximum resident set size (KB) = 1133208 +The total amount of wall time = 309.679220 +The maximum resident set size (KB) = 1132184 Test 083 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_cires_ugwp_debug Checking test 084 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.744645 -The maximum resident set size (KB) = 1047180 +The total amount of wall time = 304.456326 +The maximum resident set size (KB) = 1053392 Test 084 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_unified_ugwp_debug Checking test 085 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 = 304.397564 -The maximum resident set size (KB) = 1050416 +The total amount of wall time = 304.941235 +The maximum resident set size (KB) = 1050136 Test 085 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_lndp_debug Checking test 086 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.153601 -The maximum resident set size (KB) = 1052356 +The total amount of wall time = 300.481250 +The maximum resident set size (KB) = 1050488 Test 086 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_flake_debug Checking test 087 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.373115 -The maximum resident set size (KB) = 1050940 +The total amount of wall time = 297.597461 +The maximum resident set size (KB) = 1051836 Test 087 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_progcld_thompson_debug Checking test 088 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.323095 -The maximum resident set size (KB) = 1053096 +The total amount of wall time = 298.918343 +The maximum resident set size (KB) = 1049056 Test 088 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_noah_debug Checking test 089 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.335713 -The maximum resident set size (KB) = 1052004 +The total amount of wall time = 292.134209 +The maximum resident set size (KB) = 1051876 Test 089 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_debug Checking test 090 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 = 296.519278 -The maximum resident set size (KB) = 1048368 +The total amount of wall time = 296.891777 +The maximum resident set size (KB) = 1051388 Test 090 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_noah_sfcdiff_cires_ugwp_debug Checking test 091 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 = 485.740781 -The maximum resident set size (KB) = 1049400 +The total amount of wall time = 485.913072 +The maximum resident set size (KB) = 1048276 Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1beta_debug Checking test 092 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 = 293.484420 -The maximum resident set size (KB) = 1045288 +The total amount of wall time = 291.938669 +The maximum resident set size (KB) = 1048488 Test 092 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wam_debug Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.553079 -The maximum resident set size (KB) = 301984 +The total amount of wall time = 300.787725 +The maximum resident set size (KB) = 300852 Test 093 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 265.947723 -The maximum resident set size (KB) = 871928 +The total amount of wall time = 267.102923 +The maximum resident set size (KB) = 878940 Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn32_phy32 Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,14 +3112,14 @@ Checking test 095 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 = 340.946357 -The maximum resident set size (KB) = 776444 +The total amount of wall time = 342.617303 +The maximum resident set size (KB) = 775216 Test 095 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_dyn32_phy32 Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3166,14 @@ Checking test 096 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 = 183.089745 -The maximum resident set size (KB) = 773556 +The total amount of wall time = 184.387014 +The maximum resident set size (KB) = 776148 Test 096 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_2threads_dyn32_phy32 Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3220,14 @@ Checking test 097 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 = 321.439403 -The maximum resident set size (KB) = 828956 +The total amount of wall time = 321.349882 +The maximum resident set size (KB) = 828684 Test 097 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_2threads_dyn32_phy32 Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3274,14 +3274,14 @@ Checking test 098 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.674767 -The maximum resident set size (KB) = 826708 +The total amount of wall time = 174.418487 +The maximum resident set size (KB) = 828780 Test 098 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_decomp_dyn32_phy32 Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3328,14 +3328,14 @@ Checking test 099 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 = 190.862556 -The maximum resident set size (KB) = 773472 +The total amount of wall time = 191.582547 +The maximum resident set size (KB) = 775008 Test 099 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_restart_dyn32_phy32 Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 100 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 = 254.846087 -The maximum resident set size (KB) = 614880 +The total amount of wall time = 255.453253 +The maximum resident set size (KB) = 612776 Test 100 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_restart_dyn32_phy32 Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3420,14 +3420,14 @@ Checking test 101 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 = 94.666860 -The maximum resident set size (KB) = 607388 +The total amount of wall time = 95.241142 +The maximum resident set size (KB) = 608176 Test 101 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn64_phy32 Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,81 +3474,81 @@ Checking test 102 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 = 230.474064 -The maximum resident set size (KB) = 794188 +The total amount of wall time = 232.340978 +The maximum resident set size (KB) = 798092 Test 102 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_debug_dyn32_phy32 Checking test 103 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.993166 -The maximum resident set size (KB) = 935700 +The total amount of wall time = 291.874437 +The maximum resident set size (KB) = 937584 Test 103 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_debug_dyn32_phy32 Checking test 104 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.390384 -The maximum resident set size (KB) = 936532 +The total amount of wall time = 285.977130 +The maximum resident set size (KB) = 938564 Test 104 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn64_phy32_debug Checking test 105 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.995426 -The maximum resident set size (KB) = 953736 +The total amount of wall time = 294.941657 +The maximum resident set size (KB) = 956612 Test 105 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 265.646863 -The maximum resident set size (KB) = 821092 +The total amount of wall time = 266.447497 +The maximum resident set size (KB) = 822240 Test 106 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_thompson_gfdlsf Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 304.092066 -The maximum resident set size (KB) = 1179796 +The total amount of wall time = 304.001568 +The maximum resident set size (KB) = 1182192 Test 107 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_ocn Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 108 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 = 385.475207 -The maximum resident set size (KB) = 853136 +The total amount of wall time = 387.615026 +The maximum resident set size (KB) = 851812 Test 108 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_wav Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 704.432368 -The maximum resident set size (KB) = 884496 +The total amount of wall time = 705.078778 +The maximum resident set size (KB) = 885440 Test 109 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_ocn_wav Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,28 +3591,28 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.131754 -The maximum resident set size (KB) = 906612 +The total amount of wall time = 895.240206 +The maximum resident set size (KB) = 907768 Test 110 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_1nest_atm Checking test 111 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 = 327.000351 -The maximum resident set size (KB) = 387556 +The total amount of wall time = 327.677400 +The maximum resident set size (KB) = 389380 Test 111 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_telescopic_2nests_atm Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,28 +3621,28 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 394.856342 -The maximum resident set size (KB) = 411312 +The total amount of wall time = 396.821324 +The maximum resident set size (KB) = 411772 Test 112 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_1nest_atm Checking test 113 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 = 166.126564 -The maximum resident set size (KB) = 263400 +The total amount of wall time = 165.325957 +The maximum resident set size (KB) = 263328 Test 113 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_multiple_4nests_atm Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3660,14 +3660,14 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 487.280360 -The maximum resident set size (KB) = 339264 +The total amount of wall time = 485.980433 +The maximum resident set size (KB) = 340720 Test 114 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_specified_moving_1nest_atm Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3676,28 +3676,28 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 212.705167 -The maximum resident set size (KB) = 405228 +The total amount of wall time = 212.073705 +The maximum resident set size (KB) = 400844 Test 115 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm Checking test 116 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 = 200.307463 -The maximum resident set size (KB) = 399996 +The total amount of wall time = 200.096918 +The maximum resident set size (KB) = 403708 Test 116 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3706,42 +3706,42 @@ Checking test 117 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 = 242.205070 -The maximum resident set size (KB) = 452700 +The total amount of wall time = 241.161844 +The maximum resident set size (KB) = 452080 Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_storm_following_1nest_atm Checking test 118 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 = 78.402308 -The maximum resident set size (KB) = 277472 +The total amount of wall time = 78.692441 +The maximum resident set size (KB) = 277396 Test 118 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 119 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 = 798.010661 -The maximum resident set size (KB) = 477576 +The total amount of wall time = 797.533254 +The maximum resident set size (KB) = 475708 Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3752,14 +3752,14 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 519.837638 -The maximum resident set size (KB) = 519896 +The total amount of wall time = 518.438790 +The maximum resident set size (KB) = 520224 Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3767,14 +3767,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 -The total amount of wall time = 368.819457 -The maximum resident set size (KB) = 856672 +The total amount of wall time = 370.225795 +The maximum resident set size (KB) = 856824 Test 121 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,131 +3782,131 @@ 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 -The total amount of wall time = 370.145142 -The maximum resident set size (KB) = 838252 +The total amount of wall time = 371.138716 +The maximum resident set size (KB) = 844272 Test 122 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_datm_cdeps Checking test 123 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 = 944.731115 -The maximum resident set size (KB) = 867596 +The total amount of wall time = 944.164967 +The maximum resident set size (KB) = 867772 Test 123 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_cfsr Checking test 124 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.221453 -The maximum resident set size (KB) = 733732 +The total amount of wall time = 141.853646 +The maximum resident set size (KB) = 732036 Test 124 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_restart_cfsr Checking test 125 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.376841 -The maximum resident set size (KB) = 728064 +The total amount of wall time = 86.834080 +The maximum resident set size (KB) = 728268 Test 125 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_gefs Checking test 126 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 = 134.309955 -The maximum resident set size (KB) = 613408 +The total amount of wall time = 135.453926 +The maximum resident set size (KB) = 614992 Test 126 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_iau_gefs Checking test 127 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 = 136.652188 -The maximum resident set size (KB) = 612728 +The total amount of wall time = 137.248239 +The maximum resident set size (KB) = 613324 Test 127 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_stochy_gefs Checking test 128 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 = 138.473886 -The maximum resident set size (KB) = 617932 +The total amount of wall time = 138.805939 +The maximum resident set size (KB) = 611600 Test 128 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_ciceC_cfsr Checking test 129 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.273692 -The maximum resident set size (KB) = 732908 +The total amount of wall time = 141.041676 +The maximum resident set size (KB) = 734976 Test 129 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_bulk_cfsr Checking test 130 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.304039 -The maximum resident set size (KB) = 732892 +The total amount of wall time = 141.583841 +The maximum resident set size (KB) = 735228 Test 130 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_bulk_gefs Checking test 131 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 = 133.521588 -The maximum resident set size (KB) = 614088 +The total amount of wall time = 134.869075 +The maximum resident set size (KB) = 611128 Test 131 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_mx025_cfsr Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 132 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 = 431.594319 -The maximum resident set size (KB) = 573324 +The total amount of wall time = 429.183226 +The maximum resident set size (KB) = 574036 Test 132 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_mx025_gefs Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3931,64 +3931,64 @@ Checking test 133 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.658725 -The maximum resident set size (KB) = 546672 +The total amount of wall time = 427.539353 +The maximum resident set size (KB) = 548000 Test 133 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_multiple_files_cfsr Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.154056 -The maximum resident set size (KB) = 722108 +The total amount of wall time = 141.232065 +The maximum resident set size (KB) = 720448 Test 134 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_3072x1536_cfsr Checking test 135 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 = 254.453866 -The maximum resident set size (KB) = 1981496 +The total amount of wall time = 256.502365 +The maximum resident set size (KB) = 1982836 Test 135 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_gfs Checking test 136 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.200677 -The maximum resident set size (KB) = 1977420 +The total amount of wall time = 255.408607 +The maximum resident set size (KB) = 1980456 Test 136 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/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 -The total amount of wall time = 141.450425 -The maximum resident set size (KB) = 735728 +The total amount of wall time = 141.747059 +The maximum resident set size (KB) = 731260 Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/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 @@ -3997,14 +3997,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 -The total amount of wall time = 21.876668 -The maximum resident set size (KB) = 236756 +The total amount of wall time = 22.069716 +The maximum resident set size (KB) = 226348 Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/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 @@ -4013,14 +4013,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 -The total amount of wall time = 27.232562 -The maximum resident set size (KB) = 226704 +The total amount of wall time = 27.008970 +The maximum resident set size (KB) = 233092 Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4105,14 +4105,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 -The total amount of wall time = 236.104200 -The maximum resident set size (KB) = 1539808 +The total amount of wall time = 236.357151 +The maximum resident set size (KB) = 1536564 Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_atmwav Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 141 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 = 90.751755 -The maximum resident set size (KB) = 541780 +The total amount of wall time = 89.714566 +The maximum resident set size (KB) = 544784 Test 141 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8 Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 142 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.413700 -The maximum resident set size (KB) = 2813744 +The total amount of wall time = 245.381320 +The maximum resident set size (KB) = 2813340 Test 142 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8_rad Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4258,14 +4258,14 @@ Checking test 143 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 = 280.914846 -The maximum resident set size (KB) = 2876824 +The total amount of wall time = 281.904121 +The maximum resident set size (KB) = 2873772 Test 143 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8_rad_micro Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4309,14 +4309,14 @@ Checking test 144 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.163127 -The maximum resident set size (KB) = 2883812 +The total amount of wall time = 288.154374 +The maximum resident set size (KB) = 2879840 Test 144 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4332,14 +4332,14 @@ Checking test 145 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 = 667.126488 -The maximum resident set size (KB) = 1398428 +The total amount of wall time = 661.882354 +The maximum resident set size (KB) = 1400124 Test 145 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq_debug Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 146 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 = 1442.937818 -The maximum resident set size (KB) = 1434824 +The total amount of wall time = 1439.230626 +The maximum resident set size (KB) = 1440192 Test 146 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq_faster Checking test 147 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4376,12 +4376,12 @@ Checking test 147 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 = 651.396153 -The maximum resident set size (KB) = 1399024 +The total amount of wall time = 666.083553 +The maximum resident set size (KB) = 1404224 Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 7 16:57:16 UTC 2023 -Elapsed time: 01h:30m:25s. Have a nice day! +Thu Mar 9 15:20:42 UTC 2023 +Elapsed time: 01h:34m:17s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 3a4dfc36aa..edd49dcb6e 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Sat Mar 4 08:38:19 MST 2023 +Wed Mar 8 09:40:28 MST 2023 Start Regression test -Compile 001 elapsed time 371 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 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 852 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 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1064 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 854 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 636 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 564 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 345 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 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_c48 +Compile 001 elapsed time 373 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 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 856 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 859 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 848 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 622 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 556 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 357 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 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 819.857014 +0:The total amount of wall time = 824.440628 0:The maximum resident set size (KB) = 675608 -Test 001 control_c48 PASS Tries: 2 +Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 172.678311 -0:The maximum resident set size (KB) = 442620 +0:The total amount of wall time = 176.826358 +0:The maximum resident set size (KB) = 442648 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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.391668 -0:The maximum resident set size (KB) = 452036 +0:The total amount of wall time = 293.678409 +0:The maximum resident set size (KB) = 452004 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 309.759657 -0:The maximum resident set size (KB) = 1226000 +0:The total amount of wall time = 310.021046 +0:The maximum resident set size (KB) = 1225556 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 714.611001 -0:The maximum resident set size (KB) = 791788 +0:The total amount of wall time = 716.599777 +0:The maximum resident set size (KB) = 791812 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 721.729341 -0:The maximum resident set size (KB) = 791156 +0:The total amount of wall time = 721.883137 +0:The maximum resident set size (KB) = 791028 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 664.456258 -0:The maximum resident set size (KB) = 863968 +0:The total amount of wall time = 662.599193 +0:The maximum resident set size (KB) = 864036 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 357.643260 -0:The maximum resident set size (KB) = 538620 +0:The total amount of wall time = 359.887123 +0:The maximum resident set size (KB) = 538688 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 703.711335 -0:The maximum resident set size (KB) = 791676 +0:The total amount of wall time = 708.386958 +0:The maximum resident set size (KB) = 791560 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 719.026178 -0:The maximum resident set size (KB) = 790636 +0:The total amount of wall time = 720.789035 +0:The maximum resident set size (KB) = 790924 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 533.144676 -0:The maximum resident set size (KB) = 543568 +0:The total amount of wall time = 530.612586 +0:The maximum resident set size (KB) = 543872 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 688.588470 -0:The maximum resident set size (KB) = 789252 +0:The total amount of wall time = 690.454761 +0:The maximum resident set size (KB) = 789124 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 624.876571 -0:The maximum resident set size (KB) = 858800 +0:The total amount of wall time = 625.494007 +0:The maximum resident set size (KB) = 858760 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 681.462360 -0:The maximum resident set size (KB) = 788280 +0:The total amount of wall time = 684.658902 +0:The maximum resident set size (KB) = 788472 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 518.868979 -0:The maximum resident set size (KB) = 539648 +0:The total amount of wall time = 513.766808 +0:The maximum resident set size (KB) = 540112 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/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 = 697.621199 -0:The maximum resident set size (KB) = 788296 +0:The total amount of wall time = 696.567278 +0:The maximum resident set size (KB) = 788488 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.791159 -0:The maximum resident set size (KB) = 607276 +0:The total amount of wall time = 203.347105 +0:The maximum resident set size (KB) = 606764 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 221.697144 -0:The maximum resident set size (KB) = 621240 +0:The total amount of wall time = 222.235199 +0:The maximum resident set size (KB) = 620912 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.389916 -0:The maximum resident set size (KB) = 610080 +0:The total amount of wall time = 204.610876 +0:The maximum resident set size (KB) = 609516 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.578462 -0:The maximum resident set size (KB) = 629196 +0:The total amount of wall time = 132.244094 +0:The maximum resident set size (KB) = 628024 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_diag_debug Checking test 021 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 = 88.202541 -0:The maximum resident set size (KB) = 495372 +0:The total amount of wall time = 88.614296 +0:The maximum resident set size (KB) = 494824 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/regional_debug Checking test 022 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.695324 -0:The maximum resident set size (KB) = 569428 +0:The total amount of wall time = 478.054598 +0:The maximum resident set size (KB) = 569548 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_debug Checking test 023 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 = 150.466074 -0:The maximum resident set size (KB) = 808492 +0:The total amount of wall time = 150.189045 +0:The maximum resident set size (KB) = 808652 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_debug Checking test 024 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 = 148.181270 -0:The maximum resident set size (KB) = 804564 +0:The total amount of wall time = 147.372037 +0:The maximum resident set size (KB) = 804500 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_diag_debug Checking test 025 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 = 158.881257 -0:The maximum resident set size (KB) = 891792 +0:The total amount of wall time = 159.798912 +0:The maximum resident set size (KB) = 891604 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 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 = 242.377148 -0:The maximum resident set size (KB) = 807128 +0:The total amount of wall time = 239.166114 +0:The maximum resident set size (KB) = 806768 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_progcld_thompson_debug Checking test 027 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 = 151.663807 -0:The maximum resident set size (KB) = 808500 +0:The total amount of wall time = 150.500044 +0:The maximum resident set size (KB) = 808596 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_v1beta_debug Checking test 028 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 = 150.508055 -0:The maximum resident set size (KB) = 803676 +0:The total amount of wall time = 149.394566 +0:The maximum resident set size (KB) = 803764 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_ras_debug Checking test 029 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 = 86.143585 -0:The maximum resident set size (KB) = 449260 +0:The total amount of wall time = 86.750733 +0:The maximum resident set size (KB) = 449064 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_stochy_debug Checking test 030 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 = 93.797004 -0:The maximum resident set size (KB) = 441616 +0:The total amount of wall time = 93.542052 +0:The maximum resident set size (KB) = 441300 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_debug_p8 Checking test 031 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 = 95.532548 -0:The maximum resident set size (KB) = 1224856 +0:The total amount of wall time = 96.369629 +0:The maximum resident set size (KB) = 1224636 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_hrrr_warm_debug Checking test 032 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 = 390.928584 -0:The maximum resident set size (KB) = 614332 +0:The total amount of wall time = 386.648972 +0:The maximum resident set size (KB) = 613684 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_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 = 390.860446 -0:The maximum resident set size (KB) = 617212 +0:The total amount of wall time = 387.851091 +0:The maximum resident set size (KB) = 616476 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 143.590719 -0:The maximum resident set size (KB) = 184876 +0:The total amount of wall time = 147.132594 +0:The maximum resident set size (KB) = 184428 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 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 = 685.378764 -0:The maximum resident set size (KB) = 672704 +0:The total amount of wall time = 686.838660 +0:The maximum resident set size (KB) = 673088 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 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 = 349.777034 -0:The maximum resident set size (KB) = 671128 +0:The total amount of wall time = 349.977048 +0:The maximum resident set size (KB) = 672020 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 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 = 624.954764 -0:The maximum resident set size (KB) = 718364 +0:The total amount of wall time = 625.744870 +0:The maximum resident set size (KB) = 718268 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 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 = 322.386264 -0:The maximum resident set size (KB) = 715480 +0:The total amount of wall time = 323.371820 +0:The maximum resident set size (KB) = 715488 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 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 = 349.006373 -0:The maximum resident set size (KB) = 669944 +0:The total amount of wall time = 349.172747 +0:The maximum resident set size (KB) = 670404 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 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 = 515.615044 -0:The maximum resident set size (KB) = 510748 +0:The total amount of wall time = 514.755627 +0:The maximum resident set size (KB) = 511216 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 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 = 177.171304 -0:The maximum resident set size (KB) = 506608 +0:The total amount of wall time = 177.148864 +0:The maximum resident set size (KB) = 506772 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 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 = 408.006233 -0:The maximum resident set size (KB) = 692456 +0:The total amount of wall time = 412.148256 +0:The maximum resident set size (KB) = 693880 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_debug_dyn32_phy32 Checking test 043 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 = 148.655135 -0:The maximum resident set size (KB) = 690544 +0:The total amount of wall time = 148.864944 +0:The maximum resident set size (KB) = 690632 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_debug_dyn32_phy32 Checking test 044 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 = 145.255934 -0:The maximum resident set size (KB) = 687520 +0:The total amount of wall time = 146.245798 +0:The maximum resident set size (KB) = 687604 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn64_phy32_debug Checking test 045 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 = 153.604413 -0:The maximum resident set size (KB) = 710928 +0:The total amount of wall time = 154.861299 +0:The maximum resident set size (KB) = 711024 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 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 = 501.393048 -0:The maximum resident set size (KB) = 3159468 +0:The total amount of wall time = 503.850329 +0:The maximum resident set size (KB) = 3159516 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 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 = 241.566172 -0:The maximum resident set size (KB) = 1240232 +0:The total amount of wall time = 254.203051 +0:The maximum resident set size (KB) = 1239768 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 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 = 276.890711 -0:The maximum resident set size (KB) = 3177988 +0:The total amount of wall time = 277.754628 +0:The maximum resident set size (KB) = 3177700 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/datm_cdeps_control_cfsr Checking test 049 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 = 178.650270 -0:The maximum resident set size (KB) = 672536 +0:The total amount of wall time = 179.402468 +0:The maximum resident set size (KB) = 674556 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 09:09:23 MST 2023 -Elapsed time: 00h:31m:04s. Have a nice day! +Wed Mar 8 10:17:15 MST 2023 +Elapsed time: 00h:36m:47s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d898b6dc1e..9d58891e77 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,45 @@ -Sat Mar 4 08:23:21 MST 2023 +Wed Mar 8 07:52:36 MST 2023 Start Regression test -Compile 001 elapsed time 1459 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 1488 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 1367 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 426 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 383 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1057 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 1060 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1806 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 1024 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 985 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 924 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 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1291 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 405 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 +Test 008 compile FAIL + +Test 008 compile FAIL + +Compile 001 elapsed time 1388 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 1450 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 1360 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 433 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 379 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1076 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 1087 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1027 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 916 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 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1262 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 406 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 257 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 813 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 274 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 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1107 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 337 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 1572 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 1093 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 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 940 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 974 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 890 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 853 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1013 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8_mixedmode +Compile 020 elapsed time 1120 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 348 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 1564 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 1107 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 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 434 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 937 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 969 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 883 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 299 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1025 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +104,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 = 317.722084 -0:The maximum resident set size (KB) = 2698836 +0:The total amount of wall time = 319.764874 +0:The maximum resident set size (KB) = 2698756 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +175,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 = 270.340850 -0:The maximum resident set size (KB) = 1437848 +0:The total amount of wall time = 286.897062 +0:The maximum resident set size (KB) = 1437628 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +247,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 = 321.822290 -0:The maximum resident set size (KB) = 2716540 +0:The total amount of wall time = 324.232075 +0:The maximum resident set size (KB) = 2716500 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +307,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 = 189.391220 -0:The maximum resident set size (KB) = 2577548 +0:The total amount of wall time = 193.400208 +0:The maximum resident set size (KB) = 2576828 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +367,14 @@ Checking test 005 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 = 258.499484 -0:The maximum resident set size (KB) = 3176020 +0:The total amount of wall time = 259.582061 +0:The maximum resident set size (KB) = 3176256 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +427,14 @@ Checking test 006 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.368666 -0:The maximum resident set size (KB) = 2723724 +0:The total amount of wall time = 324.071740 +0:The maximum resident set size (KB) = 2721408 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +487,14 @@ Checking test 007 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 = 266.229434 -0:The maximum resident set size (KB) = 2682768 +0:The total amount of wall time = 270.034851 +0:The maximum resident set size (KB) = 2682656 -Test 007 cpld_mpi_p8 PASS Tries: 2 +Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +559,14 @@ Checking test 008 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 = 308.291230 -0:The maximum resident set size (KB) = 2716120 +0:The total amount of wall time = 323.834970 +0:The maximum resident set size (KB) = 2716464 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +619,14 @@ Checking test 009 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 = 762.507311 -0:The maximum resident set size (KB) = 3348220 +0:The total amount of wall time = 797.878761 +0:The maximum resident set size (KB) = 3348412 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +679,14 @@ Checking test 010 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 = 418.359945 -0:The maximum resident set size (KB) = 3271936 +0:The total amount of wall time = 445.663162 +0:The maximum resident set size (KB) = 3272024 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -747,14 +750,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 = 283.473380 -0:The maximum resident set size (KB) = 1436136 +0:The total amount of wall time = 297.129627 +0:The maximum resident set size (KB) = 1436396 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -816,14 +819,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 = 185.859407 -0:The maximum resident set size (KB) = 1452360 +0:The total amount of wall time = 196.356868 +0:The maximum resident set size (KB) = 1452420 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -876,14 +879,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 = 472.840231 -0:The maximum resident set size (KB) = 2788276 +0:The total amount of wall time = 474.638104 +0:The maximum resident set size (KB) = 2788156 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -935,14 +938,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 = 348.987118 -0:The maximum resident set size (KB) = 1460684 +0:The total amount of wall time = 350.390380 +0:The maximum resident set size (KB) = 1460504 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1004,14 +1007,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 = 242.527548 -0:The maximum resident set size (KB) = 1455960 +0:The total amount of wall time = 277.132353 +0:The maximum resident set size (KB) = 1455992 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1061,14 +1064,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 = 600.470886 -0:The maximum resident set size (KB) = 2580324 +0:The total amount of wall time = 606.277361 +0:The maximum resident set size (KB) = 2580396 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1118,14 +1121,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 = 161.591394 -0:The maximum resident set size (KB) = 2599008 +0:The total amount of wall time = 161.530110 +0:The maximum resident set size (KB) = 2598908 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1175,86 +1178,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 = 85.626264 -0:The maximum resident set size (KB) = 2015892 +0:The total amount of wall time = 84.386872 +0:The maximum resident set size (KB) = 2016028 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8_faster -Checking test 019 cpld_control_p8_faster 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 = 297.608858 -0:The maximum resident set size (KB) = 2716424 - -Test 019 cpld_control_p8_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1281,28 +1212,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.099496 -0:The maximum resident set size (KB) = 456784 +0:The total amount of wall time = 142.481044 +0:The maximum resident set size (KB) = 456792 Test 020 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 140.013545 -0:The maximum resident set size (KB) = 456728 +0:The total amount of wall time = 139.228397 +0:The maximum resident set size (KB) = 456860 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1313,32 +1244,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 142.687242 -0:The maximum resident set size (KB) = 456760 +0:The total amount of wall time = 147.198123 +0:The maximum resident set size (KB) = 456784 Test 022 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.084582 -0:The maximum resident set size (KB) = 456888 +0:The total amount of wall time = 149.425568 +0:The maximum resident set size (KB) = 456632 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1377,14 +1308,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 = 443.004720 -0:The maximum resident set size (KB) = 628912 +0:The total amount of wall time = 444.291297 +0:The maximum resident set size (KB) = 628928 Test 024 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,14 +1326,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 591.231468 -0:The maximum resident set size (KB) = 557052 +0:The total amount of wall time = 597.132792 +0:The maximum resident set size (KB) = 557028 Test 025 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1413,14 +1344,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 602.971556 -0:The maximum resident set size (KB) = 889576 +0:The total amount of wall time = 603.043463 +0:The maximum resident set size (KB) = 891052 Test 026 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1463,14 +1394,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 = 533.105788 -0:The maximum resident set size (KB) = 1015040 +0:The total amount of wall time = 530.180295 +0:The maximum resident set size (KB) = 1016128 Test 027 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1481,28 +1412,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.687827 -0:The maximum resident set size (KB) = 455060 +0:The total amount of wall time = 98.435793 +0:The maximum resident set size (KB) = 455096 Test 028 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/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 = 51.809516 -0:The maximum resident set size (KB) = 225852 +0:The total amount of wall time = 52.078760 +0:The maximum resident set size (KB) = 225996 Test 029 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1513,14 +1444,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.277545 -0:The maximum resident set size (KB) = 456448 +0:The total amount of wall time = 90.672073 +0:The maximum resident set size (KB) = 456672 Test 030 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1535,14 +1466,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.812813 -0:The maximum resident set size (KB) = 456608 +0:The total amount of wall time = 149.741960 +0:The maximum resident set size (KB) = 456800 Test 031 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1557,14 +1488,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.119698 -0:The maximum resident set size (KB) = 456668 +0:The total amount of wall time = 146.957344 +0:The maximum resident set size (KB) = 456796 Test 032 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1611,14 +1542,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 = 179.282302 -0:The maximum resident set size (KB) = 1422884 +0:The total amount of wall time = 180.878236 +0:The maximum resident set size (KB) = 1422872 Test 033 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_lndp Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1637,14 +1568,14 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.711042 -0:The maximum resident set size (KB) = 1423132 +0:The total amount of wall time = 339.227094 +0:The maximum resident set size (KB) = 1423164 Test 034 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1683,14 +1614,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 = 94.672963 -0:The maximum resident set size (KB) = 582332 +0:The total amount of wall time = 95.799222 +0:The maximum resident set size (KB) = 582372 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1733,14 +1664,14 @@ Checking test 036 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 = 182.225274 -0:The maximum resident set size (KB) = 1416972 +0:The total amount of wall time = 194.649807 +0:The maximum resident set size (KB) = 1417092 Test 036 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1783,14 +1714,14 @@ Checking test 037 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 = 178.255161 -0:The maximum resident set size (KB) = 1505192 +0:The total amount of wall time = 180.265070 +0:The maximum resident set size (KB) = 1505088 Test 037 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1837,14 +1768,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 -0:The total amount of wall time = 245.275882 -0:The maximum resident set size (KB) = 1480740 +0:The total amount of wall time = 254.061013 +0:The maximum resident set size (KB) = 1480704 Test 038 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1891,14 +1822,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 -0:The total amount of wall time = 205.938607 -0:The maximum resident set size (KB) = 1429764 +0:The total amount of wall time = 208.419096 +0:The maximum resident set size (KB) = 1429788 Test 039 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1909,28 +1840,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 344.556918 -0:The maximum resident set size (KB) = 603156 +0:The total amount of wall time = 344.138523 +0:The maximum resident set size (KB) = 603116 Test 040 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_restart Checking test 041 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.722348 -0:The maximum resident set size (KB) = 593552 +0:The total amount of wall time = 176.510547 +0:The maximum resident set size (KB) = 593548 Test 041 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_decomp Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,14 +1872,14 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 355.486435 -0:The maximum resident set size (KB) = 597236 +0:The total amount of wall time = 364.601721 +0:The maximum resident set size (KB) = 597240 Test 042 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_2threads Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,14 +1890,14 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 211.377373 -0:The maximum resident set size (KB) = 609772 +0:The total amount of wall time = 209.276611 +0:The maximum resident set size (KB) = 609752 Test 043 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_noquilt Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1974,28 +1905,28 @@ Checking test 044 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 = 366.804398 -0:The maximum resident set size (KB) = 597604 +0:The total amount of wall time = 369.014614 +0:The maximum resident set size (KB) = 597632 Test 044 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_netcdf_parallel Checking test 045 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 ............ALT CHECK......OK -0:The total amount of wall time = 340.073684 -0:The maximum resident set size (KB) = 595104 +0:The total amount of wall time = 344.770467 +0:The maximum resident set size (KB) = 595076 Test 045 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_2dwrtdecomp Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2006,14 +1937,14 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.303978 -0:The maximum resident set size (KB) = 603112 +0:The total amount of wall time = 347.526502 +0:The maximum resident set size (KB) = 603168 Test 046 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_wofs Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2024,14 +1955,14 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 423.402039 -0:The maximum resident set size (KB) = 274532 +0:The total amount of wall time = 427.166258 +0:The maximum resident set size (KB) = 274564 Test 047 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2078,14 +2009,14 @@ Checking test 048 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.594972 -0:The maximum resident set size (KB) = 826128 +0:The total amount of wall time = 474.172232 +0:The maximum resident set size (KB) = 826476 Test 048 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_spp_sppt_shum_skeb Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2096,14 +2027,14 @@ Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 324.832869 -0:The maximum resident set size (KB) = 949156 +0:The total amount of wall time = 325.298543 +0:The maximum resident set size (KB) = 949272 Test 049 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_decomp Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2150,14 +2081,14 @@ Checking test 050 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 = 502.614591 -0:The maximum resident set size (KB) = 823608 +0:The total amount of wall time = 499.846370 +0:The maximum resident set size (KB) = 823680 Test 050 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_2threads Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2204,14 +2135,14 @@ Checking test 051 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 = 464.918130 -0:The maximum resident set size (KB) = 892672 +0:The total amount of wall time = 469.702290 +0:The maximum resident set size (KB) = 892632 Test 051 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_restart Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2250,14 +2181,14 @@ Checking test 052 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.467605 -0:The maximum resident set size (KB) = 572892 +0:The total amount of wall time = 241.521778 +0:The maximum resident set size (KB) = 572740 Test 052 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2304,14 +2235,14 @@ Checking test 053 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 = 469.868210 -0:The maximum resident set size (KB) = 826424 +0:The total amount of wall time = 466.318682 +0:The maximum resident set size (KB) = 826452 Test 053 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_decomp Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2358,14 +2289,14 @@ Checking test 054 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 = 496.095295 -0:The maximum resident set size (KB) = 825492 +0:The total amount of wall time = 496.741837 +0:The maximum resident set size (KB) = 825532 Test 054 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_restart Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2404,14 +2335,14 @@ Checking test 055 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 = 351.347619 -0:The maximum resident set size (KB) = 570012 +0:The total amount of wall time = 354.622434 +0:The maximum resident set size (KB) = 570140 Test 055 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2458,14 +2389,14 @@ Checking test 056 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 = 450.438606 -0:The maximum resident set size (KB) = 821232 +0:The total amount of wall time = 453.301928 +0:The maximum resident set size (KB) = 821596 Test 056 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_decomp Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2512,14 +2443,14 @@ Checking test 057 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 = 470.187691 -0:The maximum resident set size (KB) = 820272 +0:The total amount of wall time = 480.925779 +0:The maximum resident set size (KB) = 820388 Test 057 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_2threads Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2566,14 +2497,14 @@ Checking test 058 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 = 433.263719 -0:The maximum resident set size (KB) = 887436 +0:The total amount of wall time = 432.803841 +0:The maximum resident set size (KB) = 888012 Test 058 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_restart Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2612,14 +2543,14 @@ Checking test 059 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 = 340.978060 -0:The maximum resident set size (KB) = 568804 +0:The total amount of wall time = 342.513922 +0:The maximum resident set size (KB) = 568828 Test 059 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1beta Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2666,14 +2597,14 @@ Checking test 060 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 = 462.804237 -0:The maximum resident set size (KB) = 820012 +0:The total amount of wall time = 455.419895 +0:The maximum resident set size (KB) = 820024 Test 060 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1nssl Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,14 +2619,14 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 572.240929 -0:The maximum resident set size (KB) = 508236 +0:The total amount of wall time = 575.110996 +0:The maximum resident set size (KB) = 508324 Test 061 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1nssl_nohailnoccn Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2710,14 +2641,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 552.951471 -0:The maximum resident set size (KB) = 501328 +0:The total amount of wall time = 558.830331 +0:The maximum resident set size (KB) = 501304 Test 062 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2726,14 +2657,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 127.891040 -0:The maximum resident set size (KB) = 639128 +0:The total amount of wall time = 128.523263 +0:The maximum resident set size (KB) = 639096 Test 063 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_smoke_conus13km_hrrr_warm Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2742,14 +2673,14 @@ Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 144.427211 -0:The maximum resident set size (KB) = 652900 +0:The total amount of wall time = 145.404911 +0:The maximum resident set size (KB) = 652796 Test 064 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2758,14 +2689,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.149558 -0:The maximum resident set size (KB) = 641228 +0:The total amount of wall time = 129.005964 +0:The maximum resident set size (KB) = 641024 Test 065 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm_2threads Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2774,14 +2705,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.714783 -0:The maximum resident set size (KB) = 655560 +0:The total amount of wall time = 81.553036 +0:The maximum resident set size (KB) = 655352 Test 066 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm_2threads Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2790,14 +2721,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 82.059368 -0:The maximum resident set size (KB) = 658700 +0:The total amount of wall time = 81.308455 +0:The maximum resident set size (KB) = 659160 Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmg Checking test 068 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2808,14 +2739,14 @@ Checking test 068 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 396.816318 -0:The maximum resident set size (KB) = 528988 +0:The total amount of wall time = 397.699017 +0:The maximum resident set size (KB) = 529012 Test 068 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2826,14 +2757,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 377.641087 -0:The maximum resident set size (KB) = 529024 +0:The total amount of wall time = 391.307898 +0:The maximum resident set size (KB) = 529016 Test 069 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2844,26 +2775,26 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.167107 -0:The maximum resident set size (KB) = 487632 +0:The total amount of wall time = 204.705731 +0:The maximum resident set size (KB) = 487808 Test 070 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 128.554951 -0:The maximum resident set size (KB) = 205452 +0:The total amount of wall time = 129.184031 +0:The maximum resident set size (KB) = 205612 Test 071 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_faster Checking test 072 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2910,14 +2841,14 @@ Checking test 072 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 = 170.775495 -0:The maximum resident set size (KB) = 1422792 +0:The total amount of wall time = 171.617245 +0:The maximum resident set size (KB) = 1422764 Test 072 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_control_faster Checking test 073 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2928,42 +2859,42 @@ Checking test 073 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 321.816301 -0:The maximum resident set size (KB) = 603020 +0:The total amount of wall time = 323.691585 +0:The maximum resident set size (KB) = 603048 Test 073 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm_debug Checking test 074 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.075153 -0:The maximum resident set size (KB) = 672196 +0:The total amount of wall time = 766.531668 +0:The maximum resident set size (KB) = 672144 Test 074 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm_debug Checking test 075 rrfs_conus13km_radar_tten_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 = 765.432647 -0:The maximum resident set size (KB) = 673992 +0:The total amount of wall time = 766.863624 +0:The maximum resident set size (KB) = 673940 Test 075 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid_debug Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2990,334 +2921,334 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 175.172002 -0:The maximum resident set size (KB) = 621536 +0:The total amount of wall time = 174.774392 +0:The maximum resident set size (KB) = 621612 Test 076 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wrtGauss_netcdf_parallel_debug Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.981028 -0:The maximum resident set size (KB) = 621404 +0:The total amount of wall time = 163.204019 +0:The maximum resident set size (KB) = 621344 Test 077 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy_debug Checking test 078 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 = 182.777546 -0:The maximum resident set size (KB) = 624960 +0:The total amount of wall time = 184.674395 +0:The maximum resident set size (KB) = 625128 Test 078 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_lndp_debug Checking test 079 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 = 165.865602 -0:The maximum resident set size (KB) = 627200 +0:The total amount of wall time = 165.369379 +0:The maximum resident set size (KB) = 627056 Test 079 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmg_debug Checking test 080 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 = 256.479685 -0:The maximum resident set size (KB) = 671324 +0:The total amount of wall time = 257.832407 +0:The maximum resident set size (KB) = 671408 Test 080 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmgt_debug Checking test 081 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 = 252.946069 -0:The maximum resident set size (KB) = 671068 +0:The total amount of wall time = 253.427256 +0:The maximum resident set size (KB) = 671112 Test 081 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_ras_debug Checking test 082 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 = 166.888112 -0:The maximum resident set size (KB) = 632380 +0:The total amount of wall time = 167.932174 +0:The maximum resident set size (KB) = 632608 Test 082 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_diag_debug Checking test 083 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 = 168.771127 -0:The maximum resident set size (KB) = 677988 +0:The total amount of wall time = 169.401338 +0:The maximum resident set size (KB) = 677884 Test 083 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_debug_p8 Checking test 084 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 = 182.516230 -0:The maximum resident set size (KB) = 1444192 +0:The total amount of wall time = 184.352772 +0:The maximum resident set size (KB) = 1444220 Test 084 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_debug Checking test 085 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 = 1040.203057 -0:The maximum resident set size (KB) = 628948 +0:The total amount of wall time = 1040.777286 +0:The maximum resident set size (KB) = 629040 Test 085 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_debug Checking test 086 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 = 295.070471 -0:The maximum resident set size (KB) = 989928 +0:The total amount of wall time = 300.049687 +0:The maximum resident set size (KB) = 989988 Test 086 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_debug Checking test 087 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 = 290.063815 -0:The maximum resident set size (KB) = 988752 +0:The total amount of wall time = 291.051650 +0:The maximum resident set size (KB) = 988888 Test 087 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_unified_drag_suite_debug Checking test 088 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 = 295.610239 -0:The maximum resident set size (KB) = 989888 +0:The total amount of wall time = 296.002978 +0:The maximum resident set size (KB) = 989976 Test 088 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_diag_debug Checking test 089 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 = 308.696843 -0:The maximum resident set size (KB) = 1074148 +0:The total amount of wall time = 308.903752 +0:The maximum resident set size (KB) = 1074116 Test 089 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_cires_ugwp_debug Checking test 090 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 = 300.259180 -0:The maximum resident set size (KB) = 988628 +0:The total amount of wall time = 301.045473 +0:The maximum resident set size (KB) = 988664 Test 090 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_unified_ugwp_debug Checking test 091 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 = 300.759613 -0:The maximum resident set size (KB) = 991912 +0:The total amount of wall time = 301.872070 +0:The maximum resident set size (KB) = 991944 Test 091 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_lndp_debug Checking test 092 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 = 297.447274 -0:The maximum resident set size (KB) = 990764 +0:The total amount of wall time = 298.054004 +0:The maximum resident set size (KB) = 990704 Test 092 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_flake_debug Checking test 093 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 = 296.749096 -0:The maximum resident set size (KB) = 989964 +0:The total amount of wall time = 295.566928 +0:The maximum resident set size (KB) = 989928 Test 093 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_progcld_thompson_debug Checking test 094 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 = 294.823381 -0:The maximum resident set size (KB) = 989840 +0:The total amount of wall time = 295.159483 +0:The maximum resident set size (KB) = 990204 Test 094 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_noah_debug Checking test 095 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 = 288.798690 -0:The maximum resident set size (KB) = 988496 +0:The total amount of wall time = 288.599234 +0:The maximum resident set size (KB) = 988488 Test 095 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_debug Checking test 096 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 = 295.600824 -0:The maximum resident set size (KB) = 991336 +0:The total amount of wall time = 296.505569 +0:The maximum resident set size (KB) = 991308 Test 096 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_noah_sfcdiff_cires_ugwp_debug Checking test 097 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 = 479.818064 -0:The maximum resident set size (KB) = 989440 +0:The total amount of wall time = 480.570032 +0:The maximum resident set size (KB) = 989468 Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1beta_debug Checking test 098 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 = 291.424848 -0:The maximum resident set size (KB) = 986352 +0:The total amount of wall time = 290.792431 +0:The maximum resident set size (KB) = 986400 Test 098 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wam_debug Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.511233 -0:The maximum resident set size (KB) = 239064 +0:The total amount of wall time = 296.683706 +0:The maximum resident set size (KB) = 238904 Test 099 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3328,14 +3259,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 306.565424 -0:The maximum resident set size (KB) = 848296 +0:The total amount of wall time = 304.542986 +0:The maximum resident set size (KB) = 848320 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn32_phy32 Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3382,14 +3313,14 @@ Checking test 101 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 = 420.274253 -0:The maximum resident set size (KB) = 707012 +0:The total amount of wall time = 384.995312 +0:The maximum resident set size (KB) = 707108 Test 101 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_dyn32_phy32 Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3436,14 +3367,14 @@ Checking test 102 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.013142 -0:The maximum resident set size (KB) = 705432 +0:The total amount of wall time = 206.197651 +0:The maximum resident set size (KB) = 705460 Test 102 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_2threads_dyn32_phy32 Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3490,14 +3421,14 @@ Checking test 103 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 = 373.639096 -0:The maximum resident set size (KB) = 757200 +0:The total amount of wall time = 378.214873 +0:The maximum resident set size (KB) = 757080 Test 103 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_2threads_dyn32_phy32 Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3544,14 +3475,14 @@ Checking test 104 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.714289 -0:The maximum resident set size (KB) = 758400 +0:The total amount of wall time = 201.481628 +0:The maximum resident set size (KB) = 758252 Test 104 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_decomp_dyn32_phy32 Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3598,14 +3529,14 @@ Checking test 105 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 = 214.956014 -0:The maximum resident set size (KB) = 703956 +0:The total amount of wall time = 215.882832 +0:The maximum resident set size (KB) = 704004 Test 105 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_restart_dyn32_phy32 Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3644,14 +3575,14 @@ Checking test 106 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 = 290.381455 -0:The maximum resident set size (KB) = 544784 +0:The total amount of wall time = 291.975477 +0:The maximum resident set size (KB) = 544688 Test 106 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_restart_dyn32_phy32 Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3690,14 +3621,14 @@ Checking test 107 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 = 105.121739 -0:The maximum resident set size (KB) = 536724 +0:The total amount of wall time = 105.076574 +0:The maximum resident set size (KB) = 536692 Test 107 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn64_phy32 Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,81 +3675,81 @@ Checking test 108 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 = 267.283074 -0:The maximum resident set size (KB) = 726904 +0:The total amount of wall time = 269.557617 +0:The maximum resident set size (KB) = 726892 Test 108 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_debug_dyn32_phy32 Checking test 109 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 = 290.893100 -0:The maximum resident set size (KB) = 876152 +0:The total amount of wall time = 290.888612 +0:The maximum resident set size (KB) = 876224 Test 109 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_debug_dyn32_phy32 Checking test 110 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 = 285.577056 -0:The maximum resident set size (KB) = 874344 +0:The total amount of wall time = 286.647071 +0:The maximum resident set size (KB) = 874384 Test 110 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn64_phy32_debug Checking test 111 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 = 294.938910 -0:The maximum resident set size (KB) = 893436 +0:The total amount of wall time = 296.425349 +0:The maximum resident set size (KB) = 893456 Test 111 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 261.575767 -0:The maximum resident set size (KB) = 739256 +0:The total amount of wall time = 301.903872 +0:The maximum resident set size (KB) = 739668 Test 112 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_thompson_gfdlsf Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 288.951753 -0:The maximum resident set size (KB) = 1090792 +0:The total amount of wall time = 296.871184 +0:The maximum resident set size (KB) = 1091316 Test 113 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_ocn Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3827,14 +3758,14 @@ Checking test 114 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 = 425.216095 -0:The maximum resident set size (KB) = 738620 +0:The total amount of wall time = 455.140143 +0:The maximum resident set size (KB) = 738460 Test 114 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_wav Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3843,14 +3774,14 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 985.167845 -0:The maximum resident set size (KB) = 765892 +0:The total amount of wall time = 1071.036248 +0:The maximum resident set size (KB) = 766064 Test 115 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_ocn_wav Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3861,28 +3792,28 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1096.268846 -0:The maximum resident set size (KB) = 789812 +0:The total amount of wall time = 1150.428557 +0:The maximum resident set size (KB) = 789780 Test 116 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_1nest_atm Checking test 117 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.550525 -0:The maximum resident set size (KB) = 293516 +0:The total amount of wall time = 379.073868 +0:The maximum resident set size (KB) = 293396 Test 117 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_telescopic_2nests_atm Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3891,28 +3822,28 @@ Checking test 118 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 = 417.635517 -0:The maximum resident set size (KB) = 309060 +0:The total amount of wall time = 427.104947 +0:The maximum resident set size (KB) = 309192 Test 118 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_1nest_atm Checking test 119 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.652102 -0:The maximum resident set size (KB) = 206000 +0:The total amount of wall time = 170.782832 +0:The maximum resident set size (KB) = 206176 Test 119 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_multiple_4nests_atm Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3930,14 +3861,14 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 490.100179 -0:The maximum resident set size (KB) = 292492 +0:The total amount of wall time = 493.173588 +0:The maximum resident set size (KB) = 292436 Test 120 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_specified_moving_1nest_atm Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3946,28 +3877,28 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 234.207271 -0:The maximum resident set size (KB) = 306368 +0:The total amount of wall time = 240.477051 +0:The maximum resident set size (KB) = 306740 Test 121 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm Checking test 122 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 = 222.709775 -0:The maximum resident set size (KB) = 306660 +0:The total amount of wall time = 227.593274 +0:The maximum resident set size (KB) = 306504 Test 122 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3976,42 +3907,42 @@ Checking test 123 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 = 279.546829 +0:The total amount of wall time = 279.030271 0:The maximum resident set size (KB) = 353680 Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_storm_following_1nest_atm Checking test 124 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.446231 -0:The maximum resident set size (KB) = 222128 +0:The total amount of wall time = 66.753984 +0:The maximum resident set size (KB) = 222524 Test 124 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 125 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 = 821.424240 -0:The maximum resident set size (KB) = 387180 +0:The total amount of wall time = 824.913025 +0:The maximum resident set size (KB) = 386844 Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4022,14 +3953,14 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 759.948828 -0:The maximum resident set size (KB) = 416860 +0:The total amount of wall time = 851.470155 +0:The maximum resident set size (KB) = 417540 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_docn Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +3968,14 @@ Checking test 127 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 = 382.603691 -0:The maximum resident set size (KB) = 754380 +0:The total amount of wall time = 394.663707 +0:The maximum resident set size (KB) = 753896 Test 127 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_docn_oisst Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,98 +3983,131 @@ Checking test 128 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 = 394.246436 -0:The maximum resident set size (KB) = 733428 +0:The total amount of wall time = 392.254165 +0:The maximum resident set size (KB) = 733696 Test 128 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_datm_cdeps Checking test 129 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 = 1281.393566 -0:The maximum resident set size (KB) = 887892 +0:The total amount of wall time = 1280.608354 +0:The maximum resident set size (KB) = 887952 Test 129 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_cfsr Checking test 130 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 = 162.632253 -0:The maximum resident set size (KB) = 728048 +0:The total amount of wall time = 168.324377 +0:The maximum resident set size (KB) = 716692 Test 130 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_restart_cfsr Checking test 131 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.812130 -0:The maximum resident set size (KB) = 715948 +0:The total amount of wall time = 100.927361 +0:The maximum resident set size (KB) = 704844 Test 131 datm_cdeps_restart_cfsr PASS -Test 132 datm_cdeps_control_gefs FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_gefs +Checking test 132 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.263214 +0:The maximum resident set size (KB) = 607456 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_iau_gefs +Test 132 datm_cdeps_control_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_iau_gefs Checking test 133 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 = 164.867810 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 164.567398 +0:The maximum resident set size (KB) = 607500 Test 133 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_stochy_gefs Checking test 134 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 = 159.847923 +0:The total amount of wall time = 164.110661 0:The maximum resident set size (KB) = 607456 Test 134 datm_cdeps_stochy_gefs PASS -Test 135 datm_cdeps_ciceC_cfsr FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_ciceC_cfsr +Checking test 135 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 = 168.615624 +0:The maximum resident set size (KB) = 716724 + +Test 135 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_bulk_cfsr + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_bulk_cfsr Checking test 136 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 = 165.629424 -0:The maximum resident set size (KB) = 716672 +0:The total amount of wall time = 169.745325 +0:The maximum resident set size (KB) = 727832 Test 136 datm_cdeps_bulk_cfsr PASS -Test 137 datm_cdeps_bulk_gefs FAIL + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_bulk_gefs +Checking test 137 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.123087 +0:The maximum resident set size (KB) = 607456 + +Test 137 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_mx025_cfsr Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4152,14 +4116,14 @@ Checking test 138 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 = 699.571322 -0:The maximum resident set size (KB) = 514276 +0:The total amount of wall time = 751.664427 +0:The maximum resident set size (KB) = 514352 Test 138 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_mx025_gefs Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4168,77 +4132,77 @@ Checking test 139 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 = 696.776064 -0:The maximum resident set size (KB) = 494792 +0:The total amount of wall time = 777.327410 +0:The maximum resident set size (KB) = 494816 Test 139 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_multiple_files_cfsr Checking test 140 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 = 161.416812 -0:The maximum resident set size (KB) = 716740 +0:The total amount of wall time = 167.361016 +0:The maximum resident set size (KB) = 716704 Test 140 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_3072x1536_cfsr Checking test 141 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 = 257.429581 -0:The maximum resident set size (KB) = 1941516 +0:The total amount of wall time = 257.635288 +0:The maximum resident set size (KB) = 1942080 -Test 141 datm_cdeps_3072x1536_cfsr PASS Tries: 2 +Test 141 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_gfs Checking test 142 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 = 267.957695 -0:The maximum resident set size (KB) = 1941316 +0:The total amount of wall time = 258.345758 +0:The maximum resident set size (KB) = 1940280 Test 142 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_debug_cfsr Checking test 143 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 = 459.559580 -0:The maximum resident set size (KB) = 706716 +0:The total amount of wall time = 459.786293 +0:The maximum resident set size (KB) = 706652 Test 143 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_cfsr_faster Checking test 144 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.441916 -0:The maximum resident set size (KB) = 716796 +0:The total amount of wall time = 168.113048 +0:The maximum resident set size (KB) = 716768 Test 144 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_lnd_gswp3 Checking test 145 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 @@ -4247,14 +4211,14 @@ Checking test 145 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.302166 -0:The maximum resident set size (KB) = 224552 +0:The total amount of wall time = 10.405393 +0:The maximum resident set size (KB) = 208264 Test 145 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_lnd_gswp3_rst Checking test 146 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 @@ -4263,14 +4227,14 @@ Checking test 146 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.752870 -0:The maximum resident set size (KB) = 208252 +0:The total amount of wall time = 16.477821 +0:The maximum resident set size (KB) = 216404 Test 146 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4355,14 +4319,14 @@ Checking test 147 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 = 224.289148 -0:The maximum resident set size (KB) = 1461972 +0:The total amount of wall time = 236.023630 +0:The maximum resident set size (KB) = 1462016 Test 147 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4406,14 +4370,14 @@ Checking test 148 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.076015 -0:The maximum resident set size (KB) = 474696 +0:The total amount of wall time = 99.381651 +0:The maximum resident set size (KB) = 474784 Test 148 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4457,14 +4421,14 @@ Checking test 149 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 = 249.049944 -0:The maximum resident set size (KB) = 2703328 +0:The total amount of wall time = 248.720169 +0:The maximum resident set size (KB) = 2703396 Test 149 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4508,14 +4472,14 @@ Checking test 150 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 = 293.328978 -0:The maximum resident set size (KB) = 2757524 +0:The total amount of wall time = 306.423304 +0:The maximum resident set size (KB) = 2757536 Test 150 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4559,14 +4523,14 @@ Checking test 151 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 = 306.670771 -0:The maximum resident set size (KB) = 2763892 +0:The total amount of wall time = 307.879757 +0:The maximum resident set size (KB) = 2763912 Test 151 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4582,14 +4546,14 @@ Checking test 152 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 = 1103.757883 -0:The maximum resident set size (KB) = 1146040 +0:The total amount of wall time = 1097.272100 +0:The maximum resident set size (KB) = 1146016 Test 152 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_atmaq_faster Checking test 153 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4605,63 +4569,94 @@ Checking test 153 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 = 1073.041881 -0:The maximum resident set size (KB) = 1145992 +0:The total amount of wall time = 1148.416336 +0:The maximum resident set size (KB) = 1146304 Test 153 regional_atmaq_faster PASS FAILED TESTS: -Test datm_cdeps_control_gefs 132 failed in run_test failed -Test datm_cdeps_ciceC_cfsr 135 failed in run_test failed -Test datm_cdeps_bulk_gefs 137 failed in run_test failed +Test compile_008 failed in run_compile failed REGRESSION TEST FAILED -Sat Mar 4 09:38:40 MST 2023 -Elapsed time: 01h:15m:19s. Have a nice day! -Sat Mar 4 10:29:57 MST 2023 +Wed Mar 8 09:11:48 MST 2023 +Elapsed time: 01h:19m:12s. Have a nice day! +Wed Mar 8 09:23:22 MST 2023 Start Regression test -Compile 001 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_control_gefs -Checking test 001 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.163139 -0:The maximum resident set size (KB) = 607500 - -Test 001 datm_cdeps_control_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_ciceC_cfsr -Checking test 002 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 = 168.804580 -0:The maximum resident set size (KB) = 727672 - -Test 002 datm_cdeps_ciceC_cfsr PASS - +Compile 001 elapsed time 1708 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 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_bulk_gefs -Checking test 003 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_9994/cpld_control_p8_faster +Checking test 001 cpld_control_p8_faster 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 = 160.566821 -0:The maximum resident set size (KB) = 607448 +0:The total amount of wall time = 313.676895 +0:The maximum resident set size (KB) = 2716192 -Test 003 datm_cdeps_bulk_gefs PASS +Test 001 cpld_control_p8_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 10:41:42 MST 2023 -Elapsed time: 00h:11m:46s. Have a nice day! +Wed Mar 8 10:09:35 MST 2023 +Elapsed time: 00h:46m:13s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 398350bc8b..e6fddb312a 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 15:35:47 EST 2023 +Wed Mar 8 14:05:28 EST 2023 Start Regression test -Compile 001 elapsed time 956 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 1005 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 939 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 444 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 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 812 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 795 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1111 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 817 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 612 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 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 926 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 275 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 213 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 649 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 250 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 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 708 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 249 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 853 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 711 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 262 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 152 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 269 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 724 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 728 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 703 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 274 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 850 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8_mixedmode +Compile 001 elapsed time 1004 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 1006 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 893 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 385 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 349 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 845 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 891 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1098 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 861 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 689 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 634 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1081 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 573 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 333 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 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 856 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 332 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 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 845 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 387 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 1061 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 1038 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 613 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 415 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 275 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 782 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 804 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 805 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 253 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 802 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,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 = 381.110187 - 0: The maximum resident set size (KB) = 1543084 + 0: The total amount of wall time = 341.541053 + 0: The maximum resident set size (KB) = 1534860 -Test 001 cpld_control_p8_mixedmode PASS +Test 001 cpld_control_p8_mixedmode PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,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 = 280.144669 - 0: The maximum resident set size (KB) = 1462256 + 0: The total amount of wall time = 274.106615 + 0: The maximum resident set size (KB) = 1443716 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,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 = 414.104908 - 0: The maximum resident set size (KB) = 1583808 + 0: The total amount of wall time = 395.798873 + 0: The maximum resident set size (KB) = 1568020 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,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 = 218.532701 - 0: The maximum resident set size (KB) = 1022680 + 0: The total amount of wall time = 252.364512 + 0: The maximum resident set size (KB) = 1019008 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 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 = 418.100406 - 0: The maximum resident set size (KB) = 1777184 + 0: The total amount of wall time = 406.323691 + 0: The maximum resident set size (KB) = 1756712 Test 005 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 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 = 419.816083 - 0: The maximum resident set size (KB) = 1595072 + 0: The total amount of wall time = 387.090659 + 0: The maximum resident set size (KB) = 1561968 Test 006 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 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 = 344.627083 - 0: The maximum resident set size (KB) = 1544172 + 0: The total amount of wall time = 340.840887 + 0: The maximum resident set size (KB) = 1526600 Test 007 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_ciceC_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 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 = 426.014336 - 0: The maximum resident set size (KB) = 1583072 + 0: The total amount of wall time = 391.843612 + 0: The maximum resident set size (KB) = 1568288 -Test 008 cpld_control_ciceC_p8 PASS +Test 008 cpld_control_ciceC_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 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 = 764.256106 - 0: The maximum resident set size (KB) = 1792908 + 0: The total amount of wall time = 764.676849 + 0: The maximum resident set size (KB) = 1760044 Test 009 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 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 = 464.465229 - 0: The maximum resident set size (KB) = 1925404 + 0: The total amount of wall time = 563.798980 + 0: The maximum resident set size (KB) = 1923488 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 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 = 792.669718 - 0: The maximum resident set size (KB) = 2537640 + 0: The total amount of wall time = 795.618635 + 0: The maximum resident set size (KB) = 2503276 Test 011 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 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 = 504.691690 - 0: The maximum resident set size (KB) = 2338904 + 0: The total amount of wall time = 705.094356 + 0: The maximum resident set size (KB) = 2330324 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,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 = 307.951416 - 0: The maximum resident set size (KB) = 1447284 + 0: The total amount of wall time = 341.162805 + 0: The maximum resident set size (KB) = 1441012 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,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 = 342.364926 - 0: The maximum resident set size (KB) = 1473484 + 0: The total amount of wall time = 328.741862 + 0: The maximum resident set size (KB) = 1473092 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,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 = 598.809177 - 0: The maximum resident set size (KB) = 1619196 + 0: The total amount of wall time = 589.327159 + 0: The maximum resident set size (KB) = 1596976 -Test 015 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,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 = 397.199874 - 0: The maximum resident set size (KB) = 1484960 + 0: The total amount of wall time = 462.095695 + 0: The maximum resident set size (KB) = 1441552 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,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 = 325.326836 - 0: The maximum resident set size (KB) = 1488700 + 0: The total amount of wall time = 339.082516 + 0: The maximum resident set size (KB) = 1476132 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,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.625093 - 0: The maximum resident set size (KB) = 2568908 + 0: The total amount of wall time = 622.595926 + 0: The maximum resident set size (KB) = 2569216 Test 018 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,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 = 167.804399 - 0: The maximum resident set size (KB) = 2572640 + 0: The total amount of wall time = 174.643407 + 0: The maximum resident set size (KB) = 2585804 Test 019 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,86 +1285,16 @@ 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 = 83.960764 - 0: The maximum resident set size (KB) = 1996312 + 0: The total amount of wall time = 86.117634 + 0: The maximum resident set size (KB) = 1996408 Test 020 cpld_restart_c48 PASS +Test 021 cpld_control_p8_faster FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8_faster -Checking test 021 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc ............MISSING baseline - Comparing sfcf021.tile2.nc ............MISSING baseline - Comparing sfcf021.tile3.nc ............MISSING baseline - Comparing sfcf021.tile4.nc ............MISSING baseline - Comparing sfcf021.tile5.nc ............MISSING baseline - Comparing sfcf021.tile6.nc ............MISSING baseline - Comparing atmf021.tile1.nc ............MISSING baseline - Comparing atmf021.tile2.nc ............MISSING baseline - Comparing atmf021.tile3.nc ............MISSING baseline - Comparing atmf021.tile4.nc ............MISSING baseline - Comparing atmf021.tile5.nc ............MISSING baseline - Comparing atmf021.tile6.nc ............MISSING baseline - Comparing sfcf024.tile1.nc ............MISSING baseline - Comparing sfcf024.tile2.nc ............MISSING baseline - Comparing sfcf024.tile3.nc ............MISSING baseline - Comparing sfcf024.tile4.nc ............MISSING baseline - Comparing sfcf024.tile5.nc ............MISSING baseline - Comparing sfcf024.tile6.nc ............MISSING baseline - Comparing atmf024.tile1.nc ............MISSING baseline - Comparing atmf024.tile2.nc ............MISSING baseline - Comparing atmf024.tile3.nc ............MISSING baseline - Comparing atmf024.tile4.nc ............MISSING baseline - Comparing atmf024.tile5.nc ............MISSING baseline - Comparing atmf024.tile6.nc ............MISSING baseline - Comparing gocart.inst_aod.20210323_0600z.nc4 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING baseline - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING baseline - Comparing 20210323.060000.out_pnt.ww3 ............MISSING baseline - Comparing 20210323.060000.out_grd.ww3 ............MISSING baseline - - 0: The total amount of wall time = 358.920457 - 0: The maximum resident set size (KB) = 1584700 - -Test 021 cpld_control_p8_faster FAIL Tries: 2 - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1321,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 142.040367 - 0: The maximum resident set size (KB) = 437148 + 0: The total amount of wall time = 138.272285 + 0: The maximum resident set size (KB) = 437268 -Test 022 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.297357 - 0: The maximum resident set size (KB) = 437264 + 0: The total amount of wall time = 300.613122 + 0: The maximum resident set size (KB) = 437160 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1353,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.946910 - 0: The maximum resident set size (KB) = 437016 + 0: The total amount of wall time = 164.695258 + 0: The maximum resident set size (KB) = 437080 Test 024 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1371,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.601589 - 0: The maximum resident set size (KB) = 436976 + 0: The total amount of wall time = 344.787578 + 0: The maximum resident set size (KB) = 436836 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1417,14 @@ Checking test 026 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 = 429.093964 -0: The maximum resident set size (KB) = 631608 +0: The total amount of wall time = 422.223022 +0: The maximum resident set size (KB) = 631112 Test 026 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1435,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 581.236728 - 0: The maximum resident set size (KB) = 540148 + 0: The total amount of wall time = 580.469470 + 0: The maximum resident set size (KB) = 540024 Test 027 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1453,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1115.076552 - 0: The maximum resident set size (KB) = 818556 + 0: The total amount of wall time = 1113.351586 + 0: The maximum resident set size (KB) = 818300 Test 028 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1503,14 @@ Checking test 029 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 = 933.636218 - 0: The maximum resident set size (KB) = 947920 + 0: The total amount of wall time = 990.491891 + 0: The maximum resident set size (KB) = 948160 Test 029 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1521,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 94.989891 - 0: The maximum resident set size (KB) = 440296 + 0: The total amount of wall time = 100.420802 + 0: The maximum resident set size (KB) = 440308 Test 030 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/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 = 54.715110 - 0: The maximum resident set size (KB) = 194668 + 0: The total amount of wall time = 57.731801 + 0: The maximum resident set size (KB) = 194444 Test 031 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1553,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 93.289709 - 0: The maximum resident set size (KB) = 440188 + 0: The total amount of wall time = 86.755501 + 0: The maximum resident set size (KB) = 440112 Test 032 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1575,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.711642 - 0: The maximum resident set size (KB) = 437132 + 0: The total amount of wall time = 147.500269 + 0: The maximum resident set size (KB) = 436908 Test 033 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1597,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 154.295045 - 0: The maximum resident set size (KB) = 436992 + 0: The total amount of wall time = 144.810417 + 0: The maximum resident set size (KB) = 437056 Test 034 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1651,14 @@ Checking test 035 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 = 180.632868 - 0: The maximum resident set size (KB) = 1403396 + 0: The total amount of wall time = 209.375932 + 0: The maximum resident set size (KB) = 1379692 Test 035 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1677,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 334.930271 - 0: The maximum resident set size (KB) = 1403580 + 0: The total amount of wall time = 363.336610 + 0: The maximum resident set size (KB) = 1379632 Test 036 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1723,14 @@ Checking test 037 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 = 92.653862 - 0: The maximum resident set size (KB) = 551676 + 0: The total amount of wall time = 119.310987 + 0: The maximum resident set size (KB) = 556068 Test 037 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1773,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 = 183.606250 - 0: The maximum resident set size (KB) = 1373912 + 0: The total amount of wall time = 211.146995 + 0: The maximum resident set size (KB) = 1374188 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1823,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 = 175.358447 - 0: The maximum resident set size (KB) = 1482416 + 0: The total amount of wall time = 215.588048 + 0: The maximum resident set size (KB) = 1457216 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1877,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 = 262.971058 - 0: The maximum resident set size (KB) = 1456856 + 0: The total amount of wall time = 275.347002 + 0: The maximum resident set size (KB) = 1437372 Test 040 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +1931,14 @@ Checking test 041 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 = 211.792051 - 0: The maximum resident set size (KB) = 1383880 + 0: The total amount of wall time = 256.096066 + 0: The maximum resident set size (KB) = 1385848 Test 041 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +1949,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 338.012709 - 0: The maximum resident set size (KB) = 577672 + 0: The total amount of wall time = 349.733767 + 0: The maximum resident set size (KB) = 577820 Test 042 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_restart Checking test 043 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 = 189.471075 - 0: The maximum resident set size (KB) = 577792 + 0: The total amount of wall time = 197.530554 + 0: The maximum resident set size (KB) = 577368 Test 043 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +1981,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 353.873716 - 0: The maximum resident set size (KB) = 579212 + 0: The total amount of wall time = 359.805211 + 0: The maximum resident set size (KB) = 579360 Test 044 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +1999,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.239519 - 0: The maximum resident set size (KB) = 583868 + 0: The total amount of wall time = 224.301600 + 0: The maximum resident set size (KB) = 584748 Test 045 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2014,28 @@ Checking test 046 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.138778 - 0: The maximum resident set size (KB) = 572944 + 0: The total amount of wall time = 367.845982 + 0: The maximum resident set size (KB) = 573108 Test 046 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_netcdf_parallel Checking test 047 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 = 338.060950 - 0: The maximum resident set size (KB) = 576772 + 0: The total amount of wall time = 465.798680 + 0: The maximum resident set size (KB) = 576860 -Test 047 regional_netcdf_parallel PASS +Test 047 regional_netcdf_parallel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2046,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.172324 - 0: The maximum resident set size (KB) = 577772 + 0: The total amount of wall time = 341.220489 + 0: The maximum resident set size (KB) = 577820 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2064,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.379849 - 0: The maximum resident set size (KB) = 263344 + 0: The total amount of wall time = 438.671565 + 0: The maximum resident set size (KB) = 263252 Test 049 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2118,14 @@ Checking test 050 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 = 494.266484 - 0: The maximum resident set size (KB) = 807584 + 0: The total amount of wall time = 500.939586 + 0: The maximum resident set size (KB) = 807668 Test 050 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2136,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 331.802317 - 0: The maximum resident set size (KB) = 887976 + 0: The total amount of wall time = 338.620599 + 0: The maximum resident set size (KB) = 897996 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2190,14 @@ Checking test 052 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 = 500.494898 - 0: The maximum resident set size (KB) = 807052 + 0: The total amount of wall time = 524.643341 + 0: The maximum resident set size (KB) = 807332 Test 052 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2244,14 @@ Checking test 053 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 = 467.587751 - 0: The maximum resident set size (KB) = 876272 + 0: The total amount of wall time = 492.800154 + 0: The maximum resident set size (KB) = 878992 Test 053 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2290,14 @@ Checking test 054 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 = 242.322475 - 0: The maximum resident set size (KB) = 538680 + 0: The total amount of wall time = 262.087232 + 0: The maximum resident set size (KB) = 554060 Test 054 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2344,14 @@ Checking test 055 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 = 474.665516 - 0: The maximum resident set size (KB) = 807364 + 0: The total amount of wall time = 497.728421 + 0: The maximum resident set size (KB) = 807656 Test 055 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2398,14 @@ Checking test 056 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 = 492.195647 - 0: The maximum resident set size (KB) = 806404 + 0: The total amount of wall time = 534.385547 + 0: The maximum resident set size (KB) = 806736 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2444,14 @@ Checking test 057 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 = 353.822444 - 0: The maximum resident set size (KB) = 541272 + 0: The total amount of wall time = 379.337211 + 0: The maximum resident set size (KB) = 551528 Test 057 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2498,14 @@ Checking test 058 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 = 451.073758 - 0: The maximum resident set size (KB) = 804688 + 0: The total amount of wall time = 489.942259 + 0: The maximum resident set size (KB) = 804904 Test 058 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2552,14 @@ Checking test 059 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 = 474.489705 - 0: The maximum resident set size (KB) = 804436 + 0: The total amount of wall time = 506.327737 + 0: The maximum resident set size (KB) = 804556 Test 059 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2606,14 @@ Checking test 060 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 = 431.083347 - 0: The maximum resident set size (KB) = 873280 + 0: The total amount of wall time = 451.229146 + 0: The maximum resident set size (KB) = 871324 Test 060 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2652,14 @@ Checking test 061 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 = 339.816508 - 0: The maximum resident set size (KB) = 550208 + 0: The total amount of wall time = 353.378265 + 0: The maximum resident set size (KB) = 550240 Test 061 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2706,14 @@ Checking test 062 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 = 467.060828 - 0: The maximum resident set size (KB) = 800752 + 0: The total amount of wall time = 503.441198 + 0: The maximum resident set size (KB) = 800700 Test 062 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2728,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 568.170933 - 0: The maximum resident set size (KB) = 491620 + 0: The total amount of wall time = 593.158078 + 0: The maximum resident set size (KB) = 491776 Test 063 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2750,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 552.436836 - 0: The maximum resident set size (KB) = 485664 + 0: The total amount of wall time = 566.677316 + 0: The maximum resident set size (KB) = 485704 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2766,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.442753 - 0: The maximum resident set size (KB) = 617484 + 0: The total amount of wall time = 147.576703 + 0: The maximum resident set size (KB) = 617784 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2782,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 = 145.243142 - 0: The maximum resident set size (KB) = 627652 + 0: The total amount of wall time = 161.167025 + 0: The maximum resident set size (KB) = 627816 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2798,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.999313 - 0: The maximum resident set size (KB) = 620988 + 0: The total amount of wall time = 147.357829 + 0: The maximum resident set size (KB) = 620508 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2814,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.877688 - 0: The maximum resident set size (KB) = 630160 + 0: The total amount of wall time = 95.641568 + 0: The maximum resident set size (KB) = 629188 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2830,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.282533 - 0: The maximum resident set size (KB) = 633000 + 0: The total amount of wall time = 105.042143 + 0: The maximum resident set size (KB) = 632864 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2848,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 380.153293 - 0: The maximum resident set size (KB) = 505636 + 0: The total amount of wall time = 400.884236 + 0: The maximum resident set size (KB) = 505476 Test 070 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2866,26 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.472024 - 0: The maximum resident set size (KB) = 470892 + 0: The total amount of wall time = 203.334998 + 0: The maximum resident set size (KB) = 470932 Test 071 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.420302 - 0: The maximum resident set size (KB) = 188096 + 0: The total amount of wall time = 127.314385 + 0: The maximum resident set size (KB) = 187976 Test 072 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_faster Checking test 073 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +2932,14 @@ Checking test 073 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.371290 - 0: The maximum resident set size (KB) = 1379804 + 0: The total amount of wall time = 194.249241 + 0: The maximum resident set size (KB) = 1379556 Test 073 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_control_faster Checking test 074 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,42 +2950,42 @@ Checking test 074 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.374962 - 0: The maximum resident set size (KB) = 577632 + 0: The total amount of wall time = 348.615438 + 0: The maximum resident set size (KB) = 577568 Test 074 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm_debug Checking test 075 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 = 754.518211 - 0: The maximum resident set size (KB) = 649396 + 0: The total amount of wall time = 781.820263 + 0: The maximum resident set size (KB) = 649592 Test 075 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_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 = 754.367076 - 0: The maximum resident set size (KB) = 652164 + 0: The total amount of wall time = 782.673804 + 0: The maximum resident set size (KB) = 652324 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,334 +3012,334 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 163.111896 - 0: The maximum resident set size (KB) = 601788 + 0: The total amount of wall time = 175.180250 + 0: The maximum resident set size (KB) = 601888 Test 077 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wrtGauss_netcdf_parallel_debug Checking test 078 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 = 163.146693 - 0: The maximum resident set size (KB) = 601084 + 0: The total amount of wall time = 174.134479 + 0: The maximum resident set size (KB) = 601164 Test 078 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy_debug Checking test 079 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 = 174.902082 - 0: The maximum resident set size (KB) = 607872 + 0: The total amount of wall time = 182.108219 + 0: The maximum resident set size (KB) = 608172 Test 079 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_lndp_debug Checking test 080 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 = 156.954774 - 0: The maximum resident set size (KB) = 606000 + 0: The total amount of wall time = 171.106627 + 0: The maximum resident set size (KB) = 606124 Test 080 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmg_debug Checking test 081 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 = 246.882483 - 0: The maximum resident set size (KB) = 642484 + 0: The total amount of wall time = 267.854356 + 0: The maximum resident set size (KB) = 642268 Test 081 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmgt_debug Checking test 082 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 = 242.475940 - 0: The maximum resident set size (KB) = 642684 + 0: The total amount of wall time = 262.509991 + 0: The maximum resident set size (KB) = 642576 Test 082 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_ras_debug Checking test 083 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.214064 - 0: The maximum resident set size (KB) = 613720 + 0: The total amount of wall time = 164.754081 + 0: The maximum resident set size (KB) = 613444 Test 083 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_diag_debug Checking test 084 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.798463 - 0: The maximum resident set size (KB) = 660684 + 0: The total amount of wall time = 168.486029 + 0: The maximum resident set size (KB) = 660520 Test 084 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_debug_p8 Checking test 085 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 = 181.265445 - 0: The maximum resident set size (KB) = 1380204 + 0: The total amount of wall time = 196.997655 + 0: The maximum resident set size (KB) = 1380144 Test 085 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_debug Checking test 086 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 = 1042.919849 - 0: The maximum resident set size (KB) = 606860 + 0: The total amount of wall time = 1062.146970 + 0: The maximum resident set size (KB) = 606732 Test 086 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_debug Checking test 087 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 = 286.908281 - 0: The maximum resident set size (KB) = 972212 + 0: The total amount of wall time = 298.830674 + 0: The maximum resident set size (KB) = 972104 Test 087 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_debug Checking test 088 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 = 284.795701 - 0: The maximum resident set size (KB) = 967184 + 0: The total amount of wall time = 290.522807 + 0: The maximum resident set size (KB) = 967276 Test 088 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_unified_drag_suite_debug Checking test 089 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 = 285.836724 - 0: The maximum resident set size (KB) = 972124 + 0: The total amount of wall time = 298.939132 + 0: The maximum resident set size (KB) = 972220 Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_diag_debug Checking test 090 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 = 300.393266 - 0: The maximum resident set size (KB) = 1056412 + 0: The total amount of wall time = 315.841078 + 0: The maximum resident set size (KB) = 1056444 Test 090 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_cires_ugwp_debug Checking test 091 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 = 291.152260 - 0: The maximum resident set size (KB) = 971328 + 0: The total amount of wall time = 303.171442 + 0: The maximum resident set size (KB) = 971196 Test 091 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_unified_ugwp_debug Checking test 092 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 = 293.409378 - 0: The maximum resident set size (KB) = 973480 + 0: The total amount of wall time = 303.603461 + 0: The maximum resident set size (KB) = 973632 Test 092 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_lndp_debug Checking test 093 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.784706 - 0: The maximum resident set size (KB) = 972960 + 0: The total amount of wall time = 301.304576 + 0: The maximum resident set size (KB) = 972808 Test 093 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_flake_debug Checking test 094 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.212769 - 0: The maximum resident set size (KB) = 972096 + 0: The total amount of wall time = 296.656209 + 0: The maximum resident set size (KB) = 972020 Test 094 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_progcld_thompson_debug Checking test 095 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 = 289.998087 - 0: The maximum resident set size (KB) = 972344 + 0: The total amount of wall time = 297.121195 + 0: The maximum resident set size (KB) = 972052 Test 095 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_noah_debug Checking test 096 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 = 280.427160 - 0: The maximum resident set size (KB) = 970700 + 0: The total amount of wall time = 291.141954 + 0: The maximum resident set size (KB) = 970616 Test 096 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_debug Checking test 097 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.321233 - 0: The maximum resident set size (KB) = 972076 + 0: The total amount of wall time = 297.843661 + 0: The maximum resident set size (KB) = 971788 Test 097 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_noah_sfcdiff_cires_ugwp_debug Checking test 098 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 = 473.122579 - 0: The maximum resident set size (KB) = 971440 + 0: The total amount of wall time = 483.550292 + 0: The maximum resident set size (KB) = 971392 Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1beta_debug Checking test 099 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 = 284.086605 - 0: The maximum resident set size (KB) = 968052 + 0: The total amount of wall time = 296.261009 + 0: The maximum resident set size (KB) = 967968 Test 099 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wam_debug Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.097674 - 0: The maximum resident set size (KB) = 219120 + 0: The total amount of wall time = 296.620749 + 0: The maximum resident set size (KB) = 219112 Test 100 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3420,14 +3350,14 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.589617 - 0: The maximum resident set size (KB) = 788052 + 0: The total amount of wall time = 331.503202 + 0: The maximum resident set size (KB) = 788240 Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn32_phy32 Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,14 +3404,14 @@ Checking test 102 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 = 389.472831 - 0: The maximum resident set size (KB) = 690808 + 0: The total amount of wall time = 397.595512 + 0: The maximum resident set size (KB) = 690912 Test 102 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_dyn32_phy32 Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3528,14 +3458,14 @@ Checking test 103 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 = 205.330609 - 0: The maximum resident set size (KB) = 689076 + 0: The total amount of wall time = 214.714284 + 0: The maximum resident set size (KB) = 689252 Test 103 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_2threads_dyn32_phy32 Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3582,14 +3512,14 @@ Checking test 104 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 = 384.935646 - 0: The maximum resident set size (KB) = 740112 + 0: The total amount of wall time = 380.772794 + 0: The maximum resident set size (KB) = 740516 Test 104 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_2threads_dyn32_phy32 Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3636,14 +3566,14 @@ Checking test 105 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.019667 - 0: The maximum resident set size (KB) = 742692 + 0: The total amount of wall time = 211.592422 + 0: The maximum resident set size (KB) = 742832 Test 105 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_decomp_dyn32_phy32 Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3690,14 +3620,14 @@ Checking test 106 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 = 224.021981 - 0: The maximum resident set size (KB) = 688076 + 0: The total amount of wall time = 227.148865 + 0: The maximum resident set size (KB) = 687980 Test 106 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_restart_dyn32_phy32 Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3736,14 +3666,14 @@ Checking test 107 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 = 291.166290 - 0: The maximum resident set size (KB) = 524836 + 0: The total amount of wall time = 294.829873 + 0: The maximum resident set size (KB) = 524880 Test 107 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_restart_dyn32_phy32 Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3782,14 +3712,14 @@ Checking test 108 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 = 111.513444 - 0: The maximum resident set size (KB) = 517728 + 0: The total amount of wall time = 106.857201 + 0: The maximum resident set size (KB) = 517672 Test 108 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn64_phy32 Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3836,81 +3766,81 @@ Checking test 109 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 = 259.616198 - 0: The maximum resident set size (KB) = 713776 + 0: The total amount of wall time = 269.565261 + 0: The maximum resident set size (KB) = 713864 Test 109 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_debug_dyn32_phy32 Checking test 110 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 = 285.624359 - 0: The maximum resident set size (KB) = 856716 + 0: The total amount of wall time = 295.564160 + 0: The maximum resident set size (KB) = 856772 Test 110 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_debug_dyn32_phy32 Checking test 111 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.092570 - 0: The maximum resident set size (KB) = 855212 + 0: The total amount of wall time = 288.608347 + 0: The maximum resident set size (KB) = 854852 Test 111 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn64_phy32_debug Checking test 112 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.880931 - 0: The maximum resident set size (KB) = 880420 + 0: The total amount of wall time = 299.468266 + 0: The maximum resident set size (KB) = 880308 Test 112 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 274.756916 - 0: The maximum resident set size (KB) = 681232 + 0: The total amount of wall time = 276.201999 + 0: The maximum resident set size (KB) = 681680 Test 113 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_thompson_gfdlsf Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.628001 - 0: The maximum resident set size (KB) = 1036628 + 0: The total amount of wall time = 308.908409 + 0: The maximum resident set size (KB) = 1036920 Test 114 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_ocn Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3919,14 +3849,14 @@ Checking test 115 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 = 435.642321 - 0: The maximum resident set size (KB) = 712460 + 0: The total amount of wall time = 458.879792 + 0: The maximum resident set size (KB) = 712396 Test 115 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_wav Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,14 +3865,14 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 939.668303 - 0: The maximum resident set size (KB) = 746908 + 0: The total amount of wall time = 938.760423 + 0: The maximum resident set size (KB) = 747640 Test 116 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_ocn_wav Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,28 +3883,28 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1034.205378 - 0: The maximum resident set size (KB) = 764760 + 0: The total amount of wall time = 1052.307244 + 0: The maximum resident set size (KB) = 764296 Test 117 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_1nest_atm Checking test 118 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 = 379.659275 - 0: The maximum resident set size (KB) = 276132 + 0: The total amount of wall time = 383.032637 + 0: The maximum resident set size (KB) = 277124 Test 118 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_telescopic_2nests_atm Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3983,28 +3913,28 @@ Checking test 119 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 = 437.671968 - 0: The maximum resident set size (KB) = 282292 + 0: The total amount of wall time = 437.252416 + 0: The maximum resident set size (KB) = 282600 Test 119 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_1nest_atm Checking test 120 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 = 183.642890 - 0: The maximum resident set size (KB) = 177772 + 0: The total amount of wall time = 172.147320 + 0: The maximum resident set size (KB) = 178040 Test 120 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_multiple_4nests_atm Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4022,14 +3952,14 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 507.175679 - 0: The maximum resident set size (KB) = 229956 + 0: The total amount of wall time = 512.563419 + 0: The maximum resident set size (KB) = 208676 Test 121 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_specified_moving_1nest_atm Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4038,28 +3968,28 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 243.195448 - 0: The maximum resident set size (KB) = 288288 + 0: The total amount of wall time = 238.253177 + 0: The maximum resident set size (KB) = 288212 Test 122 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm Checking test 123 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.865179 - 0: The maximum resident set size (KB) = 287092 + 0: The total amount of wall time = 225.704490 + 0: The maximum resident set size (KB) = 286988 Test 123 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4068,42 +3998,42 @@ Checking test 124 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 = 263.132613 - 0: The maximum resident set size (KB) = 324104 + 0: The total amount of wall time = 269.951303 + 0: The maximum resident set size (KB) = 324288 Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_storm_following_1nest_atm Checking test 125 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 = 70.325184 - 0: The maximum resident set size (KB) = 192812 + 0: The total amount of wall time = 70.791324 + 0: The maximum resident set size (KB) = 192948 Test 125 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 126 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 = 775.678676 - 0: The maximum resident set size (KB) = 352996 + 0: The total amount of wall time = 782.187963 + 0: The maximum resident set size (KB) = 353160 Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4114,14 +4044,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 744.362188 - 0: The maximum resident set size (KB) = 367028 + 0: The total amount of wall time = 737.356886 + 0: The maximum resident set size (KB) = 366700 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4129,14 +4059,14 @@ Checking test 128 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 = 393.831946 - 0: The maximum resident set size (KB) = 723376 + 0: The total amount of wall time = 389.116045 + 0: The maximum resident set size (KB) = 723212 Test 128 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4144,131 +4074,131 @@ Checking test 129 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 = 389.105197 - 0: The maximum resident set size (KB) = 709432 + 0: The total amount of wall time = 389.347870 + 0: The maximum resident set size (KB) = 710132 Test 129 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_datm_cdeps Checking test 130 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 = 1168.527335 - 0: The maximum resident set size (KB) = 808980 + 0: The total amount of wall time = 1171.687483 + 0: The maximum resident set size (KB) = 808992 Test 130 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_cfsr Checking test 131 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 = 167.674770 - 0: The maximum resident set size (KB) = 721060 + 0: The total amount of wall time = 168.435731 + 0: The maximum resident set size (KB) = 715724 Test 131 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_restart_cfsr Checking test 132 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.765422 - 0: The maximum resident set size (KB) = 715932 + 0: The total amount of wall time = 96.691630 + 0: The maximum resident set size (KB) = 715912 Test 132 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_gefs Checking test 133 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 = 165.205846 - 0: The maximum resident set size (KB) = 603068 + 0: The total amount of wall time = 162.338902 + 0: The maximum resident set size (KB) = 608800 Test 133 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_iau_gefs Checking test 134 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 = 161.892606 - 0: The maximum resident set size (KB) = 605012 + 0: The total amount of wall time = 166.397940 + 0: The maximum resident set size (KB) = 607164 Test 134 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_stochy_gefs Checking test 135 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 = 161.608795 - 0: The maximum resident set size (KB) = 600996 + 0: The total amount of wall time = 162.440756 + 0: The maximum resident set size (KB) = 598152 Test 135 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_ciceC_cfsr Checking test 136 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 = 165.792171 - 0: The maximum resident set size (KB) = 721476 + 0: The total amount of wall time = 170.239566 + 0: The maximum resident set size (KB) = 717696 Test 136 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_bulk_cfsr Checking test 137 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 = 166.822891 - 0: The maximum resident set size (KB) = 721204 + 0: The total amount of wall time = 164.917461 + 0: The maximum resident set size (KB) = 715816 Test 137 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_bulk_gefs Checking test 138 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.158318 - 0: The maximum resident set size (KB) = 608076 + 0: The total amount of wall time = 163.247702 + 0: The maximum resident set size (KB) = 608924 Test 138 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4277,14 +4207,14 @@ Checking test 139 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 = 428.476106 - 0: The maximum resident set size (KB) = 494952 + 0: The total amount of wall time = 411.611785 + 0: The maximum resident set size (KB) = 494420 Test 139 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4293,77 +4223,77 @@ Checking test 140 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 = 433.543825 - 0: The maximum resident set size (KB) = 476736 + 0: The total amount of wall time = 430.934977 + 0: The maximum resident set size (KB) = 475744 Test 140 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_multiple_files_cfsr Checking test 141 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.011060 - 0: The maximum resident set size (KB) = 721536 + 0: The total amount of wall time = 166.309890 + 0: The maximum resident set size (KB) = 715824 Test 141 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_3072x1536_cfsr Checking test 142 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 = 253.523195 - 0: The maximum resident set size (KB) = 1948172 + 0: The total amount of wall time = 255.714373 + 0: The maximum resident set size (KB) = 1947960 Test 142 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_gfs Checking test 143 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 = 249.974847 - 0: The maximum resident set size (KB) = 1967620 + 0: The total amount of wall time = 256.762095 + 0: The maximum resident set size (KB) = 1947640 Test 143 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_debug_cfsr Checking test 144 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 = 373.921194 - 0: The maximum resident set size (KB) = 714700 + 0: The total amount of wall time = 373.118633 + 0: The maximum resident set size (KB) = 708084 Test 144 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_cfsr_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_cfsr_faster Checking test 145 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 = 163.387844 - 0: The maximum resident set size (KB) = 721352 + 0: The total amount of wall time = 164.181284 + 0: The maximum resident set size (KB) = 721276 Test 145 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_lnd_gswp3 Checking test 146 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 @@ -4372,14 +4302,14 @@ Checking test 146 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 = 9.895409 - 0: The maximum resident set size (KB) = 149928 + 0: The total amount of wall time = 10.671925 + 0: The maximum resident set size (KB) = 153944 Test 146 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_lnd_gswp3_rst Checking test 147 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 @@ -4388,14 +4318,14 @@ Checking test 147 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.471056 - 0: The maximum resident set size (KB) = 149828 + 0: The total amount of wall time = 23.943832 + 0: The maximum resident set size (KB) = 149936 Test 147 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_atmlnd_sbs Checking test 148 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4480,14 +4410,14 @@ Checking test 148 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 = 232.970971 - 0: The maximum resident set size (KB) = 1424976 + 0: The total amount of wall time = 233.680676 + 0: The maximum resident set size (KB) = 1412424 Test 148 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_atmwav Checking test 149 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4531,14 +4461,14 @@ Checking test 149 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 = 94.232400 - 0: The maximum resident set size (KB) = 450560 + 0: The total amount of wall time = 94.055888 + 0: The maximum resident set size (KB) = 450752 Test 149 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8 Checking test 150 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4582,14 +4512,14 @@ Checking test 150 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.545148 - 0: The maximum resident set size (KB) = 1478556 + 0: The total amount of wall time = 248.738018 + 0: The maximum resident set size (KB) = 1447884 Test 150 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8_rad +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8_rad Checking test 151 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4633,14 +4563,14 @@ Checking test 151 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 = 299.424245 - 0: The maximum resident set size (KB) = 1481712 + 0: The total amount of wall time = 307.214707 + 0: The maximum resident set size (KB) = 1468396 Test 151 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8_rad_micro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8_rad_micro Checking test 152 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4684,14 +4614,14 @@ Checking test 152 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 = 303.400788 - 0: The maximum resident set size (KB) = 1486876 + 0: The total amount of wall time = 307.479311 + 0: The maximum resident set size (KB) = 1473160 Test 152 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_atmaq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_atmaq Checking test 153 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4707,14 +4637,14 @@ Checking test 153 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 = 630.911169 - 0: The maximum resident set size (KB) = 1088084 + 0: The total amount of wall time = 646.020696 + 0: The maximum resident set size (KB) = 1101548 Test 153 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_atmaq_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_atmaq_faster Checking test 154 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4730,25 +4660,24 @@ Checking test 154 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 = 637.594771 - 0: The maximum resident set size (KB) = 1077632 + 0: The total amount of wall time = 620.037739 + 0: The maximum resident set size (KB) = 1096400 Test 154 regional_atmaq_faster PASS FAILED TESTS: -Test cpld_control_p8_faster 021 failed in check_result failed Test cpld_control_p8_faster 021 failed in run_test failed REGRESSION TEST FAILED -Sat Mar 4 17:26:04 EST 2023 -Elapsed time: 01h:50m:18s. Have a nice day! -Mon Mar 6 09:31:36 EST 2023 +Wed Mar 8 19:34:56 EST 2023 +Elapsed time: 05h:29m:43s. Have a nice day! +Wed Mar 8 19:55:56 EST 2023 Start Regression test -Compile 001 elapsed time 915 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 001 elapsed time 986 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 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_37025/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_6091/cpld_control_p8_faster Checking test 001 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -4813,12 +4742,12 @@ Checking test 001 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 = 405.873791 - 0: The maximum resident set size (KB) = 1586512 + 0: The total amount of wall time = 373.895626 + 0: The maximum resident set size (KB) = 1567976 Test 001 cpld_control_p8_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 6 10:47:08 EST 2023 -Elapsed time: 01h:15m:33s. Have a nice day! +Wed Mar 8 20:29:07 EST 2023 +Elapsed time: 00h:33m:26s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 835b407e27..21f2f6c625 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sat Mar 4 19:48:45 UTC 2023 +Wed Mar 8 18:48:43 UTC 2023 Start Regression test -Compile 001 elapsed time 179 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 178 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 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 003 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 253 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 225 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 140 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 009 elapsed time 257 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 222 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 139 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 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 687.569479 -0: The maximum resident set size (KB) = 698272 +0: The total amount of wall time = 682.355812 +0: The maximum resident set size (KB) = 702256 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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.416902 - 0: The maximum resident set size (KB) = 479384 + 0: The total amount of wall time = 654.802339 + 0: The maximum resident set size (KB) = 478132 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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.906204 - 0: The maximum resident set size (KB) = 486292 + 0: The total amount of wall time = 819.915274 + 0: The maximum resident set size (KB) = 486772 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 906.694769 - 0: The maximum resident set size (KB) = 1231520 + 0: The total amount of wall time = 911.645749 + 0: The maximum resident set size (KB) = 1231888 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1456.214262 - 0: The maximum resident set size (KB) = 826216 + 0: The total amount of wall time = 1476.105232 + 0: The maximum resident set size (KB) = 827272 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1421.087517 - 0: The maximum resident set size (KB) = 829536 + 0: The total amount of wall time = 1450.646374 + 0: The maximum resident set size (KB) = 830716 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1346.205838 - 0: The maximum resident set size (KB) = 898148 + 0: The total amount of wall time = 1333.477024 + 0: The maximum resident set size (KB) = 897896 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 739.011066 - 0: The maximum resident set size (KB) = 549584 + 0: The total amount of wall time = 728.915132 + 0: The maximum resident set size (KB) = 545016 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1446.645066 - 0: The maximum resident set size (KB) = 827692 + 0: The total amount of wall time = 1469.223304 + 0: The maximum resident set size (KB) = 829620 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1434.115884 - 0: The maximum resident set size (KB) = 826376 + 0: The total amount of wall time = 1462.989314 + 0: The maximum resident set size (KB) = 830432 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1085.320289 - 0: The maximum resident set size (KB) = 550236 + 0: The total amount of wall time = 1064.649970 + 0: The maximum resident set size (KB) = 555008 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1436.662439 - 0: The maximum resident set size (KB) = 827460 + 0: The total amount of wall time = 1420.478225 + 0: The maximum resident set size (KB) = 825692 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1329.228300 - 0: The maximum resident set size (KB) = 890848 + 0: The total amount of wall time = 1321.714190 + 0: The maximum resident set size (KB) = 892732 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1423.902413 - 0: The maximum resident set size (KB) = 831164 + 0: The total amount of wall time = 1441.376565 + 0: The maximum resident set size (KB) = 827624 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1049.586820 - 0: The maximum resident set size (KB) = 550844 + 0: The total amount of wall time = 1064.852715 + 0: The maximum resident set size (KB) = 547140 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/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 = 1439.850285 - 0: The maximum resident set size (KB) = 826256 + 0: The total amount of wall time = 1449.123000 + 0: The maximum resident set size (KB) = 830832 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 759.070324 - 0: The maximum resident set size (KB) = 636772 + 0: The total amount of wall time = 790.477177 + 0: The maximum resident set size (KB) = 636152 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 797.263319 - 0: The maximum resident set size (KB) = 650192 + 0: The total amount of wall time = 809.639374 + 0: The maximum resident set size (KB) = 651488 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 795.117104 - 0: The maximum resident set size (KB) = 640024 + 0: The total amount of wall time = 706.494754 + 0: The maximum resident set size (KB) = 638688 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 899.812997 - 0: The maximum resident set size (KB) = 635416 + 0: The total amount of wall time = 890.945608 + 0: The maximum resident set size (KB) = 638364 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_diag_debug Checking test 021 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 = 130.542255 - 0: The maximum resident set size (KB) = 530048 + 0: The total amount of wall time = 127.366642 + 0: The maximum resident set size (KB) = 533600 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/regional_debug Checking test 022 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 = 592.908726 - 0: The maximum resident set size (KB) = 594916 + 0: The total amount of wall time = 605.608514 + 0: The maximum resident set size (KB) = 595136 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_debug Checking test 023 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 = 175.640009 - 0: The maximum resident set size (KB) = 846816 + 0: The total amount of wall time = 179.426420 + 0: The maximum resident set size (KB) = 847532 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_debug Checking test 024 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 = 175.031380 - 0: The maximum resident set size (KB) = 842900 + 0: The total amount of wall time = 174.472156 + 0: The maximum resident set size (KB) = 842028 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_diag_debug Checking test 025 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 = 214.027605 - 0: The maximum resident set size (KB) = 928544 + 0: The total amount of wall time = 216.558657 + 0: The maximum resident set size (KB) = 928472 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 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 = 283.894594 - 0: The maximum resident set size (KB) = 843860 + 0: The total amount of wall time = 278.043056 + 0: The maximum resident set size (KB) = 843276 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_progcld_thompson_debug Checking test 027 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.591581 - 0: The maximum resident set size (KB) = 849544 + 0: The total amount of wall time = 180.828856 + 0: The maximum resident set size (KB) = 849428 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_v1beta_debug Checking test 028 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 = 175.416823 - 0: The maximum resident set size (KB) = 843156 + 0: The total amount of wall time = 177.323305 + 0: The maximum resident set size (KB) = 846396 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_ras_debug Checking test 029 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 = 104.569374 - 0: The maximum resident set size (KB) = 482444 + 0: The total amount of wall time = 103.695708 + 0: The maximum resident set size (KB) = 483900 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_stochy_debug Checking test 030 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.440657 - 0: The maximum resident set size (KB) = 476304 + 0: The total amount of wall time = 117.837026 + 0: The maximum resident set size (KB) = 479664 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_debug_p8 Checking test 031 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 = 119.962301 - 0: The maximum resident set size (KB) = 1234068 + 0: The total amount of wall time = 120.588814 + 0: The maximum resident set size (KB) = 1234016 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_hrrr_warm_debug Checking test 032 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 = 575.668703 - 0: The maximum resident set size (KB) = 653064 + 0: The total amount of wall time = 535.860072 + 0: The maximum resident set size (KB) = 652852 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_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 = 571.650398 - 0: The maximum resident set size (KB) = 657296 + 0: The total amount of wall time = 584.291045 + 0: The maximum resident set size (KB) = 656148 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.673782 - 0: The maximum resident set size (KB) = 193048 + 0: The total amount of wall time = 186.141810 + 0: The maximum resident set size (KB) = 193940 Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 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 = 1448.646234 - 0: The maximum resident set size (KB) = 689096 + 0: The total amount of wall time = 1462.735342 + 0: The maximum resident set size (KB) = 685572 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 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 = 735.473695 - 0: The maximum resident set size (KB) = 689220 + 0: The total amount of wall time = 738.943688 + 0: The maximum resident set size (KB) = 685668 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 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 = 1316.605144 - 0: The maximum resident set size (KB) = 728848 + 0: The total amount of wall time = 1348.642021 + 0: The maximum resident set size (KB) = 731040 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 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 = 669.416747 - 0: The maximum resident set size (KB) = 728480 + 0: The total amount of wall time = 673.903231 + 0: The maximum resident set size (KB) = 724032 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 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 = 737.384549 - 0: The maximum resident set size (KB) = 684076 + 0: The total amount of wall time = 736.915262 + 0: The maximum resident set size (KB) = 686164 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 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 = 1093.191865 - 0: The maximum resident set size (KB) = 515928 + 0: The total amount of wall time = 1077.092690 + 0: The maximum resident set size (KB) = 516060 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 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 = 365.726584 - 0: The maximum resident set size (KB) = 508620 + 0: The total amount of wall time = 372.044029 + 0: The maximum resident set size (KB) = 512500 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,128 +1442,58 @@ Checking test 042 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 = 1062.739029 - 0: The maximum resident set size (KB) = 708904 + 0: The total amount of wall time = 1057.824830 + 0: The maximum resident set size (KB) = 709960 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_debug_dyn32_phy32 Checking test 043 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.182849 - 0: The maximum resident set size (KB) = 701084 + 0: The total amount of wall time = 169.642350 + 0: The maximum resident set size (KB) = 710304 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_debug_dyn32_phy32 Checking test 044 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.373416 - 0: The maximum resident set size (KB) = 702304 + 0: The total amount of wall time = 172.103080 + 0: The maximum resident set size (KB) = 708988 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn64_phy32_debug Checking test 045 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 = 207.383731 - 0: The maximum resident set size (KB) = 718548 + 0: The total amount of wall time = 203.667185 + 0: The maximum resident set size (KB) = 724732 Test 045 rap_control_dyn64_phy32_debug PASS +Test 046 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_control_p8 -Checking test 046 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 = 1780.532942 - 0: The maximum resident set size (KB) = 1428688 -Test 046 cpld_control_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1555,14 @@ Checking test 047 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 = 1210.187846 - 0: The maximum resident set size (KB) = 1332564 + 0: The total amount of wall time = 1229.194464 + 0: The maximum resident set size (KB) = 1330956 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1615,107 @@ Checking test 048 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 = 859.213237 - 0: The maximum resident set size (KB) = 1444772 + 0: The total amount of wall time = 893.937828 + 0: The maximum resident set size (KB) = 1446376 -Test 048 cpld_debug_p8 PASS Tries: 2 +Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/datm_cdeps_control_cfsr Checking test 049 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.099080 - 0: The maximum resident set size (KB) = 665420 + 0: The total amount of wall time = 171.949118 + 0: The maximum resident set size (KB) = 660292 Test 049 datm_cdeps_control_cfsr PASS +FAILED TESTS: +Test cpld_control_p8 046 failed in run_test failed + +REGRESSION TEST FAILED +Wed Mar 8 20:05:33 UTC 2023 +Elapsed time: 01h:16m:51s. Have a nice day! +Wed Mar 8 20:41:31 UTC 2023 +Start Regression test + +Compile 001 elapsed time 256 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-20230308/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_248518/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 = 1685.072982 + 0: The maximum resident set size (KB) = 1432388 + +Test 001 cpld_control_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 20:59:14 UTC 2023 -Elapsed time: 01h:10m:29s. Have a nice day! +Wed Mar 8 21:18:35 UTC 2023 +Elapsed time: 00h:37m:04s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e6887728a6..7896c257a3 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 19:32:45 UTC 2023 +Wed Mar 8 18:32:37 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 611 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 558 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 232 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 205 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 507 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 691 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 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 606 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 551 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 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 506 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 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 688 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 487 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 472 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 430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 572 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 201 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 169 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 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 440 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 164 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 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 188 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 617 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 556 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 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 184 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 010 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 480 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 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 590 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 187 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 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 159 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 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 555 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 193 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 627 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 583 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 181 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 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 028 elapsed time 472 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 574 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 466 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 452 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 029 elapsed time 523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 449 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 198 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 033 elapsed time 534 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8_mixedmode +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,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 = 307.744798 - 0: The maximum resident set size (KB) = 3144364 + 0: The total amount of wall time = 304.281405 + 0: The maximum resident set size (KB) = 3140052 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,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.569821 - 0: The maximum resident set size (KB) = 1737024 + 0: The total amount of wall time = 221.160056 + 0: The maximum resident set size (KB) = 1726356 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,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 = 335.274480 - 0: The maximum resident set size (KB) = 3171408 + 0: The total amount of wall time = 336.081932 + 0: The maximum resident set size (KB) = 3179016 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,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 = 193.655981 - 0: The maximum resident set size (KB) = 3044332 + 0: The total amount of wall time = 194.269673 + 0: The maximum resident set size (KB) = 3054840 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 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.177801 - 0: The maximum resident set size (KB) = 3509492 + 0: The total amount of wall time = 351.556681 + 0: The maximum resident set size (KB) = 3509760 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 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 = 338.990441 - 0: The maximum resident set size (KB) = 3174488 + 0: The total amount of wall time = 338.172297 + 0: The maximum resident set size (KB) = 3170352 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 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.282474 - 0: The maximum resident set size (KB) = 3027584 + 0: The total amount of wall time = 277.060471 + 0: The maximum resident set size (KB) = 3023016 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 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 = 338.384762 - 0: The maximum resident set size (KB) = 3180448 + 0: The total amount of wall time = 337.033423 + 0: The maximum resident set size (KB) = 3171548 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 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 = 581.402761 - 0: The maximum resident set size (KB) = 3251620 + 0: The total amount of wall time = 599.139754 + 0: The maximum resident set size (KB) = 3252016 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 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 = 401.136024 - 0: The maximum resident set size (KB) = 3155620 + 0: The total amount of wall time = 398.885428 + 0: The maximum resident set size (KB) = 3150608 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 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 = 703.299157 - 0: The maximum resident set size (KB) = 4030164 + 0: The total amount of wall time = 702.349333 + 0: The maximum resident set size (KB) = 4033148 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 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 = 439.742927 - 0: The maximum resident set size (KB) = 3975796 + 0: The total amount of wall time = 444.014712 + 0: The maximum resident set size (KB) = 3969756 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,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 = 261.583278 - 0: The maximum resident set size (KB) = 1718232 + 0: The total amount of wall time = 260.100325 + 0: The maximum resident set size (KB) = 1723624 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,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 = 257.395069 - 0: The maximum resident set size (KB) = 1762876 + 0: The total amount of wall time = 258.078388 + 0: The maximum resident set size (KB) = 1761724 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,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 = 663.266000 - 0: The maximum resident set size (KB) = 3247140 + 0: The total amount of wall time = 646.260179 + 0: The maximum resident set size (KB) = 3244904 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,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 = 400.986624 - 0: The maximum resident set size (KB) = 1734896 + 0: The total amount of wall time = 396.112200 + 0: The maximum resident set size (KB) = 1733892 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,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 = 263.957688 - 0: The maximum resident set size (KB) = 1753216 + 0: The total amount of wall time = 265.417602 + 0: The maximum resident set size (KB) = 1767588 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,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 = 588.179717 - 0: The maximum resident set size (KB) = 2797156 + 0: The total amount of wall time = 584.225880 + 0: The maximum resident set size (KB) = 2798932 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,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 = 153.261533 - 0: The maximum resident set size (KB) = 2808188 + 0: The total amount of wall time = 153.400018 + 0: The maximum resident set size (KB) = 2799224 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,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 = 82.790846 - 0: The maximum resident set size (KB) = 2246092 + 0: The total amount of wall time = 80.028893 + 0: The maximum resident set size (KB) = 2247628 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 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 = 317.201741 - 0: The maximum resident set size (KB) = 3181500 + 0: The total amount of wall time = 314.120704 + 0: The maximum resident set size (KB) = 3179624 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.679412 - 0: The maximum resident set size (KB) = 624256 + 0: The total amount of wall time = 129.451907 + 0: The maximum resident set size (KB) = 625788 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.346394 - 0: The maximum resident set size (KB) = 625356 + 0: The total amount of wall time = 126.789296 + 0: The maximum resident set size (KB) = 629516 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.206022 - 0: The maximum resident set size (KB) = 627332 + 0: The total amount of wall time = 131.716673 + 0: The maximum resident set size (KB) = 628424 Test 024 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.446234 - 0: The maximum resident set size (KB) = 625780 + 0: The total amount of wall time = 136.154723 + 0: The maximum resident set size (KB) = 629300 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 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.895399 -0: The maximum resident set size (KB) = 815636 +0: The total amount of wall time = 371.722474 +0: The maximum resident set size (KB) = 814384 Test 026 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.911059 - 0: The maximum resident set size (KB) = 760260 + 0: The total amount of wall time = 527.127368 + 0: The maximum resident set size (KB) = 764192 Test 027 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.895482 - 0: The maximum resident set size (KB) = 1259636 + 0: The total amount of wall time = 537.246100 + 0: The maximum resident set size (KB) = 1256908 Test 028 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 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 = 468.034792 - 0: The maximum resident set size (KB) = 1373656 + 0: The total amount of wall time = 469.553330 + 0: The maximum resident set size (KB) = 1367912 Test 029 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.288703 - 0: The maximum resident set size (KB) = 628420 + 0: The total amount of wall time = 87.494753 + 0: The maximum resident set size (KB) = 634244 Test 030 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/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 = 47.838021 - 0: The maximum resident set size (KB) = 482024 + 0: The total amount of wall time = 47.848540 + 0: The maximum resident set size (KB) = 485520 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.915281 - 0: The maximum resident set size (KB) = 631492 + 0: The total amount of wall time = 82.108024 + 0: The maximum resident set size (KB) = 627264 Test 032 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.405853 - 0: The maximum resident set size (KB) = 624964 + 0: The total amount of wall time = 136.600960 + 0: The maximum resident set size (KB) = 626252 Test 033 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.426706 - 0: The maximum resident set size (KB) = 624404 + 0: The total amount of wall time = 135.463009 + 0: The maximum resident set size (KB) = 634280 Test 034 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 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 = 165.003998 - 0: The maximum resident set size (KB) = 1608268 + 0: The total amount of wall time = 165.880706 + 0: The maximum resident set size (KB) = 1608340 Test 035 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.356914 - 0: The maximum resident set size (KB) = 1604816 + 0: The total amount of wall time = 308.577364 + 0: The maximum resident set size (KB) = 1603060 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 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 = 87.930660 - 0: The maximum resident set size (KB) = 875296 + 0: The total amount of wall time = 87.497129 + 0: The maximum resident set size (KB) = 876620 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,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 = 171.885267 - 0: The maximum resident set size (KB) = 1589320 + 0: The total amount of wall time = 172.974304 + 0: The maximum resident set size (KB) = 1587100 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,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 = 163.040566 - 0: The maximum resident set size (KB) = 1679900 + 0: The total amount of wall time = 161.810100 + 0: The maximum resident set size (KB) = 1682696 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,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 = 222.572411 - 0: The maximum resident set size (KB) = 1669356 + 0: The total amount of wall time = 222.677289 + 0: The maximum resident set size (KB) = 1676456 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 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.938281 - 0: The maximum resident set size (KB) = 1617048 + 0: The total amount of wall time = 190.554242 + 0: The maximum resident set size (KB) = 1608880 Test 041 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.394839 - 0: The maximum resident set size (KB) = 866784 + 0: The total amount of wall time = 298.562217 + 0: The maximum resident set size (KB) = 869136 Test 042 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_restart Checking test 043 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 = 151.106817 - 0: The maximum resident set size (KB) = 865956 + 0: The total amount of wall time = 152.682899 + 0: The maximum resident set size (KB) = 860392 Test 043 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.268822 - 0: The maximum resident set size (KB) = 859724 + 0: The total amount of wall time = 312.176830 + 0: The maximum resident set size (KB) = 857456 Test 044 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.108947 - 0: The maximum resident set size (KB) = 844828 + 0: The total amount of wall time = 182.596303 + 0: The maximum resident set size (KB) = 846156 Test 045 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 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 = 320.001662 - 0: The maximum resident set size (KB) = 860736 + 0: The total amount of wall time = 317.167747 + 0: The maximum resident set size (KB) = 851644 Test 046 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.037994 - 0: The maximum resident set size (KB) = 863192 + 0: The total amount of wall time = 291.407167 + 0: The maximum resident set size (KB) = 856844 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.287540 - 0: The maximum resident set size (KB) = 866488 + 0: The total amount of wall time = 297.408586 + 0: The maximum resident set size (KB) = 866120 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.239979 - 0: The maximum resident set size (KB) = 624884 + 0: The total amount of wall time = 374.694596 + 0: The maximum resident set size (KB) = 626884 Test 049 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 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 = 458.459834 - 0: The maximum resident set size (KB) = 1058396 + 0: The total amount of wall time = 459.394314 + 0: The maximum resident set size (KB) = 1062140 Test 050 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 281.244889 - 0: The maximum resident set size (KB) = 1175320 + 0: The total amount of wall time = 282.957084 + 0: The maximum resident set size (KB) = 1177276 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 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 = 482.032232 - 0: The maximum resident set size (KB) = 1005756 + 0: The total amount of wall time = 480.163775 + 0: The maximum resident set size (KB) = 1001972 Test 052 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 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 = 442.994372 - 0: The maximum resident set size (KB) = 1136076 + 0: The total amount of wall time = 440.152835 + 0: The maximum resident set size (KB) = 1140204 Test 053 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 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 = 234.671492 - 0: The maximum resident set size (KB) = 965004 + 0: The total amount of wall time = 236.267987 + 0: The maximum resident set size (KB) = 975880 Test 054 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 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 = 455.524313 - 0: The maximum resident set size (KB) = 1057996 + 0: The total amount of wall time = 452.335391 + 0: The maximum resident set size (KB) = 1066060 Test 055 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 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 = 479.247406 - 0: The maximum resident set size (KB) = 1004608 + 0: The total amount of wall time = 475.251244 + 0: The maximum resident set size (KB) = 1000716 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 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 = 339.490107 - 0: The maximum resident set size (KB) = 988072 + 0: The total amount of wall time = 340.898634 + 0: The maximum resident set size (KB) = 990956 Test 057 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 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 = 437.496358 - 0: The maximum resident set size (KB) = 1059360 + 0: The total amount of wall time = 434.248023 + 0: The maximum resident set size (KB) = 1062524 Test 058 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 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 = 459.952156 - 0: The maximum resident set size (KB) = 996124 + 0: The total amount of wall time = 457.309173 + 0: The maximum resident set size (KB) = 997028 Test 059 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 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 = 418.101351 - 0: The maximum resident set size (KB) = 1130600 + 0: The total amount of wall time = 416.422574 + 0: The maximum resident set size (KB) = 1134088 Test 060 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 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 = 328.592693 - 0: The maximum resident set size (KB) = 989072 + 0: The total amount of wall time = 331.664037 + 0: The maximum resident set size (KB) = 989964 Test 061 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 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 = 448.629999 - 0: The maximum resident set size (KB) = 1058256 + 0: The total amount of wall time = 447.564087 + 0: The maximum resident set size (KB) = 1057164 Test 062 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.945663 - 0: The maximum resident set size (KB) = 696632 + 0: The total amount of wall time = 523.309943 + 0: The maximum resident set size (KB) = 696876 Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.859546 - 0: The maximum resident set size (KB) = 753104 + 0: The total amount of wall time = 512.694860 + 0: The maximum resident set size (KB) = 757720 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.391351 - 0: The maximum resident set size (KB) = 932832 + 0: The total amount of wall time = 123.218789 + 0: The maximum resident set size (KB) = 926988 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,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 = 138.476146 - 0: The maximum resident set size (KB) = 958884 + 0: The total amount of wall time = 138.714842 + 0: The maximum resident set size (KB) = 959432 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.798458 - 0: The maximum resident set size (KB) = 933904 + 0: The total amount of wall time = 123.666332 + 0: The maximum resident set size (KB) = 941492 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.117618 - 0: The maximum resident set size (KB) = 880792 + 0: The total amount of wall time = 77.680604 + 0: The maximum resident set size (KB) = 879160 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.296862 - 0: The maximum resident set size (KB) = 883828 + 0: The total amount of wall time = 79.358287 + 0: The maximum resident set size (KB) = 841808 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.375465 - 0: The maximum resident set size (KB) = 727780 + 0: The total amount of wall time = 344.923587 + 0: The maximum resident set size (KB) = 729908 Test 070 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.237095 - 0: The maximum resident set size (KB) = 721180 + 0: The total amount of wall time = 339.481133 + 0: The maximum resident set size (KB) = 725636 Test 071 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.678938 - 0: The maximum resident set size (KB) = 718200 + 0: The total amount of wall time = 181.362474 + 0: The maximum resident set size (KB) = 716432 Test 072 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.702744 - 0: The maximum resident set size (KB) = 646464 + 0: The total amount of wall time = 112.710947 + 0: The maximum resident set size (KB) = 640964 Test 073 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 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 = 151.506548 - 0: The maximum resident set size (KB) = 1612476 + 0: The total amount of wall time = 152.263484 + 0: The maximum resident set size (KB) = 1604468 Test 074 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.407251 - 0: The maximum resident set size (KB) = 865456 + 0: The total amount of wall time = 270.795314 + 0: The maximum resident set size (KB) = 876860 Test 075 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm_debug Checking test 076 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 = 730.537497 - 0: The maximum resident set size (KB) = 962028 + 0: The total amount of wall time = 719.223485 + 0: The maximum resident set size (KB) = 957964 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_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 = 722.366854 - 0: The maximum resident set size (KB) = 969296 + 0: The total amount of wall time = 733.510105 + 0: The maximum resident set size (KB) = 967428 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.291863 - 0: The maximum resident set size (KB) = 794188 + 0: The total amount of wall time = 164.924528 + 0: The maximum resident set size (KB) = 791884 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wrtGauss_netcdf_parallel_debug Checking test 079 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 = 151.047924 - 0: The maximum resident set size (KB) = 797668 + 0: The total amount of wall time = 153.386877 + 0: The maximum resident set size (KB) = 793264 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy_debug Checking test 080 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 = 171.780222 - 0: The maximum resident set size (KB) = 802796 + 0: The total amount of wall time = 168.953407 + 0: The maximum resident set size (KB) = 805064 Test 080 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_lndp_debug Checking test 081 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 = 158.300093 - 0: The maximum resident set size (KB) = 797044 + 0: The total amount of wall time = 154.286806 + 0: The maximum resident set size (KB) = 798012 Test 081 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmg_debug Checking test 082 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 = 233.602358 - 0: The maximum resident set size (KB) = 847336 + 0: The total amount of wall time = 227.105837 + 0: The maximum resident set size (KB) = 848112 Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmgt_debug Checking test 083 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 = 228.382083 - 0: The maximum resident set size (KB) = 845796 + 0: The total amount of wall time = 229.357215 + 0: The maximum resident set size (KB) = 844540 Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_ras_debug Checking test 084 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 = 156.630867 - 0: The maximum resident set size (KB) = 802064 + 0: The total amount of wall time = 154.742449 + 0: The maximum resident set size (KB) = 809836 Test 084 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_diag_debug Checking test 085 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 = 158.052735 - 0: The maximum resident set size (KB) = 850884 + 0: The total amount of wall time = 159.134798 + 0: The maximum resident set size (KB) = 855544 Test 085 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_debug_p8 Checking test 086 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 = 170.066833 - 0: The maximum resident set size (KB) = 1628656 + 0: The total amount of wall time = 171.053060 + 0: The maximum resident set size (KB) = 1627096 Test 086 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_debug Checking test 087 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 = 945.362287 - 0: The maximum resident set size (KB) = 890328 + 0: The total amount of wall time = 980.769904 + 0: The maximum resident set size (KB) = 890684 Test 087 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_debug Checking test 088 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.689615 - 0: The maximum resident set size (KB) = 1178200 + 0: The total amount of wall time = 267.877028 + 0: The maximum resident set size (KB) = 1174588 Test 088 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_debug Checking test 089 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 = 275.040215 - 0: The maximum resident set size (KB) = 1174648 + 0: The total amount of wall time = 267.320549 + 0: The maximum resident set size (KB) = 1180204 Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_unified_drag_suite_debug Checking test 090 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.036111 - 0: The maximum resident set size (KB) = 1178160 + 0: The total amount of wall time = 273.998432 + 0: The maximum resident set size (KB) = 1172736 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_diag_debug Checking test 091 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 = 294.914979 - 0: The maximum resident set size (KB) = 1258596 + 0: The total amount of wall time = 291.332677 + 0: The maximum resident set size (KB) = 1259920 Test 091 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_cires_ugwp_debug Checking test 092 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.293363 - 0: The maximum resident set size (KB) = 1175708 + 0: The total amount of wall time = 277.293282 + 0: The maximum resident set size (KB) = 1179608 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_unified_ugwp_debug Checking test 093 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 = 280.286621 - 0: The maximum resident set size (KB) = 1182468 + 0: The total amount of wall time = 277.960528 + 0: The maximum resident set size (KB) = 1178544 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_lndp_debug Checking test 094 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.468894 - 0: The maximum resident set size (KB) = 1177284 + 0: The total amount of wall time = 278.501474 + 0: The maximum resident set size (KB) = 1176788 Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_flake_debug Checking test 095 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.546932 - 0: The maximum resident set size (KB) = 1176492 + 0: The total amount of wall time = 272.237475 + 0: The maximum resident set size (KB) = 1177592 Test 095 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_progcld_thompson_debug Checking test 096 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 = 273.543455 - 0: The maximum resident set size (KB) = 1170392 + 0: The total amount of wall time = 276.068067 + 0: The maximum resident set size (KB) = 1171852 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_noah_debug Checking test 097 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 = 270.375590 - 0: The maximum resident set size (KB) = 1177140 + 0: The total amount of wall time = 267.207306 + 0: The maximum resident set size (KB) = 1172220 Test 097 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_debug Checking test 098 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.508813 - 0: The maximum resident set size (KB) = 1179492 + 0: The total amount of wall time = 273.794176 + 0: The maximum resident set size (KB) = 1179440 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 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 = 454.815006 - 0: The maximum resident set size (KB) = 1181444 + 0: The total amount of wall time = 451.090943 + 0: The maximum resident set size (KB) = 1178448 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1beta_debug Checking test 100 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 = 276.600420 - 0: The maximum resident set size (KB) = 1171876 + 0: The total amount of wall time = 268.916347 + 0: The maximum resident set size (KB) = 1175400 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.123733 - 0: The maximum resident set size (KB) = 525512 + 0: The total amount of wall time = 281.295147 + 0: The maximum resident set size (KB) = 523580 Test 101 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.974737 - 0: The maximum resident set size (KB) = 1072804 + 0: The total amount of wall time = 260.267998 + 0: The maximum resident set size (KB) = 1071404 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 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 = 371.223068 - 0: The maximum resident set size (KB) = 1001580 + 0: The total amount of wall time = 368.248261 + 0: The maximum resident set size (KB) = 1003068 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 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 = 193.976229 - 0: The maximum resident set size (KB) = 955352 + 0: The total amount of wall time = 192.142439 + 0: The maximum resident set size (KB) = 955188 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 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 = 358.358049 - 0: The maximum resident set size (KB) = 1027760 + 0: The total amount of wall time = 356.874466 + 0: The maximum resident set size (KB) = 1019924 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 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.343973 - 0: The maximum resident set size (KB) = 1007836 + 0: The total amount of wall time = 190.920009 + 0: The maximum resident set size (KB) = 1004788 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 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 = 205.927672 - 0: The maximum resident set size (KB) = 893228 + 0: The total amount of wall time = 204.124471 + 0: The maximum resident set size (KB) = 896016 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 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 = 280.965069 - 0: The maximum resident set size (KB) = 951936 + 0: The total amount of wall time = 281.821556 + 0: The maximum resident set size (KB) = 956944 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 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 = 101.344810 - 0: The maximum resident set size (KB) = 864488 + 0: The total amount of wall time = 100.032544 + 0: The maximum resident set size (KB) = 860388 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 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 = 241.256880 - 0: The maximum resident set size (KB) = 966404 + 0: The total amount of wall time = 243.079879 + 0: The maximum resident set size (KB) = 971208 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_debug_dyn32_phy32 Checking test 111 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.053801 - 0: The maximum resident set size (KB) = 1057996 + 0: The total amount of wall time = 267.080847 + 0: The maximum resident set size (KB) = 1059904 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_debug_dyn32_phy32 Checking test 112 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.837924 - 0: The maximum resident set size (KB) = 1055868 + 0: The total amount of wall time = 265.377132 + 0: The maximum resident set size (KB) = 1055100 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn64_phy32_debug Checking test 113 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.101637 - 0: The maximum resident set size (KB) = 1103468 + 0: The total amount of wall time = 277.275136 + 0: The maximum resident set size (KB) = 1108788 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 235.229911 - 0: The maximum resident set size (KB) = 1047524 + 0: The total amount of wall time = 237.867617 + 0: The maximum resident set size (KB) = 1051100 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 326.439154 - 0: The maximum resident set size (KB) = 1419928 + 0: The total amount of wall time = 311.195404 + 0: The maximum resident set size (KB) = 1414648 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 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 = 381.120225 - 0: The maximum resident set size (KB) = 1218540 + 0: The total amount of wall time = 377.927932 + 0: The maximum resident set size (KB) = 1221392 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 739.672281 - 0: The maximum resident set size (KB) = 1254744 + 0: The total amount of wall time = 740.796278 + 0: The maximum resident set size (KB) = 1245468 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 841.696463 - 0: The maximum resident set size (KB) = 1268468 + 0: The total amount of wall time = 838.342541 + 0: The maximum resident set size (KB) = 1268808 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_1nest_atm Checking test 119 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 = 319.362189 - 0: The maximum resident set size (KB) = 505628 + 0: The total amount of wall time = 317.910671 + 0: The maximum resident set size (KB) = 508900 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 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 = 361.847535 - 0: The maximum resident set size (KB) = 514536 + 0: The total amount of wall time = 365.942565 + 0: The maximum resident set size (KB) = 516304 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_1nest_atm Checking test 121 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 = 145.116937 - 0: The maximum resident set size (KB) = 350708 + 0: The total amount of wall time = 145.880395 + 0: The maximum resident set size (KB) = 349028 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 423.175473 - 0: The maximum resident set size (KB) = 422920 + 0: The total amount of wall time = 417.417556 + 0: The maximum resident set size (KB) = 420212 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 200.676636 - 0: The maximum resident set size (KB) = 515744 + 0: The total amount of wall time = 202.052596 + 0: The maximum resident set size (KB) = 515772 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm Checking test 124 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 = 190.063512 - 0: The maximum resident set size (KB) = 516820 + 0: The total amount of wall time = 190.307876 + 0: The maximum resident set size (KB) = 515308 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 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 = 219.824409 - 0: The maximum resident set size (KB) = 555384 + 0: The total amount of wall time = 219.654921 + 0: The maximum resident set size (KB) = 553576 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_storm_following_1nest_atm Checking test 126 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 = 57.404873 - 0: The maximum resident set size (KB) = 365956 + 0: The total amount of wall time = 57.668594 + 0: The maximum resident set size (KB) = 364156 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 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 = 759.743454 - 0: The maximum resident set size (KB) = 580064 + 0: The total amount of wall time = 764.634133 + 0: The maximum resident set size (KB) = 578248 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 510.818798 - 0: The maximum resident set size (KB) = 614976 + 0: The total amount of wall time = 512.516634 + 0: The maximum resident set size (KB) = 610212 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 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 = 359.257492 - 0: The maximum resident set size (KB) = 1229384 + 0: The total amount of wall time = 358.628924 + 0: The maximum resident set size (KB) = 1230656 Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 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 = 356.895960 - 0: The maximum resident set size (KB) = 1218460 + 0: The total amount of wall time = 355.310059 + 0: The maximum resident set size (KB) = 1214840 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_datm_cdeps Checking test 131 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 = 952.182786 - 0: The maximum resident set size (KB) = 1037416 + 0: The total amount of wall time = 958.419860 + 0: The maximum resident set size (KB) = 1039164 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_cfsr Checking test 132 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 = 157.741103 - 0: The maximum resident set size (KB) = 1073440 + 0: The total amount of wall time = 153.943255 + 0: The maximum resident set size (KB) = 1054740 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_restart_cfsr Checking test 133 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 = 89.911671 - 0: The maximum resident set size (KB) = 1008232 + 0: The total amount of wall time = 92.489498 + 0: The maximum resident set size (KB) = 1032472 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_gefs Checking test 134 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 = 150.464029 - 0: The maximum resident set size (KB) = 963080 + 0: The total amount of wall time = 148.678979 + 0: The maximum resident set size (KB) = 962824 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_iau_gefs Checking test 135 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 = 151.907028 - 0: The maximum resident set size (KB) = 958828 + 0: The total amount of wall time = 151.295471 + 0: The maximum resident set size (KB) = 970272 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_stochy_gefs Checking test 136 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 = 152.089570 - 0: The maximum resident set size (KB) = 959532 + 0: The total amount of wall time = 149.789886 + 0: The maximum resident set size (KB) = 963736 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_ciceC_cfsr Checking test 137 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 = 154.253615 - 0: The maximum resident set size (KB) = 1055808 + 0: The total amount of wall time = 151.855048 + 0: The maximum resident set size (KB) = 1070508 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_bulk_cfsr Checking test 138 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 = 155.806443 - 0: The maximum resident set size (KB) = 1063180 + 0: The total amount of wall time = 156.543212 + 0: The maximum resident set size (KB) = 1051924 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_bulk_gefs Checking test 139 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 = 148.785525 - 0: The maximum resident set size (KB) = 971580 + 0: The total amount of wall time = 150.993030 + 0: The maximum resident set size (KB) = 966748 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 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 = 398.275132 - 0: The maximum resident set size (KB) = 880624 + 0: The total amount of wall time = 390.610895 + 0: The maximum resident set size (KB) = 875964 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 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 = 394.873227 - 0: The maximum resident set size (KB) = 928432 + 0: The total amount of wall time = 395.572061 + 0: The maximum resident set size (KB) = 929512 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_multiple_files_cfsr Checking test 142 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 = 155.733034 - 0: The maximum resident set size (KB) = 1068976 + 0: The total amount of wall time = 154.803578 + 0: The maximum resident set size (KB) = 1066960 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_3072x1536_cfsr Checking test 143 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.682919 - 0: The maximum resident set size (KB) = 2371740 + 0: The total amount of wall time = 213.853455 + 0: The maximum resident set size (KB) = 2363992 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_gfs Checking test 144 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 = 220.399154 - 0: The maximum resident set size (KB) = 2370372 + 0: The total amount of wall time = 218.138981 + 0: The maximum resident set size (KB) = 2356844 Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_debug_cfsr Checking test 145 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 = 458.832905 - 0: The maximum resident set size (KB) = 981680 + 0: The total amount of wall time = 448.727476 + 0: The maximum resident set size (KB) = 988168 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_cfsr_faster Checking test 146 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 = 156.750166 - 0: The maximum resident set size (KB) = 1056780 + 0: The total amount of wall time = 152.664752 + 0: The maximum resident set size (KB) = 1054596 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_lnd_gswp3 Checking test 147 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 @@ -4390,14 +4390,14 @@ Checking test 147 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.672772 - 0: The maximum resident set size (KB) = 262192 + 0: The total amount of wall time = 6.509896 + 0: The maximum resident set size (KB) = 261124 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_lnd_gswp3_rst Checking test 148 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 @@ -4406,14 +4406,14 @@ Checking test 148 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 = 11.662582 - 0: The maximum resident set size (KB) = 262532 + 0: The total amount of wall time = 12.241084 + 0: The maximum resident set size (KB) = 264844 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 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 = 200.767945 - 0: The maximum resident set size (KB) = 1607924 + 0: The total amount of wall time = 201.031888 + 0: The maximum resident set size (KB) = 1610320 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 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.519372 - 0: The maximum resident set size (KB) = 655840 + 0: The total amount of wall time = 86.705674 + 0: The maximum resident set size (KB) = 662124 Test 150 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 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 = 223.543866 - 0: The maximum resident set size (KB) = 2966784 + 0: The total amount of wall time = 226.480728 + 0: The maximum resident set size (KB) = 2972580 Test 151 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 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 = 276.827935 - 0: The maximum resident set size (KB) = 3044856 + 0: The total amount of wall time = 278.345437 + 0: The maximum resident set size (KB) = 3046132 Test 152 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 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 = 283.121304 - 0: The maximum resident set size (KB) = 3056008 + 0: The total amount of wall time = 281.488975 + 0: The maximum resident set size (KB) = 3056544 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 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 = 600.092247 - 0: The maximum resident set size (KB) = 1553136 + 0: The total amount of wall time = 599.078028 + 0: The maximum resident set size (KB) = 1559128 Test 154 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 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 = 1310.196567 - 0: The maximum resident set size (KB) = 1540868 + 0: The total amount of wall time = 1336.754267 + 0: The maximum resident set size (KB) = 1522452 Test 155 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 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 = 565.480555 - 0: The maximum resident set size (KB) = 1556264 + 0: The total amount of wall time = 566.003168 + 0: The maximum resident set size (KB) = 1554940 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 20:46:36 UTC 2023 -Elapsed time: 01h:13m:52s. Have a nice day! +Wed Mar 8 19:54:04 UTC 2023 +Elapsed time: 01h:21m:28s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d838d0c15b..bd65d7ca58 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 20:54:36 UTC 2023 +Wed Mar 8 18:55:21 UTC 2023 Start Regression test -Compile 001 elapsed time 1819 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 1861 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 2087 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 365 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 297 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1487 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 1543 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3337 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 1619 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1493 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 1395 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 1970 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 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 236 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 1376 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 1443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 220 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 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1636 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 247 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 2113 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 1632 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 296 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 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1491 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 1704 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1396 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 234 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1868 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8_mixedmode +Compile 001 elapsed time 1824 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 1845 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 1744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 345 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 321 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1473 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 1524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3339 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 1631 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1521 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 1439 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 2058 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 419 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 305 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 1520 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 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 260 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 303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1643 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 348 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 2148 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 1717 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 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -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 316 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 128 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1481 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 1641 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1554 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1507 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 304 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1861 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,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 = 481.930873 - 0: The maximum resident set size (KB) = 1744192 + 0: The total amount of wall time = 683.791575 + 0: The maximum resident set size (KB) = 1729780 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,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 = 370.222773 - 0: The maximum resident set size (KB) = 1622272 + 0: The total amount of wall time = 363.154698 + 0: The maximum resident set size (KB) = 1625372 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,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 = 532.133008 - 0: The maximum resident set size (KB) = 1765052 + 0: The total amount of wall time = 707.862081 + 0: The maximum resident set size (KB) = 1793460 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,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 = 305.209177 - 0: The maximum resident set size (KB) = 1487836 + 0: The total amount of wall time = 451.847081 + 0: The maximum resident set size (KB) = 1479724 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 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 = 571.013844 - 0: The maximum resident set size (KB) = 1974616 + 0: The total amount of wall time = 756.663293 + 0: The maximum resident set size (KB) = 1985304 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 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 = 537.817658 - 0: The maximum resident set size (KB) = 1766484 + 0: The total amount of wall time = 740.404861 + 0: The maximum resident set size (KB) = 1778580 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 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 = 470.631721 - 0: The maximum resident set size (KB) = 1725116 + 0: The total amount of wall time = 673.062523 + 0: The maximum resident set size (KB) = 1728776 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 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 = 540.864053 - 0: The maximum resident set size (KB) = 1774544 + 0: The total amount of wall time = 729.343494 + 0: The maximum resident set size (KB) = 1765228 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 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 = 426.947366 - 0: The maximum resident set size (KB) = 1631608 + 0: The total amount of wall time = 409.753800 + 0: The maximum resident set size (KB) = 1621492 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 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 = 417.737924 - 0: The maximum resident set size (KB) = 1672304 + 0: The total amount of wall time = 452.686962 + 0: The maximum resident set size (KB) = 1665712 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 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 = 884.254491 - 0: The maximum resident set size (KB) = 1820336 + 0: The total amount of wall time = 939.189305 + 0: The maximum resident set size (KB) = 1841704 Test 011 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 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 = 557.132272 - 0: The maximum resident set size (KB) = 1656012 + 0: The total amount of wall time = 547.893347 + 0: The maximum resident set size (KB) = 1641280 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,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 - 0: The total amount of wall time = 458.116892 - 0: The maximum resident set size (KB) = 1669924 + 0: The total amount of wall time = 633.276279 + 0: The maximum resident set size (KB) = 1663476 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,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 - 0: The total amount of wall time = 819.064134 - 0: The maximum resident set size (KB) = 2765044 + 0: The total amount of wall time = 848.341307 + 0: The maximum resident set size (KB) = 2763696 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,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 - 0: The total amount of wall time = 237.153569 - 0: The maximum resident set size (KB) = 2756348 + 0: The total amount of wall time = 228.691936 + 0: The maximum resident set size (KB) = 2758232 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,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 - 0: The total amount of wall time = 125.158306 - 0: The maximum resident set size (KB) = 2207684 + 0: The total amount of wall time = 128.150810 + 0: The maximum resident set size (KB) = 2211144 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 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 = 489.886191 - 0: The maximum resident set size (KB) = 1769424 + 0: The total amount of wall time = 763.586233 + 0: The maximum resident set size (KB) = 1771124 Test 017 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 213.309451 - 0: The maximum resident set size (KB) = 577320 + 0: The total amount of wall time = 199.323795 + 0: The maximum resident set size (KB) = 569964 Test 018 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 208.540092 - 0: The maximum resident set size (KB) = 573292 + 0: The total amount of wall time = 205.602726 + 0: The maximum resident set size (KB) = 573008 Test 019 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,16 +1193,16 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.440110 - 0: The maximum resident set size (KB) = 575356 + 0: The total amount of wall time = 211.959324 + 0: The maximum resident set size (KB) = 581740 Test 020 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wrtGauss_netcdf_parallel Checking test 021 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 @@ -1211,14 +1211,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.884787 - 0: The maximum resident set size (KB) = 575408 + 0: The total amount of wall time = 207.324487 + 0: The maximum resident set size (KB) = 575780 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,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 -0: The total amount of wall time = 600.404826 -0: The maximum resident set size (KB) = 790288 +0: The total amount of wall time = 614.980120 +0: The maximum resident set size (KB) = 790460 Test 022 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 781.511659 - 0: The maximum resident set size (KB) = 696596 + 0: The total amount of wall time = 988.033522 + 0: The maximum resident set size (KB) = 685460 Test 023 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1003.951843 - 0: The maximum resident set size (KB) = 1053624 + 0: The total amount of wall time = 1235.794799 + 0: The maximum resident set size (KB) = 1057972 Test 024 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,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 - 0: The total amount of wall time = 861.081008 - 0: The maximum resident set size (KB) = 1187416 + 0: The total amount of wall time = 1060.331939 + 0: The maximum resident set size (KB) = 1185568 Test 025 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 134.181160 - 0: The maximum resident set size (KB) = 579892 + 0: The total amount of wall time = 151.455101 + 0: The maximum resident set size (KB) = 575808 Test 026 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/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 - 0: The total amount of wall time = 69.803603 - 0: The maximum resident set size (KB) = 393024 + 0: The total amount of wall time = 142.097005 + 0: The maximum resident set size (KB) = 400420 Test 027 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.628269 - 0: The maximum resident set size (KB) = 577840 + 0: The total amount of wall time = 144.500487 + 0: The maximum resident set size (KB) = 575892 Test 028 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.254223 - 0: The maximum resident set size (KB) = 575692 + 0: The total amount of wall time = 228.693334 + 0: The maximum resident set size (KB) = 573880 Test 029 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.589832 - 0: The maximum resident set size (KB) = 574904 + 0: The total amount of wall time = 318.217086 + 0: The maximum resident set size (KB) = 573108 Test 030 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,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 - 0: The total amount of wall time = 259.864475 - 0: The maximum resident set size (KB) = 1546640 + 0: The total amount of wall time = 400.176559 + 0: The maximum resident set size (KB) = 1541260 Test 031 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 494.979007 - 0: The maximum resident set size (KB) = 1536004 + 0: The total amount of wall time = 653.499956 + 0: The maximum resident set size (KB) = 1536820 Test 032 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 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 = 121.221951 - 0: The maximum resident set size (KB) = 775752 + 0: The total amount of wall time = 204.595908 + 0: The maximum resident set size (KB) = 783308 Test 033 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,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 - 0: The total amount of wall time = 265.952019 - 0: The maximum resident set size (KB) = 1538020 + 0: The total amount of wall time = 1769.322418 + 0: The maximum resident set size (KB) = 1529496 Test 034 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,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 - 0: The total amount of wall time = 247.024152 - 0: The maximum resident set size (KB) = 1624384 + 0: The total amount of wall time = 377.149442 + 0: The maximum resident set size (KB) = 1619336 Test 035 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 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 = 331.347898 - 0: The maximum resident set size (KB) = 1613992 + 0: The total amount of wall time = 436.178142 + 0: The maximum resident set size (KB) = 1601964 Test 036 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 037 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 = 296.523132 - 0: The maximum resident set size (KB) = 1547876 + 0: The total amount of wall time = 362.081238 + 0: The maximum resident set size (KB) = 1537396 Test 037 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 484.766751 - 0: The maximum resident set size (KB) = 788416 + 0: The total amount of wall time = 632.636828 + 0: The maximum resident set size (KB) = 787876 Test 038 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_restart Checking test 039 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 = 218.191945 - 0: The maximum resident set size (KB) = 781688 + 0: The total amount of wall time = 368.405306 + 0: The maximum resident set size (KB) = 777580 Test 039 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1821,14 +1821,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 496.966861 - 0: The maximum resident set size (KB) = 782088 + 0: The total amount of wall time = 661.615500 + 0: The maximum resident set size (KB) = 785452 Test 040 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 303.167285 - 0: The maximum resident set size (KB) = 768008 + 0: The total amount of wall time = 348.373109 + 0: The maximum resident set size (KB) = 770332 Test 041 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_noquilt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1854,28 +1854,28 @@ Checking test 042 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 = 512.444859 - 0: The maximum resident set size (KB) = 775768 + 0: The total amount of wall time = 659.316036 + 0: The maximum resident set size (KB) = 770480 Test 042 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_netcdf_parallel Checking test 043 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 = 480.778267 - 0: The maximum resident set size (KB) = 782368 + 0: The total amount of wall time = 628.653173 + 0: The maximum resident set size (KB) = 779684 Test 043 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1886,14 +1886,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 474.587836 - 0: The maximum resident set size (KB) = 786944 + 0: The total amount of wall time = 616.992044 + 0: The maximum resident set size (KB) = 784728 Test 044 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_wofs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 587.195974 - 0: The maximum resident set size (KB) = 520112 + 0: The total amount of wall time = 766.341639 + 0: The maximum resident set size (KB) = 518112 Test 045 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 046 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 = 655.315928 - 0: The maximum resident set size (KB) = 946472 + 0: The total amount of wall time = 842.653759 + 0: The maximum resident set size (KB) = 947848 Test 046 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_spp_sppt_shum_skeb Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 463.307940 - 0: The maximum resident set size (KB) = 1083032 + 0: The total amount of wall time = 517.203684 + 0: The maximum resident set size (KB) = 1092084 Test 047 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_decomp Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 048 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 = 681.410396 - 0: The maximum resident set size (KB) = 948944 + 0: The total amount of wall time = 859.558204 + 0: The maximum resident set size (KB) = 952780 Test 048 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2084,14 +2084,14 @@ Checking test 049 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 = 655.404284 - 0: The maximum resident set size (KB) = 1026916 + 0: The total amount of wall time = 800.263347 + 0: The maximum resident set size (KB) = 1019456 Test 049 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 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 = 323.433487 - 0: The maximum resident set size (KB) = 830956 + 0: The total amount of wall time = 441.102805 + 0: The maximum resident set size (KB) = 830600 Test 050 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 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 = 659.451140 - 0: The maximum resident set size (KB) = 944480 + 0: The total amount of wall time = 796.251377 + 0: The maximum resident set size (KB) = 943816 Test 051 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_decomp Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 704.741926 - 0: The maximum resident set size (KB) = 956092 + 0: The total amount of wall time = 833.289686 + 0: The maximum resident set size (KB) = 956516 Test 052 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_restart Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 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 = 456.295016 - 0: The maximum resident set size (KB) = 846636 + 0: The total amount of wall time = 714.126902 + 0: The maximum resident set size (KB) = 834916 Test 053 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 640.406957 - 0: The maximum resident set size (KB) = 947308 + 0: The total amount of wall time = 758.048361 + 0: The maximum resident set size (KB) = 963892 Test 054 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_decomp Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 658.736104 - 0: The maximum resident set size (KB) = 951388 + 0: The total amount of wall time = 880.811062 + 0: The maximum resident set size (KB) = 940720 Test 055 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_2threads Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 611.254131 - 0: The maximum resident set size (KB) = 1023852 + 0: The total amount of wall time = 772.988201 + 0: The maximum resident set size (KB) = 1011244 Test 056 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_restart Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 438.502149 - 0: The maximum resident set size (KB) = 840812 + 0: The total amount of wall time = 647.873323 + 0: The maximum resident set size (KB) = 835744 Test 057 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1beta Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 657.223589 - 0: The maximum resident set size (KB) = 956132 + 0: The total amount of wall time = 832.514271 + 0: The maximum resident set size (KB) = 937168 Test 058 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1nssl Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 763.764884 - 0: The maximum resident set size (KB) = 637728 + 0: The total amount of wall time = 887.479186 + 0: The maximum resident set size (KB) = 640780 Test 059 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1nssl_nohailnoccn Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 742.812850 - 0: The maximum resident set size (KB) = 628356 + 0: The total amount of wall time = 898.866218 + 0: The maximum resident set size (KB) = 630464 Test 060 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 173.216919 - 0: The maximum resident set size (KB) = 846180 + 0: The total amount of wall time = 199.334452 + 0: The maximum resident set size (KB) = 850092 Test 061 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 220.527790 - 0: The maximum resident set size (KB) = 888052 + 0: The total amount of wall time = 217.010434 + 0: The maximum resident set size (KB) = 869444 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 188.588605 - 0: The maximum resident set size (KB) = 861648 + 0: The total amount of wall time = 222.116908 + 0: The maximum resident set size (KB) = 845848 Test 063 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm_2threads Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 119.143406 - 0: The maximum resident set size (KB) = 818024 + 0: The total amount of wall time = 569.901820 + 0: The maximum resident set size (KB) = 818856 Test 064 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm_2threads Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.900336 - 0: The maximum resident set size (KB) = 830400 + 0: The total amount of wall time = 135.305223 + 0: The maximum resident set size (KB) = 828444 Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 487.873572 - 0: The maximum resident set size (KB) = 662432 + 0: The total amount of wall time = 612.792777 + 0: The maximum resident set size (KB) = 667432 Test 066 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2706,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 482.126790 - 0: The maximum resident set size (KB) = 667636 + 0: The total amount of wall time = 616.190662 + 0: The maximum resident set size (KB) = 668032 Test 067 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2724,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 263.023646 - 0: The maximum resident set size (KB) = 635344 + 0: The total amount of wall time = 330.547458 + 0: The maximum resident set size (KB) = 633212 Test 068 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 165.658280 - 0: The maximum resident set size (KB) = 478248 + 0: The total amount of wall time = 219.663369 + 0: The maximum resident set size (KB) = 480812 Test 069 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 070 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 = 220.299724 - 0: The maximum resident set size (KB) = 1534468 + 0: The total amount of wall time = 392.429243 + 0: The maximum resident set size (KB) = 1535820 Test 070 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,42 +2808,42 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 421.336900 - 0: The maximum resident set size (KB) = 781332 + 0: The total amount of wall time = 647.912693 + 0: The maximum resident set size (KB) = 790660 Test 071 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm_debug Checking test 072 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 = 959.185523 - 0: The maximum resident set size (KB) = 873312 + 0: The total amount of wall time = 972.255473 + 0: The maximum resident set size (KB) = 876704 Test 072 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_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 = 978.913003 - 0: The maximum resident set size (KB) = 883536 + 0: The total amount of wall time = 1025.151578 + 0: The maximum resident set size (KB) = 878508 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2870,334 +2870,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 218.735442 - 0: The maximum resident set size (KB) = 732480 + 0: The total amount of wall time = 237.342675 + 0: The maximum resident set size (KB) = 734076 Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wrtGauss_netcdf_parallel_debug Checking test 075 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 = 205.304455 - 0: The maximum resident set size (KB) = 731744 + 0: The total amount of wall time = 219.007639 + 0: The maximum resident set size (KB) = 733620 Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy_debug Checking test 076 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 = 241.339510 - 0: The maximum resident set size (KB) = 739904 + 0: The total amount of wall time = 230.598194 + 0: The maximum resident set size (KB) = 743852 Test 076 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_lndp_debug Checking test 077 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 = 205.631883 - 0: The maximum resident set size (KB) = 743732 + 0: The total amount of wall time = 246.761096 + 0: The maximum resident set size (KB) = 739076 Test 077 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmg_debug Checking test 078 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 = 312.486821 - 0: The maximum resident set size (KB) = 781988 + 0: The total amount of wall time = 369.323997 + 0: The maximum resident set size (KB) = 786664 Test 078 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmgt_debug Checking test 079 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 = 307.761908 - 0: The maximum resident set size (KB) = 787276 + 0: The total amount of wall time = 371.344112 + 0: The maximum resident set size (KB) = 785304 Test 079 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_ras_debug Checking test 080 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 = 204.685135 - 0: The maximum resident set size (KB) = 744304 + 0: The total amount of wall time = 213.311965 + 0: The maximum resident set size (KB) = 750564 Test 080 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_diag_debug Checking test 081 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 = 214.079103 - 0: The maximum resident set size (KB) = 788428 + 0: The total amount of wall time = 234.943673 + 0: The maximum resident set size (KB) = 790132 Test 081 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_debug_p8 Checking test 082 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 = 237.494038 - 0: The maximum resident set size (KB) = 1550464 + 0: The total amount of wall time = 298.196908 + 0: The maximum resident set size (KB) = 1549504 Test 082 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_debug Checking test 083 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 = 1292.981981 - 0: The maximum resident set size (KB) = 795260 + 0: The total amount of wall time = 1375.873103 + 0: The maximum resident set size (KB) = 802680 Test 083 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_debug Checking test 084 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 = 368.433963 - 0: The maximum resident set size (KB) = 1114656 + 0: The total amount of wall time = 390.249227 + 0: The maximum resident set size (KB) = 1112264 Test 084 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_debug Checking test 085 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 = 359.510301 - 0: The maximum resident set size (KB) = 1113280 + 0: The total amount of wall time = 378.632359 + 0: The maximum resident set size (KB) = 1108680 Test 085 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_unified_drag_suite_debug Checking test 086 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 = 367.940447 - 0: The maximum resident set size (KB) = 1113240 + 0: The total amount of wall time = 407.960695 + 0: The maximum resident set size (KB) = 1112228 Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_diag_debug Checking test 087 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 = 388.426704 - 0: The maximum resident set size (KB) = 1196692 + 0: The total amount of wall time = 411.326910 + 0: The maximum resident set size (KB) = 1189592 Test 087 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_cires_ugwp_debug Checking test 088 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 = 371.696743 - 0: The maximum resident set size (KB) = 1117424 + 0: The total amount of wall time = 390.827664 + 0: The maximum resident set size (KB) = 1108492 Test 088 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_unified_ugwp_debug Checking test 089 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 = 376.372158 - 0: The maximum resident set size (KB) = 1121464 + 0: The total amount of wall time = 390.290907 + 0: The maximum resident set size (KB) = 1113880 Test 089 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_lndp_debug Checking test 090 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 = 371.516740 - 0: The maximum resident set size (KB) = 1110868 + 0: The total amount of wall time = 406.825957 + 0: The maximum resident set size (KB) = 1113688 Test 090 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_flake_debug Checking test 091 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 = 367.410579 - 0: The maximum resident set size (KB) = 1110640 + 0: The total amount of wall time = 377.320185 + 0: The maximum resident set size (KB) = 1111872 Test 091 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_progcld_thompson_debug Checking test 092 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 = 367.238762 - 0: The maximum resident set size (KB) = 1116468 + 0: The total amount of wall time = 413.249352 + 0: The maximum resident set size (KB) = 1112764 Test 092 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_noah_debug Checking test 093 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 = 367.368554 - 0: The maximum resident set size (KB) = 1110948 + 0: The total amount of wall time = 444.832079 + 0: The maximum resident set size (KB) = 1113880 Test 093 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_debug Checking test 094 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 = 370.960867 - 0: The maximum resident set size (KB) = 1109784 + 0: The total amount of wall time = 414.518187 + 0: The maximum resident set size (KB) = 1113708 Test 094 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 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 = 600.586095 - 0: The maximum resident set size (KB) = 1106700 + 0: The total amount of wall time = 636.620864 + 0: The maximum resident set size (KB) = 1106592 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1beta_debug Checking test 096 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 = 358.422252 - 0: The maximum resident set size (KB) = 1105944 + 0: The total amount of wall time = 380.741406 + 0: The maximum resident set size (KB) = 1104848 Test 096 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 369.269632 - 0: The maximum resident set size (KB) = 433708 + 0: The total amount of wall time = 390.106107 + 0: The maximum resident set size (KB) = 436708 Test 097 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 391.386536 - 0: The maximum resident set size (KB) = 981032 + 0: The total amount of wall time = 525.807822 + 0: The maximum resident set size (KB) = 976528 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 099 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 = 514.524499 - 0: The maximum resident set size (KB) = 852176 + 0: The total amount of wall time = 755.591214 + 0: The maximum resident set size (KB) = 847208 Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 100 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 = 263.934005 - 0: The maximum resident set size (KB) = 838932 + 0: The total amount of wall time = 367.305519 + 0: The maximum resident set size (KB) = 829364 Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 101 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 = 519.529732 - 0: The maximum resident set size (KB) = 892268 + 0: The total amount of wall time = 827.934933 + 0: The maximum resident set size (KB) = 896300 Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 102 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 = 259.498445 - 0: The maximum resident set size (KB) = 889268 + 0: The total amount of wall time = 382.371462 + 0: The maximum resident set size (KB) = 882380 Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3478,14 +3478,14 @@ Checking test 103 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 = 288.869969 - 0: The maximum resident set size (KB) = 821412 + 0: The total amount of wall time = 405.766350 + 0: The maximum resident set size (KB) = 831504 Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 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 = 412.326692 - 0: The maximum resident set size (KB) = 811928 + 0: The total amount of wall time = 581.124102 + 0: The maximum resident set size (KB) = 801692 Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 105 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.477980 - 0: The maximum resident set size (KB) = 763780 + 0: The total amount of wall time = 197.480123 + 0: The maximum resident set size (KB) = 760668 Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,81 +3624,81 @@ Checking test 106 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 = 341.994295 - 0: The maximum resident set size (KB) = 865468 + 0: The total amount of wall time = 512.670729 + 0: The maximum resident set size (KB) = 870360 Test 106 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_debug_dyn32_phy32 Checking test 107 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 = 374.628026 - 0: The maximum resident set size (KB) = 998976 + 0: The total amount of wall time = 392.639636 + 0: The maximum resident set size (KB) = 997844 Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_debug_dyn32_phy32 Checking test 108 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 = 364.670160 - 0: The maximum resident set size (KB) = 998132 + 0: The total amount of wall time = 374.664665 + 0: The maximum resident set size (KB) = 994628 Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn64_phy32_debug Checking test 109 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 = 366.859984 - 0: The maximum resident set size (KB) = 1037592 + 0: The total amount of wall time = 409.180509 + 0: The maximum resident set size (KB) = 1032580 Test 109 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 385.821224 - 0: The maximum resident set size (KB) = 1210564 + 0: The total amount of wall time = 571.606991 + 0: The maximum resident set size (KB) = 1225268 Test 110 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 468.487860 - 0: The maximum resident set size (KB) = 1548844 + 0: The total amount of wall time = 807.742299 + 0: The maximum resident set size (KB) = 1553020 Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3707,14 +3707,14 @@ Checking test 112 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 = 594.212072 - 0: The maximum resident set size (KB) = 1295684 + 0: The total amount of wall time = 848.224113 + 0: The maximum resident set size (KB) = 1294328 Test 112 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3723,14 +3723,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 967.857531 - 0: The maximum resident set size (KB) = 1314888 + 0: The total amount of wall time = 1108.737662 + 0: The maximum resident set size (KB) = 1324564 Test 113 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1103.705343 - 0: The maximum resident set size (KB) = 1329524 + 0: The total amount of wall time = 1223.091107 + 0: The maximum resident set size (KB) = 1352212 Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 115 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 = 546.683695 - 0: The maximum resident set size (KB) = 1286620 + 0: The total amount of wall time = 656.573291 + 0: The maximum resident set size (KB) = 1309080 Test 115 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,131 +3771,131 @@ Checking test 116 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 = 525.276860 - 0: The maximum resident set size (KB) = 1298172 + 0: The total amount of wall time = 653.423473 + 0: The maximum resident set size (KB) = 1293252 Test 116 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_datm_cdeps +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_datm_cdeps Checking test 117 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 = 1418.732259 - 0: The maximum resident set size (KB) = 976112 + 0: The total amount of wall time = 1580.169509 + 0: The maximum resident set size (KB) = 972728 Test 117 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_cfsr Checking test 118 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 = 223.543730 - 0: The maximum resident set size (KB) = 964892 + 0: The total amount of wall time = 299.370901 + 0: The maximum resident set size (KB) = 960956 Test 118 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_restart_cfsr Checking test 119 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 = 155.112061 - 0: The maximum resident set size (KB) = 927900 + 0: The total amount of wall time = 132.075051 + 0: The maximum resident set size (KB) = 931812 Test 119 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_gefs Checking test 120 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 = 241.312781 - 0: The maximum resident set size (KB) = 859976 + 0: The total amount of wall time = 281.155619 + 0: The maximum resident set size (KB) = 865060 Test 120 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_iau_gefs Checking test 121 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 = 244.001531 - 0: The maximum resident set size (KB) = 865520 + 0: The total amount of wall time = 324.327793 + 0: The maximum resident set size (KB) = 859036 Test 121 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_stochy_gefs Checking test 122 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 = 218.587986 - 0: The maximum resident set size (KB) = 861144 + 0: The total amount of wall time = 335.703720 + 0: The maximum resident set size (KB) = 870752 Test 122 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_ciceC_cfsr Checking test 123 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 = 222.394226 - 0: The maximum resident set size (KB) = 958296 + 0: The total amount of wall time = 323.657266 + 0: The maximum resident set size (KB) = 962592 Test 123 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_bulk_cfsr Checking test 124 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 = 221.542384 - 0: The maximum resident set size (KB) = 959108 + 0: The total amount of wall time = 322.981942 + 0: The maximum resident set size (KB) = 963740 Test 124 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_bulk_gefs Checking test 125 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 = 243.264523 - 0: The maximum resident set size (KB) = 871720 + 0: The total amount of wall time = 284.136477 + 0: The maximum resident set size (KB) = 859820 Test 125 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3904,14 +3904,14 @@ Checking test 126 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 = 591.510513 - 0: The maximum resident set size (KB) = 766024 + 0: The total amount of wall time = 723.436741 + 0: The maximum resident set size (KB) = 765792 Test 126 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3920,77 +3920,77 @@ Checking test 127 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 = 588.067480 - 0: The maximum resident set size (KB) = 733524 + 0: The total amount of wall time = 637.126120 + 0: The maximum resident set size (KB) = 734252 Test 127 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_multiple_files_cfsr Checking test 128 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 = 219.836772 - 0: The maximum resident set size (KB) = 975820 + 0: The total amount of wall time = 287.569203 + 0: The maximum resident set size (KB) = 967216 Test 128 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_3072x1536_cfsr Checking test 129 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 = 356.840860 - 0: The maximum resident set size (KB) = 2255704 + 0: The total amount of wall time = 404.265118 + 0: The maximum resident set size (KB) = 2264740 Test 129 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_gfs Checking test 130 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 = 331.049397 - 0: The maximum resident set size (KB) = 2253036 + 0: The total amount of wall time = 404.355070 + 0: The maximum resident set size (KB) = 2261108 Test 130 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_debug_cfsr Checking test 131 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 = 589.781715 - 0: The maximum resident set size (KB) = 919460 + 0: The total amount of wall time = 623.646354 + 0: The maximum resident set size (KB) = 912204 Test 131 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_cfsr_faster Checking test 132 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 = 243.075286 - 0: The maximum resident set size (KB) = 969608 + 0: The total amount of wall time = 244.378737 + 0: The maximum resident set size (KB) = 970968 Test 132 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_lnd_gswp3 Checking test 133 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 @@ -3999,14 +3999,14 @@ Checking test 133 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 = 18.856970 - 0: The maximum resident set size (KB) = 250180 + 0: The total amount of wall time = 100.350839 + 0: The maximum resident set size (KB) = 252556 Test 133 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_lnd_gswp3_rst Checking test 134 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 @@ -4015,14 +4015,14 @@ Checking test 134 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 = 21.003845 - 0: The maximum resident set size (KB) = 247740 + 0: The total amount of wall time = 79.307586 + 0: The maximum resident set size (KB) = 250072 Test 134 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_atmlnd_sbs Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4107,14 +4107,14 @@ Checking test 135 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 = 332.302051 - 0: The maximum resident set size (KB) = 1587820 + 0: The total amount of wall time = 395.314040 + 0: The maximum resident set size (KB) = 1587148 Test 135 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_atmwav Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 136 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 = 126.765322 - 0: The maximum resident set size (KB) = 598892 + 0: The total amount of wall time = 163.146322 + 0: The maximum resident set size (KB) = 599796 Test 136 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8 Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4209,14 +4209,14 @@ Checking test 137 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 = 340.447418 - 0: The maximum resident set size (KB) = 1627124 + 0: The total amount of wall time = 432.566750 + 0: The maximum resident set size (KB) = 1636196 Test 137 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8_rad Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 138 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 = 437.317228 - 0: The maximum resident set size (KB) = 1680240 + 0: The total amount of wall time = 473.871058 + 0: The maximum resident set size (KB) = 1661328 Test 138 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8_rad_micro Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 139 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 = 414.714301 - 0: The maximum resident set size (KB) = 1664892 + 0: The total amount of wall time = 487.530446 + 0: The maximum resident set size (KB) = 1688740 Test 139 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_atmaq +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_atmaq Checking test 140 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 140 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 = 1212.742385 - 0: The maximum resident set size (KB) = 1400684 + 0: The total amount of wall time = 1109.786211 + 0: The maximum resident set size (KB) = 1356272 Test 140 regional_atmaq PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_atmaq_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_atmaq_faster Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4357,12 +4357,12 @@ Checking test 141 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 = 973.656915 - 0: The maximum resident set size (KB) = 1310140 + 0: The total amount of wall time = 1086.189996 + 0: The maximum resident set size (KB) = 1331168 Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 5 00:04:05 UTC 2023 -Elapsed time: 03h:09m:31s. Have a nice day! +Wed Mar 8 22:10:19 UTC 2023 +Elapsed time: 03h:14m:58s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5d3f2741a4..11a0677715 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 14:17:35 CST 2023 +Wed Mar 8 12:32:48 CST 2023 Start Regression test -Compile 001 elapsed time 726 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 742 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 724 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 299 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 255 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 614 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 860 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 582 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 602 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 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 704 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 222 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 214 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 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 232 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 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 604 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 216 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 751 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 215 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 558 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 619 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 557 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 499 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8_mixedmode +Compile 001 elapsed time 779 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 779 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 739 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 285 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 243 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 604 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 604 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 816 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 620 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 592 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 573 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 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 749 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 272 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 205 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 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 629 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 234 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 763 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 675 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 238 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 564 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_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 663 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,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 = 306.939084 - 0: The maximum resident set size (KB) = 3140872 + 0: The total amount of wall time = 336.877165 + 0: The maximum resident set size (KB) = 3144272 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,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 = 224.534147 - 0: The maximum resident set size (KB) = 1736076 + 0: The total amount of wall time = 258.080182 + 0: The maximum resident set size (KB) = 1737640 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,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.351986 - 0: The maximum resident set size (KB) = 3171408 + 0: The total amount of wall time = 348.464064 + 0: The maximum resident set size (KB) = 3168988 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,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 = 206.053221 - 0: The maximum resident set size (KB) = 3055624 + 0: The total amount of wall time = 203.959017 + 0: The maximum resident set size (KB) = 3048492 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 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 = 420.863784 - 0: The maximum resident set size (KB) = 3502956 + 0: The total amount of wall time = 412.334822 + 0: The maximum resident set size (KB) = 3504828 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 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 = 351.480057 - 0: The maximum resident set size (KB) = 3169476 + 0: The total amount of wall time = 346.288032 + 0: The maximum resident set size (KB) = 3170444 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 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 = 296.104032 - 0: The maximum resident set size (KB) = 3010960 + 0: The total amount of wall time = 287.880993 + 0: The maximum resident set size (KB) = 3029568 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 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 = 350.995024 - 0: The maximum resident set size (KB) = 3171496 + 0: The total amount of wall time = 344.185398 + 0: The maximum resident set size (KB) = 3177564 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 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 = 647.644302 - 0: The maximum resident set size (KB) = 3261196 + 0: The total amount of wall time = 654.942801 + 0: The maximum resident set size (KB) = 3260912 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 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 = 453.213638 - 0: The maximum resident set size (KB) = 3160000 + 0: The total amount of wall time = 452.276873 + 0: The maximum resident set size (KB) = 3150760 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 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 = 902.755554 - 0: The maximum resident set size (KB) = 3976732 + 0: The total amount of wall time = 904.233030 + 0: The maximum resident set size (KB) = 4043356 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 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 = 540.973742 - 0: The maximum resident set size (KB) = 3975996 + 0: The total amount of wall time = 548.726341 + 0: The maximum resident set size (KB) = 3961096 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,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 = 256.926023 - 0: The maximum resident set size (KB) = 1726604 + 0: The total amount of wall time = 258.001386 + 0: The maximum resident set size (KB) = 1715620 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,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 = 261.156068 - 0: The maximum resident set size (KB) = 1772112 + 0: The total amount of wall time = 263.748207 + 0: The maximum resident set size (KB) = 1759308 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,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 = 692.339565 - 0: The maximum resident set size (KB) = 3245860 + 0: The total amount of wall time = 708.047363 + 0: The maximum resident set size (KB) = 3259048 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,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 = 437.344061 - 0: The maximum resident set size (KB) = 1744084 + 0: The total amount of wall time = 442.657797 + 0: The maximum resident set size (KB) = 1742824 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,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 = 265.702473 - 0: The maximum resident set size (KB) = 1768944 + 0: The total amount of wall time = 296.103265 + 0: The maximum resident set size (KB) = 1764448 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,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 = 505.315391 - 0: The maximum resident set size (KB) = 2788164 + 0: The total amount of wall time = 497.181790 + 0: The maximum resident set size (KB) = 2803224 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,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 = 136.020603 - 0: The maximum resident set size (KB) = 2805808 + 0: The total amount of wall time = 138.730575 + 0: The maximum resident set size (KB) = 2798928 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,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 = 74.475997 - 0: The maximum resident set size (KB) = 2243520 + 0: The total amount of wall time = 94.986656 + 0: The maximum resident set size (KB) = 2221576 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 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 = 330.252678 - 0: The maximum resident set size (KB) = 3175916 + 0: The total amount of wall time = 322.848716 + 0: The maximum resident set size (KB) = 3183744 Test 021 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.636819 - 0: The maximum resident set size (KB) = 625976 + 0: The total amount of wall time = 131.151760 + 0: The maximum resident set size (KB) = 629300 Test 022 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid_parallel Checking test 023 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 = 129.819174 - 0: The maximum resident set size (KB) = 628296 + 0: The total amount of wall time = 128.162073 + 0: The maximum resident set size (KB) = 630492 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,16 +1423,16 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.817468 - 0: The maximum resident set size (KB) = 592912 + 0: The total amount of wall time = 133.736516 + 0: The maximum resident set size (KB) = 634324 Test 024 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wrtGauss_netcdf_parallel Checking test 025 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 @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.249257 - 0: The maximum resident set size (KB) = 631296 + 0: The total amount of wall time = 136.888594 + 0: The maximum resident set size (KB) = 628828 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 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 = 348.792388 -0: The maximum resident set size (KB) = 817704 +0: The total amount of wall time = 347.193954 +0: The maximum resident set size (KB) = 817908 Test 026 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.735935 - 0: The maximum resident set size (KB) = 770080 + 0: The total amount of wall time = 528.211659 + 0: The maximum resident set size (KB) = 761428 Test 027 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 591.752107 - 0: The maximum resident set size (KB) = 1226908 + 0: The total amount of wall time = 602.612833 + 0: The maximum resident set size (KB) = 1230304 Test 028 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 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.615458 - 0: The maximum resident set size (KB) = 1335492 + 0: The total amount of wall time = 526.749019 + 0: The maximum resident set size (KB) = 1337808 Test 029 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.907139 - 0: The maximum resident set size (KB) = 634724 + 0: The total amount of wall time = 88.153468 + 0: The maximum resident set size (KB) = 628812 Test 030 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/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 = 46.804386 - 0: The maximum resident set size (KB) = 483116 + 0: The total amount of wall time = 48.071092 + 0: The maximum resident set size (KB) = 479760 Test 031 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.774779 - 0: The maximum resident set size (KB) = 628964 + 0: The total amount of wall time = 81.115563 + 0: The maximum resident set size (KB) = 629376 Test 032 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.220497 - 0: The maximum resident set size (KB) = 629628 + 0: The total amount of wall time = 135.289444 + 0: The maximum resident set size (KB) = 629580 Test 033 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.575998 - 0: The maximum resident set size (KB) = 630800 + 0: The total amount of wall time = 135.054214 + 0: The maximum resident set size (KB) = 628060 Test 034 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 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.306712 - 0: The maximum resident set size (KB) = 1609860 + 0: The total amount of wall time = 168.590035 + 0: The maximum resident set size (KB) = 1605208 Test 035 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.795315 - 0: The maximum resident set size (KB) = 1597176 + 0: The total amount of wall time = 315.363481 + 0: The maximum resident set size (KB) = 1607072 Test 036 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 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 = 87.545257 - 0: The maximum resident set size (KB) = 882248 + 0: The total amount of wall time = 88.654373 + 0: The maximum resident set size (KB) = 863284 Test 037 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,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 = 173.706934 - 0: The maximum resident set size (KB) = 1590316 + 0: The total amount of wall time = 183.650871 + 0: The maximum resident set size (KB) = 1589448 Test 038 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,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 = 180.876311 - 0: The maximum resident set size (KB) = 1679384 + 0: The total amount of wall time = 183.702617 + 0: The maximum resident set size (KB) = 1671776 Test 039 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,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 = 228.654273 - 0: The maximum resident set size (KB) = 1676272 + 0: The total amount of wall time = 232.514858 + 0: The maximum resident set size (KB) = 1662936 Test 040 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 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.205175 - 0: The maximum resident set size (KB) = 1609952 + 0: The total amount of wall time = 190.579596 + 0: The maximum resident set size (KB) = 1614064 Test 041 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.558103 - 0: The maximum resident set size (KB) = 868116 + 0: The total amount of wall time = 297.204593 + 0: The maximum resident set size (KB) = 868720 Test 042 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_restart Checking test 043 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 = 151.197824 - 0: The maximum resident set size (KB) = 863784 + 0: The total amount of wall time = 152.589813 + 0: The maximum resident set size (KB) = 861284 Test 043 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.829614 - 0: The maximum resident set size (KB) = 862684 + 0: The total amount of wall time = 313.646975 + 0: The maximum resident set size (KB) = 863112 Test 044 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.560546 - 0: The maximum resident set size (KB) = 840740 + 0: The total amount of wall time = 208.455155 + 0: The maximum resident set size (KB) = 844692 Test 045 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 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 = 317.503514 - 0: The maximum resident set size (KB) = 860960 + 0: The total amount of wall time = 319.514060 + 0: The maximum resident set size (KB) = 859020 Test 046 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_netcdf_parallel Checking test 047 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 = 291.664583 - 0: The maximum resident set size (KB) = 860240 + 0: The total amount of wall time = 291.599719 + 0: The maximum resident set size (KB) = 860236 Test 047 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.361627 - 0: The maximum resident set size (KB) = 865840 + 0: The total amount of wall time = 295.344020 + 0: The maximum resident set size (KB) = 866924 Test 048 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.249826 - 0: The maximum resident set size (KB) = 624800 + 0: The total amount of wall time = 373.768327 + 0: The maximum resident set size (KB) = 625900 Test 049 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 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.170931 - 0: The maximum resident set size (KB) = 1062932 + 0: The total amount of wall time = 457.653991 + 0: The maximum resident set size (KB) = 1065208 Test 050 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 328.515617 - 0: The maximum resident set size (KB) = 1169032 + 0: The total amount of wall time = 321.957537 + 0: The maximum resident set size (KB) = 1184504 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 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 = 485.168000 - 0: The maximum resident set size (KB) = 1006344 + 0: The total amount of wall time = 482.070741 + 0: The maximum resident set size (KB) = 1009684 Test 052 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 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 = 479.976992 - 0: The maximum resident set size (KB) = 1135800 + 0: The total amount of wall time = 477.664028 + 0: The maximum resident set size (KB) = 1077992 Test 053 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 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.363934 - 0: The maximum resident set size (KB) = 969788 + 0: The total amount of wall time = 232.723761 + 0: The maximum resident set size (KB) = 975520 Test 054 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 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 = 451.033455 - 0: The maximum resident set size (KB) = 1064940 + 0: The total amount of wall time = 452.283552 + 0: The maximum resident set size (KB) = 1060944 Test 055 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 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 = 477.263314 - 0: The maximum resident set size (KB) = 1001312 + 0: The total amount of wall time = 480.057175 + 0: The maximum resident set size (KB) = 1004216 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 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.757917 - 0: The maximum resident set size (KB) = 999672 + 0: The total amount of wall time = 343.050675 + 0: The maximum resident set size (KB) = 992008 Test 057 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 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 = 434.862807 - 0: The maximum resident set size (KB) = 1060500 + 0: The total amount of wall time = 438.047975 + 0: The maximum resident set size (KB) = 1057812 Test 058 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 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 = 458.578057 - 0: The maximum resident set size (KB) = 1001524 + 0: The total amount of wall time = 458.856535 + 0: The maximum resident set size (KB) = 1005412 Test 059 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 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 = 452.710874 - 0: The maximum resident set size (KB) = 1137964 + 0: The total amount of wall time = 450.110256 + 0: The maximum resident set size (KB) = 1136408 Test 060 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 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.337774 - 0: The maximum resident set size (KB) = 987580 + 0: The total amount of wall time = 330.433329 + 0: The maximum resident set size (KB) = 985356 Test 061 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 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 = 449.222940 - 0: The maximum resident set size (KB) = 1056328 + 0: The total amount of wall time = 446.981896 + 0: The maximum resident set size (KB) = 1060400 Test 062 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.385693 - 0: The maximum resident set size (KB) = 701744 + 0: The total amount of wall time = 531.605293 + 0: The maximum resident set size (KB) = 698508 Test 063 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.354433 - 0: The maximum resident set size (KB) = 765068 + 0: The total amount of wall time = 517.998233 + 0: The maximum resident set size (KB) = 759256 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.588469 - 0: The maximum resident set size (KB) = 931572 + 0: The total amount of wall time = 123.189577 + 0: The maximum resident set size (KB) = 928972 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,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 = 140.264375 - 0: The maximum resident set size (KB) = 959016 + 0: The total amount of wall time = 139.668729 + 0: The maximum resident set size (KB) = 958700 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.266279 - 0: The maximum resident set size (KB) = 932444 + 0: The total amount of wall time = 124.977149 + 0: The maximum resident set size (KB) = 935888 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 85.345622 - 0: The maximum resident set size (KB) = 845860 + 0: The total amount of wall time = 83.648323 + 0: The maximum resident set size (KB) = 837184 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.238277 - 0: The maximum resident set size (KB) = 887396 + 0: The total amount of wall time = 84.458841 + 0: The maximum resident set size (KB) = 851748 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.403692 - 0: The maximum resident set size (KB) = 722092 + 0: The total amount of wall time = 346.048433 + 0: The maximum resident set size (KB) = 725700 Test 070 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.184713 - 0: The maximum resident set size (KB) = 729572 + 0: The total amount of wall time = 341.126033 + 0: The maximum resident set size (KB) = 728624 Test 071 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.714380 - 0: The maximum resident set size (KB) = 712912 + 0: The total amount of wall time = 182.242133 + 0: The maximum resident set size (KB) = 718552 Test 072 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.964085 - 0: The maximum resident set size (KB) = 639844 + 0: The total amount of wall time = 112.397590 + 0: The maximum resident set size (KB) = 643200 Test 073 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 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 = 151.919192 - 0: The maximum resident set size (KB) = 1601688 + 0: The total amount of wall time = 153.150096 + 0: The maximum resident set size (KB) = 1609760 Test 074 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.208807 - 0: The maximum resident set size (KB) = 869376 + 0: The total amount of wall time = 269.830637 + 0: The maximum resident set size (KB) = 866992 Test 075 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm_debug Checking test 076 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 = 742.760454 - 0: The maximum resident set size (KB) = 957116 + 0: The total amount of wall time = 739.090999 + 0: The maximum resident set size (KB) = 959524 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_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 = 745.005118 - 0: The maximum resident set size (KB) = 965788 + 0: The total amount of wall time = 719.570687 + 0: The maximum resident set size (KB) = 966840 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 175.296868 - 0: The maximum resident set size (KB) = 795920 + 0: The total amount of wall time = 169.010078 + 0: The maximum resident set size (KB) = 793448 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.597766 - 0: The maximum resident set size (KB) = 802096 + 0: The total amount of wall time = 162.557313 + 0: The maximum resident set size (KB) = 798596 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy_debug Checking test 080 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 = 177.945904 - 0: The maximum resident set size (KB) = 799748 + 0: The total amount of wall time = 175.964536 + 0: The maximum resident set size (KB) = 802108 Test 080 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_lndp_debug Checking test 081 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 = 160.643101 - 0: The maximum resident set size (KB) = 798412 + 0: The total amount of wall time = 161.248328 + 0: The maximum resident set size (KB) = 801132 Test 081 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmg_debug Checking test 082 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 = 240.254972 - 0: The maximum resident set size (KB) = 846364 + 0: The total amount of wall time = 240.414382 + 0: The maximum resident set size (KB) = 846868 Test 082 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmgt_debug Checking test 083 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 = 239.152568 - 0: The maximum resident set size (KB) = 842348 + 0: The total amount of wall time = 239.645950 + 0: The maximum resident set size (KB) = 847040 Test 083 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_ras_debug Checking test 084 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.780133 - 0: The maximum resident set size (KB) = 809328 + 0: The total amount of wall time = 165.590790 + 0: The maximum resident set size (KB) = 803052 Test 084 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_diag_debug Checking test 085 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 = 167.270369 - 0: The maximum resident set size (KB) = 852336 + 0: The total amount of wall time = 167.820936 + 0: The maximum resident set size (KB) = 854244 Test 085 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_debug_p8 Checking test 086 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 = 180.682794 - 0: The maximum resident set size (KB) = 1618088 + 0: The total amount of wall time = 179.263904 + 0: The maximum resident set size (KB) = 1619920 Test 086 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_debug Checking test 087 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 = 973.654613 - 0: The maximum resident set size (KB) = 896304 + 0: The total amount of wall time = 1014.672642 + 0: The maximum resident set size (KB) = 888920 Test 087 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_debug Checking test 088 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 = 295.969070 - 0: The maximum resident set size (KB) = 1174908 + 0: The total amount of wall time = 288.751190 + 0: The maximum resident set size (KB) = 1180684 Test 088 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_debug Checking test 089 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 = 281.038846 - 0: The maximum resident set size (KB) = 1171768 + 0: The total amount of wall time = 289.710554 + 0: The maximum resident set size (KB) = 1171656 Test 089 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_unified_drag_suite_debug Checking test 090 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 = 291.191775 - 0: The maximum resident set size (KB) = 1174128 + 0: The total amount of wall time = 286.789141 + 0: The maximum resident set size (KB) = 1173348 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_diag_debug Checking test 091 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 = 311.236582 - 0: The maximum resident set size (KB) = 1260788 + 0: The total amount of wall time = 311.031375 + 0: The maximum resident set size (KB) = 1257472 Test 091 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_cires_ugwp_debug Checking test 092 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.380042 - 0: The maximum resident set size (KB) = 1175900 + 0: The total amount of wall time = 294.786154 + 0: The maximum resident set size (KB) = 1183672 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_unified_ugwp_debug Checking test 093 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 = 286.480297 - 0: The maximum resident set size (KB) = 1181640 + 0: The total amount of wall time = 291.435893 + 0: The maximum resident set size (KB) = 1178520 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_lndp_debug Checking test 094 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 = 294.335969 - 0: The maximum resident set size (KB) = 1175680 + 0: The total amount of wall time = 290.023658 + 0: The maximum resident set size (KB) = 1177688 Test 094 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_flake_debug Checking test 095 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 = 289.248584 - 0: The maximum resident set size (KB) = 1176988 + 0: The total amount of wall time = 293.602598 + 0: The maximum resident set size (KB) = 1156412 Test 095 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_progcld_thompson_debug Checking test 096 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 = 308.762616 - 0: The maximum resident set size (KB) = 1171148 + 0: The total amount of wall time = 286.873424 + 0: The maximum resident set size (KB) = 1184440 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_noah_debug Checking test 097 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.339785 - 0: The maximum resident set size (KB) = 1174700 + 0: The total amount of wall time = 283.988170 + 0: The maximum resident set size (KB) = 1175180 Test 097 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_debug Checking test 098 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.729194 - 0: The maximum resident set size (KB) = 1178512 + 0: The total amount of wall time = 294.077109 + 0: The maximum resident set size (KB) = 1172604 Test 098 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 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 = 462.891360 - 0: The maximum resident set size (KB) = 1171948 + 0: The total amount of wall time = 464.016705 + 0: The maximum resident set size (KB) = 1176716 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1beta_debug Checking test 100 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 = 280.232980 - 0: The maximum resident set size (KB) = 1177500 + 0: The total amount of wall time = 282.285636 + 0: The maximum resident set size (KB) = 1168516 Test 100 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.389220 - 0: The maximum resident set size (KB) = 521476 + 0: The total amount of wall time = 288.209577 + 0: The maximum resident set size (KB) = 529924 Test 101 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.021149 - 0: The maximum resident set size (KB) = 1057924 + 0: The total amount of wall time = 303.718530 + 0: The maximum resident set size (KB) = 1083532 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 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 = 369.072615 - 0: The maximum resident set size (KB) = 1010340 + 0: The total amount of wall time = 369.734356 + 0: The maximum resident set size (KB) = 997740 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 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 = 195.775219 - 0: The maximum resident set size (KB) = 949492 + 0: The total amount of wall time = 195.380344 + 0: The maximum resident set size (KB) = 954568 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 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 = 393.204293 - 0: The maximum resident set size (KB) = 1020484 + 0: The total amount of wall time = 389.840670 + 0: The maximum resident set size (KB) = 1021344 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 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 = 209.489679 - 0: The maximum resident set size (KB) = 1009444 + 0: The total amount of wall time = 210.069105 + 0: The maximum resident set size (KB) = 1009884 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 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 = 205.824536 - 0: The maximum resident set size (KB) = 856920 + 0: The total amount of wall time = 206.743338 + 0: The maximum resident set size (KB) = 889264 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 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 = 280.500676 - 0: The maximum resident set size (KB) = 949656 + 0: The total amount of wall time = 282.681645 + 0: The maximum resident set size (KB) = 956216 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 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 = 100.506210 - 0: The maximum resident set size (KB) = 864576 + 0: The total amount of wall time = 100.615237 + 0: The maximum resident set size (KB) = 875144 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 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 = 243.851800 - 0: The maximum resident set size (KB) = 971788 + 0: The total amount of wall time = 238.540791 + 0: The maximum resident set size (KB) = 915504 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_debug_dyn32_phy32 Checking test 111 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.818589 - 0: The maximum resident set size (KB) = 1062636 + 0: The total amount of wall time = 293.756395 + 0: The maximum resident set size (KB) = 1059384 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_debug_dyn32_phy32 Checking test 112 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 = 288.172440 - 0: The maximum resident set size (KB) = 1054616 + 0: The total amount of wall time = 295.266519 + 0: The maximum resident set size (KB) = 1055840 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn64_phy32_debug Checking test 113 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 = 314.560671 - 0: The maximum resident set size (KB) = 1089840 + 0: The total amount of wall time = 291.774015 + 0: The maximum resident set size (KB) = 1106460 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 272.063334 - 0: The maximum resident set size (KB) = 1058724 + 0: The total amount of wall time = 280.242764 + 0: The maximum resident set size (KB) = 1056228 Test 114 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 414.910697 - 0: The maximum resident set size (KB) = 1426896 + 0: The total amount of wall time = 433.675499 + 0: The maximum resident set size (KB) = 1349876 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 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 = 385.635486 - 0: The maximum resident set size (KB) = 1230192 + 0: The total amount of wall time = 382.534362 + 0: The maximum resident set size (KB) = 1223896 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 726.616797 - 0: The maximum resident set size (KB) = 1257308 + 0: The total amount of wall time = 731.606663 + 0: The maximum resident set size (KB) = 1257284 -Test 117 hafs_regional_atm_wav PASS +Test 117 hafs_regional_atm_wav PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 830.285839 - 0: The maximum resident set size (KB) = 1277324 + 0: The total amount of wall time = 831.753526 + 0: The maximum resident set size (KB) = 1283764 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_1nest_atm Checking test 119 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.442801 - 0: The maximum resident set size (KB) = 515096 + 0: The total amount of wall time = 380.484114 + 0: The maximum resident set size (KB) = 508560 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 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 = 417.846356 - 0: The maximum resident set size (KB) = 521760 + 0: The total amount of wall time = 430.397342 + 0: The maximum resident set size (KB) = 517968 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_1nest_atm Checking test 121 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 = 173.147549 - 0: The maximum resident set size (KB) = 352880 + 0: The total amount of wall time = 173.181677 + 0: The maximum resident set size (KB) = 357368 Test 121 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 473.819085 - 0: The maximum resident set size (KB) = 426840 + 0: The total amount of wall time = 477.381633 + 0: The maximum resident set size (KB) = 430344 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 227.252558 - 0: The maximum resident set size (KB) = 514760 + 0: The total amount of wall time = 230.918846 + 0: The maximum resident set size (KB) = 521092 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm Checking test 124 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 = 215.542666 - 0: The maximum resident set size (KB) = 524328 + 0: The total amount of wall time = 216.938381 + 0: The maximum resident set size (KB) = 519768 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 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.045690 - 0: The maximum resident set size (KB) = 555832 + 0: The total amount of wall time = 288.779888 + 0: The maximum resident set size (KB) = 558040 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_storm_following_1nest_atm Checking test 126 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 = 68.502904 - 0: The maximum resident set size (KB) = 365824 + 0: The total amount of wall time = 68.897061 + 0: The maximum resident set size (KB) = 369628 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 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 = 795.071726 - 0: The maximum resident set size (KB) = 584180 + 0: The total amount of wall time = 820.020168 + 0: The maximum resident set size (KB) = 583340 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 581.937553 - 0: The maximum resident set size (KB) = 617500 + 0: The total amount of wall time = 576.743766 + 0: The maximum resident set size (KB) = 620516 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 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.765516 - 0: The maximum resident set size (KB) = 1231484 + 0: The total amount of wall time = 357.658349 + 0: The maximum resident set size (KB) = 1230472 Test 129 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 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 = 358.231735 - 0: The maximum resident set size (KB) = 1220640 + 0: The total amount of wall time = 366.120533 + 0: The maximum resident set size (KB) = 1217200 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_datm_cdeps Checking test 131 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 = 919.519461 - 0: The maximum resident set size (KB) = 1044072 + 0: The total amount of wall time = 935.267076 + 0: The maximum resident set size (KB) = 1039456 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_cfsr Checking test 132 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.703601 - 0: The maximum resident set size (KB) = 1068416 + 0: The total amount of wall time = 145.871764 + 0: The maximum resident set size (KB) = 1079360 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_restart_cfsr Checking test 133 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.511302 - 0: The maximum resident set size (KB) = 1017384 + 0: The total amount of wall time = 89.774618 + 0: The maximum resident set size (KB) = 1041124 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_gefs Checking test 134 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 = 142.947248 - 0: The maximum resident set size (KB) = 969332 + 0: The total amount of wall time = 146.127427 + 0: The maximum resident set size (KB) = 969244 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_iau_gefs Checking test 135 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 = 144.851071 - 0: The maximum resident set size (KB) = 963732 + 0: The total amount of wall time = 145.119028 + 0: The maximum resident set size (KB) = 936820 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_stochy_gefs Checking test 136 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.343009 - 0: The maximum resident set size (KB) = 977220 + 0: The total amount of wall time = 146.191597 + 0: The maximum resident set size (KB) = 959692 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_ciceC_cfsr Checking test 137 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.041708 - 0: The maximum resident set size (KB) = 1071324 + 0: The total amount of wall time = 151.569433 + 0: The maximum resident set size (KB) = 1047180 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_bulk_cfsr Checking test 138 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 = 146.262322 - 0: The maximum resident set size (KB) = 1083988 + 0: The total amount of wall time = 149.675674 + 0: The maximum resident set size (KB) = 1066228 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_bulk_gefs Checking test 139 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 = 141.090101 - 0: The maximum resident set size (KB) = 965688 + 0: The total amount of wall time = 148.264964 + 0: The maximum resident set size (KB) = 966124 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 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.472741 - 0: The maximum resident set size (KB) = 874264 + 0: The total amount of wall time = 443.856489 + 0: The maximum resident set size (KB) = 872496 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 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 = 436.230573 - 0: The maximum resident set size (KB) = 928056 + 0: The total amount of wall time = 443.348798 + 0: The maximum resident set size (KB) = 910976 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_multiple_files_cfsr Checking test 142 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 = 145.581055 - 0: The maximum resident set size (KB) = 1034120 + 0: The total amount of wall time = 148.927760 + 0: The maximum resident set size (KB) = 1058880 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_3072x1536_cfsr Checking test 143 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 = 196.141257 - 0: The maximum resident set size (KB) = 2375356 + 0: The total amount of wall time = 195.047290 + 0: The maximum resident set size (KB) = 2361368 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_gfs Checking test 144 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 = 204.631005 - 0: The maximum resident set size (KB) = 2355072 + 0: The total amount of wall time = 201.041267 + 0: The maximum resident set size (KB) = 2361728 Test 144 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_debug_cfsr Checking test 145 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 = 438.903723 - 0: The maximum resident set size (KB) = 1020112 + 0: The total amount of wall time = 443.877181 + 0: The maximum resident set size (KB) = 992148 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_cfsr_faster Checking test 146 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 = 147.491675 - 0: The maximum resident set size (KB) = 1067368 + 0: The total amount of wall time = 153.107633 + 0: The maximum resident set size (KB) = 1053420 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_lnd_gswp3 Checking test 147 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 @@ -4390,14 +4390,14 @@ Checking test 147 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.593781 - 0: The maximum resident set size (KB) = 255044 + 0: The total amount of wall time = 7.254620 + 0: The maximum resident set size (KB) = 228768 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_lnd_gswp3_rst Checking test 148 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 @@ -4406,14 +4406,14 @@ Checking test 148 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.709982 - 0: The maximum resident set size (KB) = 259332 + 0: The total amount of wall time = 12.579523 + 0: The maximum resident set size (KB) = 270964 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 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.149442 - 0: The maximum resident set size (KB) = 1617924 + 0: The total amount of wall time = 206.029420 + 0: The maximum resident set size (KB) = 1567876 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 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.110104 - 0: The maximum resident set size (KB) = 634400 + 0: The total amount of wall time = 91.820514 + 0: The maximum resident set size (KB) = 662936 Test 150 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 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.338464 - 0: The maximum resident set size (KB) = 2977076 + 0: The total amount of wall time = 234.432876 + 0: The maximum resident set size (KB) = 2977492 Test 151 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 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.426392 - 0: The maximum resident set size (KB) = 3050152 + 0: The total amount of wall time = 299.760497 + 0: The maximum resident set size (KB) = 3046072 Test 152 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 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 = 283.711103 - 0: The maximum resident set size (KB) = 3058584 + 0: The total amount of wall time = 290.425035 + 0: The maximum resident set size (KB) = 3055224 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 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 = 580.980632 - 0: The maximum resident set size (KB) = 1571820 + 0: The total amount of wall time = 579.879275 + 0: The maximum resident set size (KB) = 1584244 Test 154 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 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 = 1327.447188 - 0: The maximum resident set size (KB) = 1519296 + 0: The total amount of wall time = 1333.988149 + 0: The maximum resident set size (KB) = 1519516 Test 155 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 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 = 548.782339 - 0: The maximum resident set size (KB) = 1394676 + 0: The total amount of wall time = 566.801868 + 0: The maximum resident set size (KB) = 1574588 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 15:36:31 CST 2023 -Elapsed time: 01h:18m:57s. Have a nice day! +Wed Mar 8 20:38:32 CST 2023 +Elapsed time: 08h:05m:45s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 1adbe77215..7f67d42102 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Tue Mar 7 16:58:43 UTC 2023 +Thu Mar 9 13:45:30 UTC 2023 Start Regression test -Compile 001 elapsed time 606 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 615 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 1059 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 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 005 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 658 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 1599 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1038 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 460 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 1390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 791 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 1585 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 484 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 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 477 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 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 851 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 428 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 675 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 1064 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 929 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 447 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 214 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8_mixedmode +Compile 001 elapsed time 860 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 1117 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 658 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1172 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 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 683 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 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 998 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 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 645 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 347 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 562 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 1249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 458 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 823 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 757 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 884 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 729 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 845 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 601 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1021 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 222 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 769 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,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 = 344.493806 -The maximum resident set size (KB) = 2954468 +The total amount of wall time = 362.142103 +The maximum resident set size (KB) = 2952680 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,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 = 389.051981 -The maximum resident set size (KB) = 2983004 +The total amount of wall time = 392.241909 +The maximum resident set size (KB) = 2981036 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,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 = 232.514891 -The maximum resident set size (KB) = 2866428 +The total amount of wall time = 241.240218 +The maximum resident set size (KB) = 2868812 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.846506 -The maximum resident set size (KB) = 3286084 +The total amount of wall time = 378.339197 +The maximum resident set size (KB) = 3283560 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +345,14 @@ Checking test 005 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.120558 -The maximum resident set size (KB) = 2977580 +The total amount of wall time = 423.706431 +The maximum resident set size (KB) = 2979020 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.449895 -The maximum resident set size (KB) = 2911612 +The total amount of wall time = 324.354572 +The maximum resident set size (KB) = 2907316 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 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 = 388.873476 -The maximum resident set size (KB) = 2983128 +The total amount of wall time = 402.469785 +The maximum resident set size (KB) = 2980864 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 942.125104 -The maximum resident set size (KB) = 3918928 +The total amount of wall time = 963.019940 +The maximum resident set size (KB) = 3919688 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +587,14 @@ Checking test 009 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 = 643.651138 -The maximum resident set size (KB) = 3892296 +The total amount of wall time = 870.981410 +The maximum resident set size (KB) = 3892556 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 010 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 = 284.669803 -The maximum resident set size (KB) = 1573776 +The total amount of wall time = 303.115183 +The maximum resident set size (KB) = 1571440 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 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 = 301.897780 -The maximum resident set size (KB) = 1632368 +The total amount of wall time = 307.101819 +The maximum resident set size (KB) = 1630984 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 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.521694 -The maximum resident set size (KB) = 1617004 +The total amount of wall time = 339.804584 +The maximum resident set size (KB) = 1629472 Test 012 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 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 = 436.760277 -The maximum resident set size (KB) = 2634048 +The total amount of wall time = 439.904798 +The maximum resident set size (KB) = 2632224 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 014 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 = 125.172991 -The maximum resident set size (KB) = 2652480 +The total amount of wall time = 144.523729 +The maximum resident set size (KB) = 2656924 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 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 = 73.721754 -The maximum resident set size (KB) = 2063804 +The total amount of wall time = 71.903785 +The maximum resident set size (KB) = 2065100 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 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 = 381.954110 -The maximum resident set size (KB) = 2978712 +The total amount of wall time = 424.862194 +The maximum resident set size (KB) = 2983928 Test 016 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.035575 -The maximum resident set size (KB) = 517264 +The total amount of wall time = 138.786213 +The maximum resident set size (KB) = 515440 Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.075553 -The maximum resident set size (KB) = 516560 +The total amount of wall time = 132.898635 +The maximum resident set size (KB) = 523136 Test 018 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.497729 -The maximum resident set size (KB) = 517232 +The total amount of wall time = 135.525354 +The maximum resident set size (KB) = 520720 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1155,14 @@ Checking test 020 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.654653 -The maximum resident set size (KB) = 674052 +The total amount of wall time = 325.319327 +The maximum resident set size (KB) = 675520 Test 020 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.704729 -The maximum resident set size (KB) = 614260 +The total amount of wall time = 571.266956 +The maximum resident set size (KB) = 618204 Test 021 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 573.118698 -The maximum resident set size (KB) = 910072 +The total amount of wall time = 576.326316 +The maximum resident set size (KB) = 907048 Test 022 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 023 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 = 505.188199 -The maximum resident set size (KB) = 1045880 +The total amount of wall time = 515.405312 +The maximum resident set size (KB) = 1043084 Test 023 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.536342 -The maximum resident set size (KB) = 519828 +The total amount of wall time = 90.625576 +The maximum resident set size (KB) = 518180 Test 024 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy_restart Checking test 025 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 = 52.801461 -The maximum resident set size (KB) = 293872 +The total amount of wall time = 49.595628 +The maximum resident set size (KB) = 288260 Test 025 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.969701 -The maximum resident set size (KB) = 519372 +The total amount of wall time = 86.571039 +The maximum resident set size (KB) = 522568 Test 026 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.356600 -The maximum resident set size (KB) = 516404 +The total amount of wall time = 137.539233 +The maximum resident set size (KB) = 516180 Test 027 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.720579 -The maximum resident set size (KB) = 518996 +The total amount of wall time = 137.946646 +The maximum resident set size (KB) = 517988 Test 028 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 029 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 = 181.941346 -The maximum resident set size (KB) = 1492792 +The total amount of wall time = 188.958497 +The maximum resident set size (KB) = 1487108 Test 029 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.616891 -The maximum resident set size (KB) = 1487572 +The total amount of wall time = 329.002509 +The maximum resident set size (KB) = 1492884 Test 030 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1461,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 = 101.802174 -The maximum resident set size (KB) = 659428 +The total amount of wall time = 101.240753 +The maximum resident set size (KB) = 662780 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 032 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 = 183.642698 -The maximum resident set size (KB) = 1483672 +The total amount of wall time = 191.159701 +The maximum resident set size (KB) = 1479388 Test 032 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 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 = 163.713859 -The maximum resident set size (KB) = 1575572 +The total amount of wall time = 166.584832 +The maximum resident set size (KB) = 1567232 Test 033 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 034 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.705784 -The maximum resident set size (KB) = 1556808 +The total amount of wall time = 238.953402 +The maximum resident set size (KB) = 1555660 Test 034 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1669,14 @@ Checking test 035 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.851683 -The maximum resident set size (KB) = 1493924 +The total amount of wall time = 209.638069 +The maximum resident set size (KB) = 1494612 Test 035 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1687,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.564240 -The maximum resident set size (KB) = 652280 +The total amount of wall time = 296.692151 +The maximum resident set size (KB) = 655920 Test 036 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_restart Checking test 037 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 = 158.908445 -The maximum resident set size (KB) = 652420 +The total amount of wall time = 159.969823 +The maximum resident set size (KB) = 653436 Test 037 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.115452 -The maximum resident set size (KB) = 655204 +The total amount of wall time = 328.084744 +The maximum resident set size (KB) = 654592 Test 038 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1737,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 180.337232 -The maximum resident set size (KB) = 695496 +The total amount of wall time = 188.230872 +The maximum resident set size (KB) = 696824 Test 039 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1752,28 @@ Checking test 040 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.008684 -The maximum resident set size (KB) = 647952 +The total amount of wall time = 316.879531 +The maximum resident set size (KB) = 644896 Test 040 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_netcdf_parallel Checking test 041 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 = 289.439342 -The maximum resident set size (KB) = 653992 +The total amount of wall time = 292.242911 +The maximum resident set size (KB) = 652476 Test 041 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.758974 -The maximum resident set size (KB) = 651860 +The total amount of wall time = 292.660805 +The maximum resident set size (KB) = 656328 Test 042 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.998814 -The maximum resident set size (KB) = 342000 +The total amount of wall time = 364.628122 +The maximum resident set size (KB) = 343764 Test 043 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 044 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 = 420.364243 -The maximum resident set size (KB) = 894456 +The total amount of wall time = 424.826594 +The maximum resident set size (KB) = 894828 Test 044 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 288.400367 -The maximum resident set size (KB) = 985844 +The total amount of wall time = 297.982772 +The maximum resident set size (KB) = 988780 Test 045 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 046 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 = 434.464671 -The maximum resident set size (KB) = 892812 +The total amount of wall time = 437.867597 +The maximum resident set size (KB) = 894580 Test 046 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 047 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 = 393.490180 -The maximum resident set size (KB) = 964688 +The total amount of wall time = 398.916992 +The maximum resident set size (KB) = 966752 Test 047 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 048 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.538917 -The maximum resident set size (KB) = 647060 +The total amount of wall time = 215.058449 +The maximum resident set size (KB) = 644872 Test 048 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 049 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 = 427.889917 -The maximum resident set size (KB) = 893404 +The total amount of wall time = 418.650350 +The maximum resident set size (KB) = 895308 Test 049 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2136,14 @@ Checking test 050 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 = 433.213806 -The maximum resident set size (KB) = 891268 +The total amount of wall time = 474.194830 +The maximum resident set size (KB) = 893624 Test 050 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 051 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.437079 -The maximum resident set size (KB) = 642564 +The total amount of wall time = 311.379513 +The maximum resident set size (KB) = 639504 Test 051 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 052 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 = 400.568029 -The maximum resident set size (KB) = 895120 +The total amount of wall time = 406.911958 +The maximum resident set size (KB) = 894756 Test 052 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2290,14 @@ Checking test 053 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 = 414.941659 -The maximum resident set size (KB) = 891584 +The total amount of wall time = 418.374669 +The maximum resident set size (KB) = 890156 Test 053 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2344,14 @@ Checking test 054 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 = 371.017435 -The maximum resident set size (KB) = 960372 +The total amount of wall time = 378.560499 +The maximum resident set size (KB) = 960312 Test 054 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2390,14 @@ Checking test 055 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.043580 -The maximum resident set size (KB) = 645364 +The total amount of wall time = 305.399715 +The maximum resident set size (KB) = 639732 Test 055 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 056 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 = 412.981496 -The maximum resident set size (KB) = 888104 +The total amount of wall time = 417.117115 +The maximum resident set size (KB) = 884920 Test 056 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.330469 -The maximum resident set size (KB) = 575880 +The total amount of wall time = 497.803081 +The maximum resident set size (KB) = 578224 Test 057 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.231017 -The maximum resident set size (KB) = 569016 +The total amount of wall time = 468.647715 +The maximum resident set size (KB) = 569132 Test 058 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 118.022148 -The maximum resident set size (KB) = 761720 +The total amount of wall time = 121.525110 +The maximum resident set size (KB) = 758884 Test 059 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.626946 -The maximum resident set size (KB) = 777112 +The total amount of wall time = 130.309990 +The maximum resident set size (KB) = 776132 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 120.071280 -The maximum resident set size (KB) = 767260 +The total amount of wall time = 120.959888 +The maximum resident set size (KB) = 765848 Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2552,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.619652 -The maximum resident set size (KB) = 758488 +The total amount of wall time = 98.105690 +The maximum resident set size (KB) = 760852 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.355956 -The maximum resident set size (KB) = 767024 +The total amount of wall time = 89.113195 +The maximum resident set size (KB) = 763948 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.371795 -The maximum resident set size (KB) = 589876 +The total amount of wall time = 349.485483 +The maximum resident set size (KB) = 587684 Test 064 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.181937 -The maximum resident set size (KB) = 589752 +The total amount of wall time = 349.279571 +The maximum resident set size (KB) = 585020 Test 065 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2622,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.385662 -The maximum resident set size (KB) = 550952 +The total amount of wall time = 188.129901 +The maximum resident set size (KB) = 548448 Test 066 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.057277 -The maximum resident set size (KB) = 271968 +The total amount of wall time = 126.073613 +The maximum resident set size (KB) = 288468 Test 067 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 068 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 = 189.137979 -The maximum resident set size (KB) = 1486568 +The total amount of wall time = 175.941971 +The maximum resident set size (KB) = 1486632 Test 068 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2706,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.982353 -The maximum resident set size (KB) = 650192 +The total amount of wall time = 291.812096 +The maximum resident set size (KB) = 653692 Test 069 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm_debug Checking test 070 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 = 782.255786 -The maximum resident set size (KB) = 800316 +The total amount of wall time = 792.399273 +The maximum resident set size (KB) = 789912 Test 070 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_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 = 783.568167 -The maximum resident set size (KB) = 797596 +The total amount of wall time = 785.993029 +The maximum resident set size (KB) = 799308 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2768,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 171.142521 -The maximum resident set size (KB) = 678788 +The total amount of wall time = 171.233300 +The maximum resident set size (KB) = 677552 Test 072 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wrtGauss_netcdf_parallel_debug Checking test 073 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 = 160.519596 -The maximum resident set size (KB) = 684092 +The total amount of wall time = 161.784451 +The maximum resident set size (KB) = 681440 Test 073 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy_debug Checking test 074 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 = 181.769784 -The maximum resident set size (KB) = 687980 +The total amount of wall time = 181.788495 +The maximum resident set size (KB) = 685396 Test 074 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_lndp_debug Checking test 075 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 = 162.555719 -The maximum resident set size (KB) = 686012 +The total amount of wall time = 162.289798 +The maximum resident set size (KB) = 687700 Test 075 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmg_debug Checking test 076 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 = 260.530499 -The maximum resident set size (KB) = 721420 +The total amount of wall time = 260.056146 +The maximum resident set size (KB) = 721232 Test 076 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmgt_debug Checking test 077 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 = 256.681782 -The maximum resident set size (KB) = 724012 +The total amount of wall time = 273.570423 +The maximum resident set size (KB) = 721488 Test 077 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_ras_debug Checking test 078 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 = 164.151230 -The maximum resident set size (KB) = 697580 +The total amount of wall time = 166.579705 +The maximum resident set size (KB) = 697128 Test 078 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_diag_debug Checking test 079 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 = 167.509028 -The maximum resident set size (KB) = 741736 +The total amount of wall time = 185.777469 +The maximum resident set size (KB) = 742480 Test 079 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_debug_p8 Checking test 080 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 = 189.384891 -The maximum resident set size (KB) = 1510084 +The total amount of wall time = 195.669287 +The maximum resident set size (KB) = 1505544 Test 080 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_debug Checking test 081 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 = 1055.418814 -The maximum resident set size (KB) = 677356 +The total amount of wall time = 1058.759880 +The maximum resident set size (KB) = 679444 Test 081 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_debug Checking test 082 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 = 301.941578 -The maximum resident set size (KB) = 1056200 +The total amount of wall time = 303.438424 +The maximum resident set size (KB) = 1058984 Test 082 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_debug Checking test 083 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 = 296.086555 -The maximum resident set size (KB) = 1055588 +The total amount of wall time = 310.908039 +The maximum resident set size (KB) = 1059008 Test 083 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_unified_drag_suite_debug Checking test 084 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 = 302.236884 -The maximum resident set size (KB) = 1059528 +The total amount of wall time = 303.975027 +The maximum resident set size (KB) = 1057236 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_diag_debug Checking test 085 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 = 313.123139 +The total amount of wall time = 330.205386 The maximum resident set size (KB) = 1139616 Test 085 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_cires_ugwp_debug Checking test 086 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 = 308.781700 -The maximum resident set size (KB) = 1052492 +The total amount of wall time = 322.669890 +The maximum resident set size (KB) = 1056584 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_unified_ugwp_debug Checking test 087 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 = 308.069396 -The maximum resident set size (KB) = 1055888 +The total amount of wall time = 318.529900 +The maximum resident set size (KB) = 1058888 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_lndp_debug Checking test 088 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 = 303.803065 -The maximum resident set size (KB) = 1059724 +The total amount of wall time = 306.866122 +The maximum resident set size (KB) = 1060316 Test 088 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_flake_debug Checking test 089 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 = 300.939274 -The maximum resident set size (KB) = 1057580 +The total amount of wall time = 303.825175 +The maximum resident set size (KB) = 1058928 Test 089 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_progcld_thompson_debug Checking test 090 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 = 301.684827 -The maximum resident set size (KB) = 1057380 +The total amount of wall time = 318.372417 +The maximum resident set size (KB) = 1057280 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_noah_debug Checking test 091 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 = 295.332259 -The maximum resident set size (KB) = 1056836 +The total amount of wall time = 299.163525 +The maximum resident set size (KB) = 1052488 Test 091 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_debug Checking test 092 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 = 301.621839 -The maximum resident set size (KB) = 1054244 +The total amount of wall time = 303.672683 +The maximum resident set size (KB) = 1054888 Test 092 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 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.509148 -The maximum resident set size (KB) = 1055260 +The total amount of wall time = 507.765121 +The maximum resident set size (KB) = 1057864 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1beta_debug Checking test 094 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 = 296.772419 -The maximum resident set size (KB) = 1053728 +The total amount of wall time = 309.518434 +The maximum resident set size (KB) = 1055036 Test 094 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.648035 -The maximum resident set size (KB) = 304064 +The total amount of wall time = 297.484537 +The maximum resident set size (KB) = 304380 Test 095 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3106,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 271.910449 -The maximum resident set size (KB) = 878996 +The total amount of wall time = 276.597281 +The maximum resident set size (KB) = 878356 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3160,14 @@ Checking test 097 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 = 342.787715 -The maximum resident set size (KB) = 781324 +The total amount of wall time = 342.896029 +The maximum resident set size (KB) = 774232 Test 097 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3214,14 @@ Checking test 098 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 = 183.626331 -The maximum resident set size (KB) = 771428 +The total amount of wall time = 199.429914 +The maximum resident set size (KB) = 773384 Test 098 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3268,14 @@ Checking test 099 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 = 320.271341 -The maximum resident set size (KB) = 828460 +The total amount of wall time = 321.834737 +The maximum resident set size (KB) = 829788 Test 099 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3322,14 @@ Checking test 100 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 = 173.945000 -The maximum resident set size (KB) = 828552 +The total amount of wall time = 177.773517 +The maximum resident set size (KB) = 826604 Test 100 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 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.393425 -The maximum resident set size (KB) = 773788 +The total amount of wall time = 193.330273 +The maximum resident set size (KB) = 773584 Test 101 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 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 = 255.490066 -The maximum resident set size (KB) = 612200 +The total amount of wall time = 258.563842 +The maximum resident set size (KB) = 614444 Test 102 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3468,14 @@ Checking test 103 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 = 94.986389 -The maximum resident set size (KB) = 606332 +The total amount of wall time = 95.534788 +The maximum resident set size (KB) = 607808 Test 103 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3522,81 @@ Checking test 104 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 = 231.532348 -The maximum resident set size (KB) = 798772 +The total amount of wall time = 235.585767 +The maximum resident set size (KB) = 796464 Test 104 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_debug_dyn32_phy32 Checking test 105 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.809453 -The maximum resident set size (KB) = 945868 +The total amount of wall time = 294.966539 +The maximum resident set size (KB) = 940180 Test 105 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_debug_dyn32_phy32 Checking test 106 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 = 289.092371 -The maximum resident set size (KB) = 938704 +The total amount of wall time = 292.630707 +The maximum resident set size (KB) = 938576 Test 106 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn64_phy32_debug Checking test 107 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.881966 -The maximum resident set size (KB) = 955732 +The total amount of wall time = 307.641869 +The maximum resident set size (KB) = 960344 Test 107 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 271.771253 -The maximum resident set size (KB) = 822924 +The total amount of wall time = 272.372791 +The maximum resident set size (KB) = 825852 Test 108 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 325.844347 -The maximum resident set size (KB) = 1183584 +The total amount of wall time = 329.590925 +The maximum resident set size (KB) = 1183200 Test 109 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3605,14 @@ Checking test 110 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 = 391.068462 -The maximum resident set size (KB) = 853692 +The total amount of wall time = 392.844703 +The maximum resident set size (KB) = 852584 Test 110 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3621,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 704.447204 -The maximum resident set size (KB) = 887596 +The total amount of wall time = 709.574259 +The maximum resident set size (KB) = 885320 Test 111 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3639,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 898.914557 -The maximum resident set size (KB) = 908876 +The total amount of wall time = 902.135824 +The maximum resident set size (KB) = 907288 Test 112 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_1nest_atm Checking test 113 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 = 329.590736 -The maximum resident set size (KB) = 390104 +The total amount of wall time = 338.132464 +The maximum resident set size (KB) = 391636 Test 113 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3669,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 401.362862 -The maximum resident set size (KB) = 415032 +The total amount of wall time = 403.578727 +The maximum resident set size (KB) = 411680 Test 114 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_1nest_atm Checking test 115 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 = 166.277772 -The maximum resident set size (KB) = 287108 +The total amount of wall time = 168.498354 +The maximum resident set size (KB) = 271616 Test 115 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.986741 -The maximum resident set size (KB) = 340128 +The total amount of wall time = 519.590313 +The maximum resident set size (KB) = 341336 Test 116 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3724,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 214.354678 -The maximum resident set size (KB) = 402788 +The total amount of wall time = 225.544434 +The maximum resident set size (KB) = 401824 Test 117 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm Checking test 118 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 = 220.957298 -The maximum resident set size (KB) = 401088 +The total amount of wall time = 204.127404 +The maximum resident set size (KB) = 404028 Test 118 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3754,42 @@ Checking test 119 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 = 243.415431 -The maximum resident set size (KB) = 453356 +The total amount of wall time = 246.418021 +The maximum resident set size (KB) = 451944 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_storm_following_1nest_atm Checking test 120 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 = 79.954664 -The maximum resident set size (KB) = 288364 +The total amount of wall time = 81.008409 +The maximum resident set size (KB) = 283864 Test 120 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 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 = 802.791059 -The maximum resident set size (KB) = 484972 +The total amount of wall time = 807.407225 +The maximum resident set size (KB) = 482896 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 521.524622 -The maximum resident set size (KB) = 523560 +The total amount of wall time = 531.936656 +The maximum resident set size (KB) = 524848 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 123 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 = 237.244416 -The maximum resident set size (KB) = 1540500 +The total amount of wall time = 254.942396 +The maximum resident set size (KB) = 1535596 Test 123 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3943,14 @@ Checking test 124 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 = 246.330369 -The maximum resident set size (KB) = 2817048 +The total amount of wall time = 249.866525 +The maximum resident set size (KB) = 2819136 Test 124 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3994,14 @@ Checking test 125 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.503758 -The maximum resident set size (KB) = 2880708 +The total amount of wall time = 286.698504 +The maximum resident set size (KB) = 2881656 Test 125 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 126 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.095461 -The maximum resident set size (KB) = 2889964 +The total amount of wall time = 297.702818 +The maximum resident set size (KB) = 2886924 Test 126 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4068,14 @@ Checking test 127 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 = 663.801898 -The maximum resident set size (KB) = 1408852 +The total amount of wall time = 800.498110 +The maximum resident set size (KB) = 1409392 Test 127 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4089,14 @@ Checking test 128 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 = 1427.533306 -The maximum resident set size (KB) = 1445536 +The total amount of wall time = 1488.272908 +The maximum resident set size (KB) = 1450268 Test 128 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4112,12 @@ Checking test 129 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 = 656.575411 -The maximum resident set size (KB) = 1403880 +The total amount of wall time = 716.217176 +The maximum resident set size (KB) = 1406128 Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 7 18:09:06 UTC 2023 -Elapsed time: 01h:10m:24s. Have a nice day! +Thu Mar 9 15:39:36 UTC 2023 +Elapsed time: 01h:54m:07s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 001a1cfea2..b858a7e0d9 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -58,7 +58,7 @@ if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then else # Activate lua environment for gaea if [[ $MACHINE_ID == gaea.* ]] ; then - source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh + source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh fi # Load fv3 module module use $PATHTR/modulefiles @@ -132,13 +132,13 @@ bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; then - if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + if [[ $MACHINE_ID == linux.* ]]; then cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} else cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua fi else - if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + if [[ $MACHINE_ID == linux.* ]]; then cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} else cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne index b87293ce8a..38b0d6a8ff 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -17,7 +17,7 @@ if [[ ! -d modulefiles ]]; then mkdir modulefiles mv *.lua modulefiles fi -module use modulefiles +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index f3eb54297e..db6b3f1d12 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -15,7 +15,7 @@ echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR set +x -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module load cray-pals module list diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse index 9420868b8d..1dbc6bcbb5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ b/tests/fv3_conf/fv3_slurm.IN_expanse @@ -14,7 +14,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=expanse source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 92c234edfb..d72b0407ec 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -15,8 +15,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=gaea source ./module-setup.sh -source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh -module use $( pwd -P ) +module use --prepend $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 06ba96a8dd..225acbd192 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -16,7 +16,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=hera source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 0790b5bf99..21effeb05e 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -17,7 +17,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=jet source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index a32e3836b4..50e8cf5655 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -17,7 +17,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=orion source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_s4 b/tests/fv3_conf/fv3_slurm.IN_s4 index 066e11438a..f3f9730604 100644 --- a/tests/fv3_conf/fv3_slurm.IN_s4 +++ b/tests/fv3_conf/fv3_slurm.IN_s4 @@ -16,7 +16,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=s4 source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 3a2f9dd76a..384cc778f0 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -13,7 +13,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=stampede source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 34767e40a7..48a6c91c11 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -60,33 +60,8 @@ elif [[ $MACHINE_ID = gaea* ]] ; then # the module command fails. Hence we actually have to source # /etc/profile here. source /etc/profile - __ms_source_etc_profile=yes - else - __ms_source_etc_profile=no - fi - module purge - # clean up after purge - unset _LMFILES_ - unset _LMFILES_000 - unset _LMFILES_001 - unset LOADEDMODULES - module load modules - if [[ -d /opt/cray/ari/modulefiles ]] ; then - module use -a /opt/cray/ari/modulefiles - fi - if [[ -d /opt/cray/pe/ari/modulefiles ]] ; then - module use -a /opt/cray/pe/ari/modulefiles - fi - if [[ -d /opt/cray/pe/craype/default/modulefiles ]] ; then - module use -a /opt/cray/pe/craype/default/modulefiles - fi - if [[ -s /etc/opt/cray/pe/admin-pe/site-config ]] ; then - source /etc/opt/cray/pe/admin-pe/site-config - fi - if [[ "$__ms_source_etc_profile" == yes ]] ; then - source /etc/profile - unset __ms_source_etc_profile fi + source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh elif [[ $MACHINE_ID = expanse* ]]; then # We are on SDSC Expanse diff --git a/tests/rt.sh b/tests/rt.sh index aa9b00df49..1fb074df5f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230227 +BL_DATE=20230308 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} @@ -821,7 +821,7 @@ else echo ; echo REGRESSION TEST WAS SUCCESSFUL (echo ; echo REGRESSION TEST WAS SUCCESSFUL) >> ${REGRESSIONTEST_LOG} - rm -f fv3_*.x fv3_*.exe modules.fv3_* keep_tests.tmp + rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* diff --git a/tests/run_test.sh b/tests/run_test.sh index 5155450d30..3f63afaaa9 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -89,12 +89,13 @@ MACHINE_ID=${MACHINE_ID:-false} cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe # modulefile for FV3 prerequisites: -if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then - cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 +mkdir -p modulefiles +if [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHRT}/modules.fv3_${COMPILE_NR} ./modulefiles/modules.fv3 else - cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua modules.fv3.lua + cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua ./modulefiles/modules.fv3.lua fi -cp ${PATHTR}/modulefiles/ufs_common* . +cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/module-setup.sh module-setup.sh