diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 4511994b49..75fed2b0e1 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 4511994b498e349393eb56d3f19756ca458c7d65 +Subproject commit 75fed2b0e1d7f81543b62f586aa648f36b290b5a diff --git a/CMakeLists.txt b/CMakeLists.txt index ea8664a18a..91fa89b806 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,6 @@ set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") 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") @@ -111,7 +110,6 @@ message("CCPP_32BIT ....... ${CCPP_32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH .... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") -message("DEBUG_LINKMPI .... ${DEBUG_LINKMPI}") message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") message("MOVING_NEST ...... ${MOVING_NEST}") diff --git a/FV3 b/FV3 index 487c190d72..4eeb83c621 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 487c190d72e1ff6d69fc80c4b5c492a371d74c88 +Subproject commit 4eeb83c6218e3ee7dcc2828d430524778885b5c8 diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index ac9cbabd4e..ca38182b45 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -8,13 +8,6 @@ endif() if(DEBUG) add_definitions(-DDEBUG) set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") - if(DEBUG_LINKMPI) - if(OPENMP) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -link_mpi=dbg_mt") - else() - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -link_mpi=dbg") - endif() - endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") else() if(FASTER) diff --git a/cmake/configure_acorn.cmake b/cmake/configure_acorn.cmake index aba198af7e..016ab1e8b6 100644 --- a/cmake/configure_acorn.cmake +++ b/cmake/configure_acorn.cmake @@ -1,5 +1,4 @@ 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) diff --git a/cmake/configure_cheyenne.intel.cmake b/cmake/configure_cheyenne.intel.cmake index 31f88424f7..8f1ffe0d01 100644 --- a/cmake/configure_cheyenne.intel.cmake +++ b/cmake/configure_cheyenne.intel.cmake @@ -1,2 +1 @@ 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) diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake index f66c5096d3..6037c6379f 100644 --- a/cmake/configure_gaea.intel.cmake +++ b/cmake/configure_gaea.intel.cmake @@ -1,5 +1,4 @@ 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(MOM6_Extra_FORTRAN_FLAGS "-xsse2") set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/cmake/configure_macosx.intel.cmake b/cmake/configure_macosx.intel.cmake index ee238ab301..92b8ecb75e 100644 --- a/cmake/configure_macosx.intel.cmake +++ b/cmake/configure_macosx.intel.cmake @@ -1,2 +1 @@ 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) diff --git a/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake index aba198af7e..016ab1e8b6 100644 --- a/cmake/configure_wcoss2.cmake +++ b/cmake/configure_wcoss2.cmake @@ -1,5 +1,4 @@ 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) diff --git a/doc/UsersGuide/source/ConfigParameters.rst b/doc/UsersGuide/source/ConfigParameters.rst index 6aa6e4eada..0fb0881411 100644 --- a/doc/UsersGuide/source/ConfigParameters.rst +++ b/doc/UsersGuide/source/ConfigParameters.rst @@ -169,7 +169,6 @@ Other Build Options set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") - set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") set(INLINE_POST OFF CACHE BOOL "Enable inline post") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") diff --git a/modulefiles/ufs_acorn.intel_debug.lua b/modulefiles/ufs_acorn.intel_debug.lua deleted file mode 100644 index c2c24709d9..0000000000 --- a/modulefiles/ufs_acorn.intel_debug.lua +++ /dev/null @@ -1,39 +0,0 @@ -help([[ -Load environment to build UFS on Acorn with Intel compiler -]]) - -PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" -load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) - -intel_ver=os.getenv("intel_ver") or "19.1.3.304" -load(pathJoin("intel", intel_ver)) - -craype_ver=os.getenv("craype_ver") or "2.7.13" -load(pathJoin("craype", craype_ver)) - -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.9" -load(pathJoin("cray-mpich", cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.20.2" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -hpc_intel_ver=os.getenv("hpc_intel_ver") or "19.1.3.304" -hpc_cray_mpich_ver=os.getenv("hpc_cray_mpich_ver") or "8.1.9" -load(pathJoin("hpc", hpc_ver)) -load(pathJoin("hpc-intel", hpc_intel_ver)) -load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) - -load("ufs_common_debug") - -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") -load("ifi/20230118-intel-19.1.3.304") - -setenv("CC", "cc") -setenv("CXX", "CC") -setenv("FC", "ftn") -setenv("CMAKE_Platform", "acorn") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.gnu_debug.lua b/modulefiles/ufs_cheyenne.gnu_debug.lua deleted file mode 100644 index 81c8df61d5..0000000000 --- a/modulefiles/ufs_cheyenne.gnu_debug.lua +++ /dev/null @@ -1,43 +0,0 @@ -help([[ -loads UFS Model prerequisites for Cheyenne/GNU Debugging -]]) - -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) - -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python_ver)) - -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) - -gnu_ver=os.getenv("gnu_ver") or "10.1.0" -load(pathJoin("gnu", gnu_ver)) - -mpt_ver=os.getenv("mpt_ver") or "2.25" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "cheyenne.gnu") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.intel_debug.lua b/modulefiles/ufs_cheyenne.intel_debug.lua deleted file mode 100644 index b3bd0dd112..0000000000 --- a/modulefiles/ufs_cheyenne.intel_debug.lua +++ /dev/null @@ -1,44 +0,0 @@ -help([[ -loads UFS Model prerequisites for Cheyenne/Intel Debugging -]]) - -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) - -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python)) - ---load programming environment -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1" -load(pathJoin("intel", intel_ver)) - -mpt_ver=os.getenv("mpt_ver") or "2.25" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "cheyenne.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_common_debug.lua b/modulefiles/ufs_common_debug.lua deleted file mode 100644 index d9191bfd01..0000000000 --- a/modulefiles/ufs_common_debug.lua +++ /dev/null @@ -1,56 +0,0 @@ -help([[ -loads UFS Model common libraries for debug -]]) - -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09-debug" -load(pathJoin("esmf", esmf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms",fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" -load(pathJoin("gftl-shared", gftl_shared_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - -whatis("Description: UFS build environment common libraries for debug") diff --git a/modulefiles/ufs_expanse.intel_debug b/modulefiles/ufs_expanse.intel_debug deleted file mode 100644 index be5ae67a0d..0000000000 --- a/modulefiles/ufs_expanse.intel_debug +++ /dev/null @@ -1,32 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Expanse/Intel" -} - -module-whatis "loads UFS Model prerequisites for Expanse/Intel" - -module load slurm/expanse/20.02.3 -module load cpu/0.15.4 -module load intel/19.1.1.217 -module load intel-mpi/2019.8.254 -module load python/3.8.5 -module load cmake/3.18.2 - -module use module use /expanse/lustre/scratch/domh/temp_project/hpc-stack-20210929/modulefiles/stack - -module load hpc/1.2.0 - -module load hpc-intel/19.1.1.217 -module load hpc-intel-mpi/2019.8.254 - -module load jasper/2.0.25 -module load zlib/1.2.11 -module load png/1.6.35 - -module load ufs_common_debug - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform expanse.intel diff --git a/modulefiles/ufs_gaea.intel_debug.lua b/modulefiles/ufs_gaea.intel_debug.lua deleted file mode 100644 index a7445cea92..0000000000 --- a/modulefiles/ufs_gaea.intel_debug.lua +++ /dev/null @@ -1,35 +0,0 @@ -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/modulefiles/ufs_hera.gnu_debug.lua b/modulefiles/ufs_hera.gnu_debug.lua deleted file mode 100644 index d0ce5d1194..0000000000 --- a/modulefiles/ufs_hera.gnu_debug.lua +++ /dev/null @@ -1,36 +0,0 @@ -help([[ -loads UFS Model prerequisites for Hera/GNU Debugging -]]) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") - -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -gnu_ver=os.getenv("gnu_ver") or "9.2.0" -load(pathJoin("gnu", gnu_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" -load(pathJoin("hpc-mpich", hpc_mpich_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "hera.gnu") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua deleted file mode 100644 index cc4ae9e983..0000000000 --- a/modulefiles/ufs_hera.intel_debug.lua +++ /dev/null @@ -1,42 +0,0 @@ -help([[ -loads UFS Model prerequisites for Hera/Intel Debugging -]]) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") - -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1.2" -load(pathJoin("intel", intel_ver)) - -impi_ver=os.getenv("impi_ver") or "2022.1.2" -load(pathJoin("impi", impi_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "hera.intel") - -prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel_debug.lua b/modulefiles/ufs_jet.intel_debug.lua deleted file mode 100644 index 4b07640c79..0000000000 --- a/modulefiles/ufs_jet.intel_debug.lua +++ /dev/null @@ -1,37 +0,0 @@ -help([[ -loads UFS Model prerequisites for Jet/Intel Debugging -]]) - -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") - -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - - -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "jet.intel") - -prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_linux.gnu_debug b/modulefiles/ufs_linux.gnu_debug deleted file mode 100644 index 41c3588f9f..0000000000 --- a/modulefiles/ufs_linux.gnu_debug +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash - -#%Module###################################################################### -## -## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers - -echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" - -## -## load programming environment: compiler, flags, paths -## -export CC=${CC:-mpicc} -export CXX=${CXX:-mpicxx} -export F77=${F77:-mpif77} -export F90=${F90:-mpif90} -export FC=${FC:-mpif90} - -## -## set up variables for ../cmake/configure_linux.gnu.cmake -## -export CMAKE_Platform=linux.gnu - -## -## use own NetCDF library -## -export NETCDF=${NETCDF:-/home/builder/opt} - -## -## use SIONlib library if installed and environment variable is set -## -SIONLIB=${SIONLIB:-} -if [ ! "x$SIONLIB" == "x" ]; then - echo "Use SIONlib installation in ${SIONLIB}" - export SIONLIB_INC="-I${SIONLIB}/include -I${SIONLIB}/include/mod_64" - export SIONLIB_LIB="-L${SIONLIB}/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none" -fi - -## -## use pre-compiled EMSF library for above compiler / MPI combination -## -export ESMFMKFILE=${ESMFMKFILE:-/home/builder/opt/lib/esmf.mk} - -## -## NCEP libraries (need to download and build manually, see doc/README_{UBUNTU,CENTOS,...}.txt and https://github.com/NCAR/NCEPlibs) -## -export NCEPLIBS_DIR=${NCEPLIBS_DIR:-/home/builder/opt} -export CMAKE_PREFIX_PATH=${NCEPLIBS_DIR} diff --git a/modulefiles/ufs_macosx.gnu_debug b/modulefiles/ufs_macosx.gnu_debug deleted file mode 100644 index 63f7ac2081..0000000000 --- a/modulefiles/ufs_macosx.gnu_debug +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -#%Module###################################################################### -## -## UFS prerequisites: MACOSX with clang/gfortran compilers - -echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" - -## -## load programming environment: compiler, flags, paths -## -export CC=${MPICC:-mpicc} -export CXX=${MPICXX:-mpicxx} -export F77=${MPIF77:-mpif77} -export F90=${MPIF90:-mpif90} -export FC=${MPIFORT:-mpifort} -export CPP=${CPP:-"${F90} -E -x f95-cpp-input"} -export MPICC=${MPICC:-mpicc} -export MPIF90=${MPIF90:-mpif90} - -## -## load cmake -## -export CMAKE_Platform=macosx.gnu diff --git a/modulefiles/ufs_macosx.intel_debug b/modulefiles/ufs_macosx.intel_debug deleted file mode 100644 index 42a9a7a9d4..0000000000 --- a/modulefiles/ufs_macosx.intel_debug +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -#%Module###################################################################### -## -## UFS prerequisites: MACOSX with clang/gfortran compilers - -echo "Setting environment variables for NEMSfv3gfs on MACOSX with icc/ifort" - -## -## load programming environment: compiler, flags, paths -## -export CC=${MPICC:-mpicc} -export CXX=${MPICXX:-mpicxx} -export F77=${MPIF77:-mpif77} -export F90=${MPIF90:-mpif90} -export FC=${MPIFORT:-mpifort} -export CPP=${CPP:-"${F90} -E -x f95-cpp-input"} -export MPICC=${MPICC:-mpicc} -export MPIF90=${MPIF90:-mpif90} - -## -## load cmake -## -export CMAKE_Platform=macosx.intel diff --git a/modulefiles/ufs_orion.intel_debug.lua b/modulefiles/ufs_orion.intel_debug.lua deleted file mode 100644 index 99e76175b9..0000000000 --- a/modulefiles/ufs_orion.intel_debug.lua +++ /dev/null @@ -1,33 +0,0 @@ -help([[ -loads UFS Model prerequisites for Orion/Intel Debugging -]]) - -load("contrib") -load("noaatools") - -cmake_ver=os.getenv("cmake_ver") or "3.22.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "orion.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_s4.intel_debug.lua b/modulefiles/ufs_s4.intel_debug.lua deleted file mode 100644 index 285ddc203e..0000000000 --- a/modulefiles/ufs_s4.intel_debug.lua +++ /dev/null @@ -1,30 +0,0 @@ -help([[ -loads UFS Model prerequisites for S4 -]]) - -miniconda3_ver=os.getenv("miniconda3_ver") or "3.8-s4" -load(pathJoin("miniconda", miniconda3_ver)) - -license_ver=os.getenv("license_ver") or "S4" -load(pathJoin("license_intel",license_ver)) - - -prepend_path("MODULEPATH", "/data/prod/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.1.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "s4.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_wcoss2.intel_debug.lua b/modulefiles/ufs_wcoss2.intel_debug.lua deleted file mode 100644 index 697a952ad4..0000000000 --- a/modulefiles/ufs_wcoss2.intel_debug.lua +++ /dev/null @@ -1,86 +0,0 @@ -help([[ -loads UFS Model prerequisites on Cactus and Dogwood -]]) - --- First, look for libraries on "prod" space -PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" -load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) - -intel_ver=os.getenv("intel_ver") or "19.1.3.304" -load(pathJoin("intel", intel_ver)) - -craype_ver=os.getenv("craype_ver") or "2.7.13" -load(pathJoin("craype", craype_ver)) - -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7" -load(pathJoin("cray-mpich", cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.20.2" -load(pathJoin("cmake", cmake_ver)) - -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms", fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - --- Seond, look for libraries in "para" -setenv("HPC_OPT", "/apps/ops/para/libs") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/compiler/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - --- Finally, look for libraries in "dev" space -prepend_path("MODULEPATH", "/apps/dev/lmodules/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/dev/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.9") - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "1.5.0" -load(pathJoin("gftl_shared", gftl_shared_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09-debug" -load(pathJoin("esmf", esmf_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.23.1-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - -setenv("CC", "cc") -setenv("CXX", "CC") -setenv("FC", "ftn") -setenv("CMAKE_Platform", "wcoss2") - -whatis("Description: UFS build environment") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 210fd982ae..337a906abb 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Wed Mar 29 14:12:38 UTC 2023 +Thu Apr 6 00:41:57 UTC 2023 Start Regression test -Compile 001 elapsed time 543 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 550 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 506 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 993 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 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1623 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 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 379 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 688 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 796 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 618 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 478 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 348 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 324 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 641 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 442 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 659 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8_mixedmode +Compile 001 elapsed time 541 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 995 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 507 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 636 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 1113 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 629 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 1369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 955 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 644 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 510 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 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 021 elapsed time 946 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 868 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 830 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 849 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 635 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.917005 -The maximum resident set size (KB) = 2947316 +The total amount of wall time = 335.452607 +The maximum resident set size (KB) = 2949752 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 259.554270 -The maximum resident set size (KB) = 1573824 +The total amount of wall time = 257.860119 +The maximum resident set size (KB) = 1578796 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.253401 -The maximum resident set size (KB) = 2979672 +The total amount of wall time = 385.655582 +The maximum resident set size (KB) = 2978656 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.033856 -The maximum resident set size (KB) = 2869428 +The total amount of wall time = 229.881767 +The maximum resident set size (KB) = 2868880 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.381863 -The maximum resident set size (KB) = 2993760 +The total amount of wall time = 386.970199 +The maximum resident set size (KB) = 2992180 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +434,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.025014 -The maximum resident set size (KB) = 2878924 +The total amount of wall time = 234.280971 +The maximum resident set size (KB) = 2883424 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +494,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.851727 -The maximum resident set size (KB) = 3280296 +The total amount of wall time = 367.906468 +The maximum resident set size (KB) = 3284924 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.558538 -The maximum resident set size (KB) = 2977208 +The total amount of wall time = 378.560601 +The maximum resident set size (KB) = 2980176 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +614,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.707609 -The maximum resident set size (KB) = 2910232 +The total amount of wall time = 317.122989 +The maximum resident set size (KB) = 2914288 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.552006 -The maximum resident set size (KB) = 2983716 +The total amount of wall time = 384.373833 +The maximum resident set size (KB) = 2978080 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +757,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.858473 -The maximum resident set size (KB) = 1579384 +The total amount of wall time = 283.796362 +The maximum resident set size (KB) = 1576300 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.844987 -The maximum resident set size (KB) = 1629096 +The total amount of wall time = 300.876274 +The maximum resident set size (KB) = 1623096 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.435060 -The maximum resident set size (KB) = 1631632 +The total amount of wall time = 307.612743 +The maximum resident set size (KB) = 1619896 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +952,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.715522 -The maximum resident set size (KB) = 2630776 +The total amount of wall time = 432.219191 +The maximum resident set size (KB) = 2640780 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.682344 -The maximum resident set size (KB) = 2644584 +The total amount of wall time = 120.038728 +The maximum resident set size (KB) = 2650412 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1066,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.485119 -The maximum resident set size (KB) = 2068792 +The total amount of wall time = 67.104734 +The maximum resident set size (KB) = 2066156 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.918229 -The maximum resident set size (KB) = 2981824 +The total amount of wall time = 379.680625 +The maximum resident set size (KB) = 2981716 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,55 +1172,55 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.871319 -The maximum resident set size (KB) = 511836 +The total amount of wall time = 128.962632 +The maximum resident set size (KB) = 508480 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_latlon Checking test 019 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.356983 -The maximum resident set size (KB) = 515976 +The total amount of wall time = 132.275624 +The maximum resident set size (KB) = 515492 Test 019 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.860146 -The maximum resident set size (KB) = 513656 +The total amount of wall time = 134.284691 +The maximum resident set size (KB) = 513016 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c48 Checking test 021 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1254,55 +1254,55 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.212221 -The maximum resident set size (KB) = 672268 +The total amount of wall time = 328.312079 +The maximum resident set size (KB) = 670152 Test 021 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c192 Checking test 022 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.088255 -The maximum resident set size (KB) = 609736 +The total amount of wall time = 528.583998 +The maximum resident set size (KB) = 613064 Test 022 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c384 Checking test 023 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 568.359371 -The maximum resident set size (KB) = 918544 +The total amount of wall time = 564.483894 +The maximum resident set size (KB) = 927132 Test 023 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c384gdas Checking test 024 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1340,71 +1340,71 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 494.874308 -The maximum resident set size (KB) = 1054916 +The total amount of wall time = 498.053276 +The maximum resident set size (KB) = 1057412 Test 024 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy Checking test 025 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.672429 -The maximum resident set size (KB) = 518488 +The total amount of wall time = 89.155902 +The maximum resident set size (KB) = 520128 Test 025 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy_restart Checking test 026 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.072710 -The maximum resident set size (KB) = 286348 +The total amount of wall time = 48.798554 +The maximum resident set size (KB) = 287468 Test 026 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_lndp Checking test 027 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.419751 -The maximum resident set size (KB) = 516884 +The total amount of wall time = 83.139475 +The maximum resident set size (KB) = 516896 Test 027 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_iovr4 Checking test 028 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1412,21 +1412,21 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.006021 -The maximum resident set size (KB) = 513428 +The total amount of wall time = 135.653904 +The maximum resident set size (KB) = 515544 Test 028 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_iovr5 Checking test 029 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1434,21 +1434,21 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.291292 -The maximum resident set size (KB) = 512280 +The total amount of wall time = 135.296271 +The maximum resident set size (KB) = 512604 Test 029 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8 Checking test 030 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1488,17 +1488,17 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 177.825446 -The maximum resident set size (KB) = 1487648 +The total amount of wall time = 180.870996 +The maximum resident set size (KB) = 1488040 Test 030 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_restart_p8 Checking test 031 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1534,21 +1534,21 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.577209 -The maximum resident set size (KB) = 652688 +The total amount of wall time = 100.738403 +The maximum resident set size (KB) = 652348 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_qr_p8 Checking test 032 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1588,17 +1588,17 @@ Checking test 032 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 176.425499 -The maximum resident set size (KB) = 1491644 +The total amount of wall time = 176.476591 +The maximum resident set size (KB) = 1489460 Test 032 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1634,19 +1634,19 @@ Checking test 033 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 99.842455 -The maximum resident set size (KB) = 664892 +The total amount of wall time = 101.521318 +The maximum resident set size (KB) = 662272 Test 033 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_decomp_p8 Checking test 034 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1684,19 +1684,19 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.795252 -The maximum resident set size (KB) = 1473148 +The total amount of wall time = 182.522694 +The maximum resident set size (KB) = 1481712 Test 034 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_2threads_p8 Checking test 035 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1734,23 +1734,23 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.724282 -The maximum resident set size (KB) = 1564192 +The total amount of wall time = 155.601972 +The maximum resident set size (KB) = 1572184 Test 035 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_lndp Checking test 036 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1760,21 +1760,21 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.319254 -The maximum resident set size (KB) = 1482640 +The total amount of wall time = 321.134673 +The maximum resident set size (KB) = 1489724 Test 036 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1814,21 +1814,21 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.878349 -The maximum resident set size (KB) = 1540232 +The total amount of wall time = 235.267253 +The maximum resident set size (KB) = 1543740 Test 037 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_mynn Checking test 038 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1868,21 +1868,21 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.185112 -The maximum resident set size (KB) = 1486340 +The total amount of wall time = 180.918649 +The maximum resident set size (KB) = 1482184 Test 038 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/merra2_thompson Checking test 039 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1922,114 +1922,114 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.795318 -The maximum resident set size (KB) = 1487372 +The total amount of wall time = 204.764284 +The maximum resident set size (KB) = 1492256 Test 039 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control Checking test 040 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.384067 -The maximum resident set size (KB) = 649604 +The total amount of wall time = 286.074198 +The maximum resident set size (KB) = 650040 Test 040 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_restart Checking test 041 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.905236 -The maximum resident set size (KB) = 648076 +The total amount of wall time = 156.093537 +The maximum resident set size (KB) = 650840 Test 041 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control_qr Checking test 042 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.598135 -The maximum resident set size (KB) = 652904 +The total amount of wall time = 286.663600 +The maximum resident set size (KB) = 653756 Test 042 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_restart_qr Checking test 043 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.867027 -The maximum resident set size (KB) = 650588 +The total amount of wall time = 154.867970 +The maximum resident set size (KB) = 650280 Test 043 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_decomp Checking test 044 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.964610 -The maximum resident set size (KB) = 652908 +The total amount of wall time = 302.830543 +The maximum resident set size (KB) = 654244 Test 044 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_2threads Checking test 045 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.535562 -The maximum resident set size (KB) = 698328 +The total amount of wall time = 176.642564 +The maximum resident set size (KB) = 701200 Test 045 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,111 +2037,111 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.309593 -The maximum resident set size (KB) = 641952 +The total amount of wall time = 309.703811 +The maximum resident set size (KB) = 643476 Test 046 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.154789 -The maximum resident set size (KB) = 648892 +The total amount of wall time = 286.272522 +The maximum resident set size (KB) = 654952 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_wofs Checking test 048 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.357493 -The maximum resident set size (KB) = 334468 +The total amount of wall time = 363.911291 +The maximum resident set size (KB) = 340404 Test 048 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_control Checking test 049 regional_ifi_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 318.969497 -The maximum resident set size (KB) = 649612 +The total amount of wall time = 317.056384 +The maximum resident set size (KB) = 653780 Test 049 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 331.332432 -The maximum resident set size (KB) = 649656 +The total amount of wall time = 338.477401 +The maximum resident set size (KB) = 647636 Test 050 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 197.383710 -The maximum resident set size (KB) = 690864 +The total amount of wall time = 195.115343 +The maximum resident set size (KB) = 694660 Test 051 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control Checking test 052 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2181,39 +2181,39 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.957424 -The maximum resident set size (KB) = 896060 +The total amount of wall time = 417.389161 +The maximum resident set size (KB) = 888892 Test 052 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.745269 -The maximum resident set size (KB) = 987896 +The total amount of wall time = 243.064927 +The maximum resident set size (KB) = 988528 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_decomp Checking test 054 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2253,21 +2253,21 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.895943 -The maximum resident set size (KB) = 896120 +The total amount of wall time = 431.734075 +The maximum resident set size (KB) = 895648 Test 054 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_2threads Checking test 055 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2307,17 +2307,17 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 385.548306 -The maximum resident set size (KB) = 961860 +The total amount of wall time = 386.888047 +The maximum resident set size (KB) = 963420 Test 055 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_restart Checking test 056 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2353,21 +2353,21 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.401144 -The maximum resident set size (KB) = 643928 +The total amount of wall time = 212.922792 +The maximum resident set size (KB) = 644880 Test 056 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff Checking test 057 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2407,21 +2407,21 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.676849 -The maximum resident set size (KB) = 894348 +The total amount of wall time = 420.127991 +The maximum resident set size (KB) = 891876 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2461,17 +2461,17 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.230982 -The maximum resident set size (KB) = 897000 +The total amount of wall time = 437.470009 +The maximum resident set size (KB) = 895660 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2507,21 +2507,21 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 307.464237 -The maximum resident set size (KB) = 641644 +The total amount of wall time = 308.566418 +The maximum resident set size (KB) = 641440 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control Checking test 060 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2561,21 +2561,21 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.295213 -The maximum resident set size (KB) = 892528 +The total amount of wall time = 406.324245 +The maximum resident set size (KB) = 893924 Test 060 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2615,21 +2615,21 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.812955 -The maximum resident set size (KB) = 890812 +The total amount of wall time = 420.435492 +The maximum resident set size (KB) = 888212 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2669,17 +2669,17 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.093172 -The maximum resident set size (KB) = 961496 +The total amount of wall time = 373.948212 +The maximum resident set size (KB) = 954908 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_restart Checking test 063 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2715,21 +2715,21 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 296.265548 -The maximum resident set size (KB) = 640980 +The total amount of wall time = 297.133889 +The maximum resident set size (KB) = 635420 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1beta Checking test 064 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2769,21 +2769,21 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.925739 -The maximum resident set size (KB) = 891492 +The total amount of wall time = 417.598356 +The maximum resident set size (KB) = 889492 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2791,21 +2791,21 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.778802 -The maximum resident set size (KB) = 576212 +The total amount of wall time = 482.615099 +The maximum resident set size (KB) = 580268 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2813,151 +2813,163 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.167637 -The maximum resident set size (KB) = 568756 +The total amount of wall time = 470.328811 +The maximum resident set size (KB) = 570120 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 146.206587 -The maximum resident set size (KB) = 794692 +The total amount of wall time = 145.325644 +The maximum resident set size (KB) = 798328 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 102.376536 -The maximum resident set size (KB) = 805508 +The total amount of wall time = 102.299906 +The maximum resident set size (KB) = 801572 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 131.632475 -The maximum resident set size (KB) = 777460 +The total amount of wall time = 132.516360 +The maximum resident set size (KB) = 779616 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 147.644317 -The maximum resident set size (KB) = 802284 +The total amount of wall time = 145.999481 +The maximum resident set size (KB) = 802208 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmg -Checking test 071 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 66.984009 +The maximum resident set size (KB) = 759568 + +Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmg +Checking test 072 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.377703 -The maximum resident set size (KB) = 580180 +The total amount of wall time = 345.673881 +The maximum resident set size (KB) = 581988 -Test 071 control_csawmg PASS +Test 072 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmgt -Checking test 072 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmgt +Checking test 073 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.156429 -The maximum resident set size (KB) = 579588 +The total amount of wall time = 343.629558 +The maximum resident set size (KB) = 581384 -Test 072 control_csawmgt PASS +Test 073 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_ras -Checking test 073 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_ras +Checking test 074 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.343783 -The maximum resident set size (KB) = 548760 +The total amount of wall time = 181.156638 +The maximum resident set size (KB) = 550124 -Test 073 control_ras PASS +Test 074 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wam -Checking test 074 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wam +Checking test 075 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK -The total amount of wall time = 117.411491 -The maximum resident set size (KB) = 270572 +The total amount of wall time = 117.489758 +The maximum resident set size (KB) = 270532 -Test 074 control_wam PASS +Test 075 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_faster -Checking test 075 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_faster +Checking test 076 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2997,75 +3009,75 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.840424 -The maximum resident set size (KB) = 1488036 +The total amount of wall time = 175.104337 +The maximum resident set size (KB) = 1483688 -Test 075 control_p8_faster PASS +Test 076 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control_faster -Checking test 076 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control_faster +Checking test 077 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.423705 -The maximum resident set size (KB) = 652584 +The total amount of wall time = 278.965134 +The maximum resident set size (KB) = 655076 -Test 076 regional_control_faster PASS +Test 077 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 898.602143 -The maximum resident set size (KB) = 832844 +The total amount of wall time = 902.448484 +The maximum resident set size (KB) = 833572 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 522.831470 -The maximum resident set size (KB) = 835464 +The total amount of wall time = 521.833413 +The maximum resident set size (KB) = 831492 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 805.805628 -The maximum resident set size (KB) = 807112 +The total amount of wall time = 804.590450 +The maximum resident set size (KB) = 810844 -Test 079 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3091,359 +3103,359 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.520476 -The maximum resident set size (KB) = 673940 +The total amount of wall time = 156.005302 +The maximum resident set size (KB) = 674020 -Test 080 control_CubedSphereGrid_debug PASS +Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 158.062719 -The maximum resident set size (KB) = 678976 +The total amount of wall time = 156.357020 +The maximum resident set size (KB) = 673340 -Test 081 control_wrtGauss_netcdf_parallel_debug PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy_debug -Checking test 082 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy_debug +Checking test 083 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 178.345598 -The maximum resident set size (KB) = 682180 +The total amount of wall time = 177.537699 +The maximum resident set size (KB) = 682796 -Test 082 control_stochy_debug PASS +Test 083 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_lndp_debug -Checking test 083 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_lndp_debug +Checking test 084 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 160.034608 -The maximum resident set size (KB) = 683984 +The total amount of wall time = 159.637719 +The maximum resident set size (KB) = 679300 -Test 083 control_lndp_debug PASS +Test 084 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmg_debug +Checking test 085 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 255.093887 -The maximum resident set size (KB) = 721016 +The total amount of wall time = 252.482838 +The maximum resident set size (KB) = 720352 -Test 084 control_csawmg_debug PASS +Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 250.811793 -The maximum resident set size (KB) = 722296 +The total amount of wall time = 251.254539 +The maximum resident set size (KB) = 719624 -Test 085 control_csawmgt_debug PASS +Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_ras_debug -Checking test 086 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_ras_debug +Checking test 087 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 161.262217 -The maximum resident set size (KB) = 690000 +The total amount of wall time = 160.674018 +The maximum resident set size (KB) = 686804 -Test 086 control_ras_debug PASS +Test 087 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_diag_debug -Checking test 087 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_diag_debug +Checking test 088 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 163.378696 -The maximum resident set size (KB) = 736564 +The total amount of wall time = 160.666019 +The maximum resident set size (KB) = 734384 -Test 087 control_diag_debug PASS +Test 088 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_debug_p8 -Checking test 088 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_debug_p8 +Checking test 089 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 184.082169 -The maximum resident set size (KB) = 1504412 +The total amount of wall time = 183.147909 +The maximum resident set size (KB) = 1501236 -Test 088 control_debug_p8 PASS +Test 089 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_debug -Checking test 089 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_debug +Checking test 090 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -The total amount of wall time = 1039.355128 -The maximum resident set size (KB) = 677552 +The total amount of wall time = 1036.297992 +The maximum resident set size (KB) = 673608 -Test 089 regional_debug PASS +Test 090 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_debug -Checking test 090 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_debug +Checking test 091 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 296.895070 -The maximum resident set size (KB) = 1054072 +The total amount of wall time = 294.182640 +The maximum resident set size (KB) = 1051428 -Test 090 rap_control_debug PASS +Test 091 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 290.528115 -The maximum resident set size (KB) = 1053688 +The total amount of wall time = 289.508009 +The maximum resident set size (KB) = 1047860 -Test 091 hrrr_control_debug PASS +Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 295.439397 -The maximum resident set size (KB) = 1055388 +The total amount of wall time = 294.557887 +The maximum resident set size (KB) = 1052268 -Test 092 rap_unified_drag_suite_debug PASS +Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_diag_debug -Checking test 093 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_diag_debug +Checking test 094 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 307.911138 -The maximum resident set size (KB) = 1135848 +The total amount of wall time = 305.168098 +The maximum resident set size (KB) = 1135456 -Test 093 rap_diag_debug PASS +Test 094 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 302.721278 -The maximum resident set size (KB) = 1056508 +The total amount of wall time = 302.070547 +The maximum resident set size (KB) = 1051924 -Test 094 rap_cires_ugwp_debug PASS +Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 302.946400 -The maximum resident set size (KB) = 1055436 +The total amount of wall time = 302.165023 +The maximum resident set size (KB) = 1052008 -Test 095 rap_unified_ugwp_debug PASS +Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 300.356495 -The maximum resident set size (KB) = 1055980 +The total amount of wall time = 297.616050 +The maximum resident set size (KB) = 1054032 -Test 096 rap_lndp_debug PASS +Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_flake_debug -Checking test 097 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_flake_debug +Checking test 098 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 296.959605 -The maximum resident set size (KB) = 1057180 +The total amount of wall time = 296.615537 +The maximum resident set size (KB) = 1052716 -Test 097 rap_flake_debug PASS +Test 098 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_progcld_thompson_debug -Checking test 098 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_progcld_thompson_debug +Checking test 099 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 297.118474 -The maximum resident set size (KB) = 1057464 +The total amount of wall time = 296.304327 +The maximum resident set size (KB) = 1054452 -Test 098 rap_progcld_thompson_debug PASS +Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_noah_debug -Checking test 099 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_noah_debug +Checking test 100 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 289.636331 -The maximum resident set size (KB) = 1055732 +The total amount of wall time = 289.348445 +The maximum resident set size (KB) = 1052176 -Test 099 rap_noah_debug PASS +Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_debug -Checking test 100 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_debug +Checking test 101 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 295.889713 -The maximum resident set size (KB) = 1052740 +The total amount of wall time = 294.963002 +The maximum resident set size (KB) = 1051676 -Test 100 rap_sfcdiff_debug PASS +Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 483.554255 -The maximum resident set size (KB) = 1053592 +The total amount of wall time = 484.479149 +The maximum resident set size (KB) = 1050808 -Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1beta_debug -Checking test 102 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1beta_debug +Checking test 103 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 292.309852 -The maximum resident set size (KB) = 1048432 +The total amount of wall time = 291.789073 +The maximum resident set size (KB) = 1044132 -Test 102 rrfs_v1beta_debug PASS +Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wam_debug -Checking test 103 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wam_debug +Checking test 104 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 298.369468 -The maximum resident set size (KB) = 301796 +The total amount of wall time = 294.944046 +The maximum resident set size (KB) = 302852 -Test 103 control_wam_debug PASS +Test 104 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.832487 -The maximum resident set size (KB) = 886660 +The total amount of wall time = 232.262912 +The maximum resident set size (KB) = 884244 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn32_phy32 +Checking test 106 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3483,21 +3495,21 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 347.947982 -The maximum resident set size (KB) = 774184 +The total amount of wall time = 353.085343 +The maximum resident set size (KB) = 773120 -Test 105 rap_control_dyn32_phy32 PASS +Test 106 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_dyn32_phy32 +Checking test 107 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3537,21 +3549,21 @@ Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.192032 -The maximum resident set size (KB) = 776500 +The total amount of wall time = 187.687083 +The maximum resident set size (KB) = 772400 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 107 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_2threads_dyn32_phy32 +Checking test 108 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3591,21 +3603,21 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.977074 -The maximum resident set size (KB) = 832724 +The total amount of wall time = 329.796956 +The maximum resident set size (KB) = 824408 -Test 107 rap_2threads_dyn32_phy32 PASS +Test 108 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_2threads_dyn32_phy32 +Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3645,21 +3657,21 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.219250 -The maximum resident set size (KB) = 827296 +The total amount of wall time = 173.462845 +The maximum resident set size (KB) = 826980 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 109 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_decomp_dyn32_phy32 +Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3699,17 +3711,17 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 193.093694 -The maximum resident set size (KB) = 774532 +The total amount of wall time = 194.751025 +The maximum resident set size (KB) = 774600 -Test 109 hrrr_control_decomp_dyn32_phy32 PASS +Test 110 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_restart_dyn32_phy32 +Checking test 111 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3745,17 +3757,17 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.123905 -The maximum resident set size (KB) = 611376 +The total amount of wall time = 257.440515 +The maximum resident set size (KB) = 610916 -Test 110 rap_restart_dyn32_phy32 PASS +Test 111 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_restart_dyn32_phy32 +Checking test 112 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3791,21 +3803,21 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 94.934822 -The maximum resident set size (KB) = 603840 +The total amount of wall time = 97.316650 +The maximum resident set size (KB) = 603444 -Test 111 hrrr_control_restart_dyn32_phy32 PASS +Test 112 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn64_phy32 +Checking test 113 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3845,440 +3857,440 @@ Checking test 112 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 232.035186 -The maximum resident set size (KB) = 800560 +The total amount of wall time = 233.475473 +The maximum resident set size (KB) = 794276 -Test 112 rap_control_dyn64_phy32 PASS +Test 113 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_debug_dyn32_phy32 +Checking test 114 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 292.743027 -The maximum resident set size (KB) = 942304 +The total amount of wall time = 291.619883 +The maximum resident set size (KB) = 939768 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 114 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_debug_dyn32_phy32 +Checking test 115 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 288.296619 -The maximum resident set size (KB) = 935948 +The total amount of wall time = 287.925518 +The maximum resident set size (KB) = 935192 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 115 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn64_phy32_debug +Checking test 116 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 294.906807 -The maximum resident set size (KB) = 954672 +The total amount of wall time = 292.139846 +The maximum resident set size (KB) = 954320 -Test 115 rap_control_dyn64_phy32_debug PASS +Test 116 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm +Checking test 117 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 269.555970 -The maximum resident set size (KB) = 819172 +The total amount of wall time = 268.260161 +The maximum resident set size (KB) = 822664 -Test 116 hafs_regional_atm PASS +Test 117 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_thompson_gfdlsf -Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_thompson_gfdlsf +Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 314.767365 -The maximum resident set size (KB) = 1177928 +The total amount of wall time = 311.003520 +The maximum resident set size (KB) = 1179636 -Test 117 hafs_regional_atm_thompson_gfdlsf PASS +Test 118 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_ocn +Checking test 119 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 389.432023 -The maximum resident set size (KB) = 854948 +The total amount of wall time = 387.311681 +The maximum resident set size (KB) = 858168 -Test 118 hafs_regional_atm_ocn PASS +Test 119 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_wav +Checking test 120 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 698.265117 -The maximum resident set size (KB) = 887476 +The total amount of wall time = 697.989974 +The maximum resident set size (KB) = 883700 -Test 119 hafs_regional_atm_wav PASS +Test 120 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_ocn_wav -Checking test 120 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_ocn_wav +Checking test 121 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 890.260388 -The maximum resident set size (KB) = 910608 +The total amount of wall time = 891.805177 +The maximum resident set size (KB) = 913896 -Test 120 hafs_regional_atm_ocn_wav PASS +Test 121 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_1nest_atm -Checking test 121 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_1nest_atm +Checking test 122 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.273326 -The maximum resident set size (KB) = 391368 +The total amount of wall time = 332.451163 +The maximum resident set size (KB) = 392756 -Test 121 hafs_regional_1nest_atm PASS +Test 122 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_telescopic_2nests_atm -Checking test 122 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_telescopic_2nests_atm +Checking test 123 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.516099 -The maximum resident set size (KB) = 403520 +The total amount of wall time = 403.835313 +The maximum resident set size (KB) = 401740 -Test 122 hafs_regional_telescopic_2nests_atm PASS +Test 123 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_1nest_atm -Checking test 123 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_1nest_atm +Checking test 124 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.510879 -The maximum resident set size (KB) = 262384 +The total amount of wall time = 172.804741 +The maximum resident set size (KB) = 268004 -Test 123 hafs_global_1nest_atm PASS +Test 124 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_multiple_4nests_atm -Checking test 124 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_multiple_4nests_atm +Checking test 125 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.559317 -The maximum resident set size (KB) = 342068 +The total amount of wall time = 491.903615 +The maximum resident set size (KB) = 349000 -Test 124 hafs_global_multiple_4nests_atm PASS +Test 125 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_specified_moving_1nest_atm -Checking test 125 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_specified_moving_1nest_atm +Checking test 126 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.947204 -The maximum resident set size (KB) = 403544 +The total amount of wall time = 218.770495 +The maximum resident set size (KB) = 403076 -Test 125 hafs_regional_specified_moving_1nest_atm PASS +Test 126 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm -Checking test 126 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm +Checking test 127 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.449515 -The maximum resident set size (KB) = 404060 +The total amount of wall time = 206.754989 +The maximum resident set size (KB) = 405624 -Test 126 hafs_regional_storm_following_1nest_atm PASS +Test 127 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.779605 -The maximum resident set size (KB) = 467236 +The total amount of wall time = 251.971413 +The maximum resident set size (KB) = 469324 -Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_storm_following_1nest_atm -Checking test 128 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_storm_following_1nest_atm +Checking test 129 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.970021 -The maximum resident set size (KB) = 286868 +The total amount of wall time = 84.501640 +The maximum resident set size (KB) = 292060 -Test 128 hafs_global_storm_following_1nest_atm PASS +Test 129 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 820.137974 -The maximum resident set size (KB) = 490236 +The total amount of wall time = 803.347739 +The maximum resident set size (KB) = 487756 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 501.906876 -The maximum resident set size (KB) = 522040 +The total amount of wall time = 504.689227 +The maximum resident set size (KB) = 526660 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_docn -Checking test 131 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_docn +Checking test 132 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 367.740956 -The maximum resident set size (KB) = 857588 +The total amount of wall time = 371.121365 +The maximum resident set size (KB) = 864104 -Test 131 hafs_regional_docn PASS +Test 132 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_docn_oisst -Checking test 132 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_docn_oisst +Checking test 133 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.024801 -The maximum resident set size (KB) = 844600 +The total amount of wall time = 372.439464 +The maximum resident set size (KB) = 845564 -Test 132 hafs_regional_docn_oisst PASS +Test 133 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_datm_cdeps -Checking test 133 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_datm_cdeps +Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 946.620812 -The maximum resident set size (KB) = 840180 +The total amount of wall time = 945.696910 +The maximum resident set size (KB) = 837392 -Test 133 hafs_regional_datm_cdeps PASS +Test 134 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_cfsr -Checking test 134 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_cfsr +Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.576887 -The maximum resident set size (KB) = 731600 +The total amount of wall time = 140.522875 +The maximum resident set size (KB) = 734492 -Test 134 datm_cdeps_control_cfsr PASS +Test 135 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_restart_cfsr -Checking test 135 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_restart_cfsr +Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.368336 -The maximum resident set size (KB) = 707812 +The total amount of wall time = 85.928645 +The maximum resident set size (KB) = 727980 -Test 135 datm_cdeps_restart_cfsr PASS +Test 136 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_gefs -Checking test 136 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_gefs +Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.987212 -The maximum resident set size (KB) = 612152 +The total amount of wall time = 132.977160 +The maximum resident set size (KB) = 614096 -Test 136 datm_cdeps_control_gefs PASS +Test 137 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_iau_gefs -Checking test 137 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_iau_gefs +Checking test 138 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.139134 -The maximum resident set size (KB) = 612940 +The total amount of wall time = 136.585504 +The maximum resident set size (KB) = 615380 -Test 137 datm_cdeps_iau_gefs PASS +Test 138 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_stochy_gefs -Checking test 138 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_stochy_gefs +Checking test 139 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.555289 -The maximum resident set size (KB) = 615492 +The total amount of wall time = 137.691698 +The maximum resident set size (KB) = 611656 -Test 138 datm_cdeps_stochy_gefs PASS +Test 139 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_ciceC_cfsr -Checking test 139 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_ciceC_cfsr +Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.005113 -The maximum resident set size (KB) = 734168 +The total amount of wall time = 141.048303 +The maximum resident set size (KB) = 733524 -Test 139 datm_cdeps_ciceC_cfsr PASS +Test 140 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_bulk_cfsr -Checking test 140 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_bulk_cfsr +Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.808860 -The maximum resident set size (KB) = 732600 +The total amount of wall time = 141.756242 +The maximum resident set size (KB) = 736392 -Test 140 datm_cdeps_bulk_cfsr PASS +Test 141 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_bulk_gefs -Checking test 141 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_bulk_gefs +Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.166995 -The maximum resident set size (KB) = 612080 +The total amount of wall time = 133.750868 +The maximum resident set size (KB) = 612776 -Test 141 datm_cdeps_bulk_gefs PASS +Test 142 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_mx025_cfsr -Checking test 142 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_mx025_cfsr +Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4286,15 +4298,15 @@ Checking test 142 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 = 430.956153 -The maximum resident set size (KB) = 570532 +The total amount of wall time = 430.648954 +The maximum resident set size (KB) = 568860 -Test 142 datm_cdeps_mx025_cfsr PASS +Test 143 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_mx025_gefs -Checking test 143 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_mx025_gefs +Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4302,65 +4314,65 @@ Checking test 143 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 = 427.006678 -The maximum resident set size (KB) = 548844 +The total amount of wall time = 425.907536 +The maximum resident set size (KB) = 550112 -Test 143 datm_cdeps_mx025_gefs PASS +Test 144 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_multiple_files_cfsr -Checking test 144 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_multiple_files_cfsr +Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.509608 -The maximum resident set size (KB) = 719076 +The total amount of wall time = 140.434639 +The maximum resident set size (KB) = 737636 -Test 144 datm_cdeps_multiple_files_cfsr PASS +Test 145 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_3072x1536_cfsr -Checking test 145 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_3072x1536_cfsr +Checking test 146 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 257.521807 -The maximum resident set size (KB) = 1981056 +The total amount of wall time = 257.571050 +The maximum resident set size (KB) = 1978840 -Test 145 datm_cdeps_3072x1536_cfsr PASS +Test 146 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_gfs -Checking test 146 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_gfs +Checking test 147 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 255.951059 -The maximum resident set size (KB) = 1977352 +The total amount of wall time = 257.602193 +The maximum resident set size (KB) = 1978592 -Test 146 datm_cdeps_gfs PASS +Test 147 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_cfsr_faster -Checking test 147 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_cfsr_faster +Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.919813 -The maximum resident set size (KB) = 730932 +The total amount of wall time = 141.768437 +The maximum resident set size (KB) = 736748 -Test 147 datm_cdeps_control_cfsr_faster PASS +Test 148 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_lnd_gswp3 -Checking test 148 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_lnd_gswp3 +Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4368,15 +4380,15 @@ Checking test 148 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.992201 -The maximum resident set size (KB) = 228336 +The total amount of wall time = 21.956515 +The maximum resident set size (KB) = 231120 -Test 148 datm_cdeps_lnd_gswp3 PASS +Test 149 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_lnd_gswp3_rst -Checking test 149 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_lnd_gswp3_rst +Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4384,15 +4396,15 @@ Checking test 149 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.467519 -The maximum resident set size (KB) = 227780 +The total amount of wall time = 27.390248 +The maximum resident set size (KB) = 226688 -Test 149 datm_cdeps_lnd_gswp3_rst PASS +Test 150 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_atmlnd_sbs -Checking test 150 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_atmlnd_sbs +Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4476,19 +4488,19 @@ Checking test 150 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 234.528407 -The maximum resident set size (KB) = 1540148 +The total amount of wall time = 235.300224 +The maximum resident set size (KB) = 1550436 -Test 150 control_p8_atmlnd_sbs PASS +Test 151 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_atmwav -Checking test 151 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_atmwav +Checking test 152 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4527,19 +4539,19 @@ Checking test 151 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 92.271500 -The maximum resident set size (KB) = 538768 +The total amount of wall time = 90.171023 +The maximum resident set size (KB) = 539360 -Test 151 control_atmwav PASS +Test 152 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8 -Checking test 152 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8 +Checking test 153 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4578,19 +4590,19 @@ Checking test 152 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 = 242.556994 -The maximum resident set size (KB) = 2813860 +The total amount of wall time = 245.964017 +The maximum resident set size (KB) = 2814272 -Test 152 atmaero_control_p8 PASS +Test 153 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8_rad -Checking test 153 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8_rad +Checking test 154 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4629,19 +4641,19 @@ Checking test 153 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 = 281.796089 -The maximum resident set size (KB) = 2875352 +The total amount of wall time = 281.685724 +The maximum resident set size (KB) = 2874372 -Test 153 atmaero_control_p8_rad PASS +Test 154 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8_rad_micro -Checking test 154 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8_rad_micro +Checking test 155 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4680,21 +4692,21 @@ Checking test 154 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 = 288.525457 -The maximum resident set size (KB) = 2883968 +The total amount of wall time = 287.908833 +The maximum resident set size (KB) = 2885156 -Test 154 atmaero_control_p8_rad_micro PASS +Test 155 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq -Checking test 155 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq +Checking test 156 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4703,19 +4715,19 @@ Checking test 155 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 = 683.244008 -The maximum resident set size (KB) = 1257452 +The total amount of wall time = 688.968888 +The maximum resident set size (KB) = 1257132 -Test 155 regional_atmaq PASS +Test 156 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq_debug -Checking test 156 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq_debug +Checking test 157 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4724,21 +4736,21 @@ Checking test 156 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 = 1376.287172 -The maximum resident set size (KB) = 1289704 +The total amount of wall time = 1310.809363 +The maximum resident set size (KB) = 1289336 -Test 156 regional_atmaq_debug PASS +Test 157 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq_faster -Checking test 157 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq_faster +Checking test 158 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4747,12 +4759,12 @@ Checking test 157 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 = 643.853784 -The maximum resident set size (KB) = 1257544 +The total amount of wall time = 649.327746 +The maximum resident set size (KB) = 1257280 -Test 157 regional_atmaq_faster PASS +Test 158 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 29 15:51:29 UTC 2023 -Elapsed time: 01h:38m:51s. Have a nice day! +Thu Apr 6 02:20:16 UTC 2023 +Elapsed time: 01h:38m:20s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 180d54648c..c561f7d479 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,26 +1,26 @@ -Tue Mar 28 15:08:30 MDT 2023 +Wed Apr 5 20:08:19 MDT 2023 Start Regression test -Compile 001 elapsed time 376 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_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 003 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 197 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 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 864 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 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 359 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 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 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1079 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 846 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 845 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 627 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 567 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 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-20230324/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -54,57 +54,57 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 822.201367 -0:The maximum resident set size (KB) = 678112 +0:The total amount of wall time = 820.203183 +0:The maximum resident set size (KB) = 679744 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 179.262211 -0:The maximum resident set size (KB) = 443156 +0:The total amount of wall time = 173.719421 +0:The maximum resident set size (KB) = 443696 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_ras Checking test 003 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 289.221629 -0:The maximum resident set size (KB) = 452576 +0:The total amount of wall time = 294.337464 +0:The maximum resident set size (KB) = 452180 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -144,21 +144,21 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.381510 -0:The maximum resident set size (KB) = 1226440 +0:The total amount of wall time = 311.621845 +0:The maximum resident set size (KB) = 1224584 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -198,21 +198,21 @@ 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 = 711.233650 -0:The maximum resident set size (KB) = 791704 +0:The total amount of wall time = 713.539688 +0:The maximum resident set size (KB) = 791684 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_decomp Checking test 006 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -252,21 +252,21 @@ 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 = 716.380398 -0:The maximum resident set size (KB) = 791484 +0:The total amount of wall time = 719.556774 +0:The maximum resident set size (KB) = 791432 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_2threads Checking test 007 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -306,17 +306,17 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.183183 -0:The maximum resident set size (KB) = 865192 +0:The total amount of wall time = 651.838869 +0:The maximum resident set size (KB) = 865472 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_restart Checking test 008 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -352,21 +352,21 @@ 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 = 352.289277 -0:The maximum resident set size (KB) = 538944 +0:The total amount of wall time = 354.592846 +0:The maximum resident set size (KB) = 538952 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff Checking test 009 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -406,21 +406,21 @@ 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 = 712.110229 -0:The maximum resident set size (KB) = 791876 +0:The total amount of wall time = 714.606022 +0:The maximum resident set size (KB) = 791976 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -460,17 +460,17 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 727.129536 -0:The maximum resident set size (KB) = 790820 +0:The total amount of wall time = 718.158590 +0:The maximum resident set size (KB) = 791308 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -506,21 +506,21 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 528.857662 -0:The maximum resident set size (KB) = 543912 +0:The total amount of wall time = 522.172457 +0:The maximum resident set size (KB) = 544484 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control Checking test 012 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -560,21 +560,21 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.179647 -0:The maximum resident set size (KB) = 789148 +0:The total amount of wall time = 690.323702 +0:The maximum resident set size (KB) = 789092 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -614,21 +614,21 @@ 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 = 626.028944 -0:The maximum resident set size (KB) = 859992 +0:The total amount of wall time = 626.869514 +0:The maximum resident set size (KB) = 860244 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -668,17 +668,17 @@ 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 = 689.888031 -0:The maximum resident set size (KB) = 788484 +0:The total amount of wall time = 686.208501 +0:The maximum resident set size (KB) = 788848 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_restart Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -714,21 +714,21 @@ 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 = 510.590636 -0:The maximum resident set size (KB) = 540004 +0:The total amount of wall time = 510.286175 +0:The maximum resident set size (KB) = 540244 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_v1beta Checking test 016 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -768,293 +768,305 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.936384 -0:The maximum resident set size (KB) = 788568 +0:The total amount of wall time = 704.339533 +0:The maximum resident set size (KB) = 788808 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.321586 -0:The maximum resident set size (KB) = 635984 +0:The total amount of wall time = 232.389544 +0:The maximum resident set size (KB) = 636952 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 148.045708 -0:The maximum resident set size (KB) = 654848 +0:The total amount of wall time = 152.802218 +0:The maximum resident set size (KB) = 661268 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.151725 -0:The maximum resident set size (KB) = 614804 +0:The total amount of wall time = 211.684320 +0:The maximum resident set size (KB) = 615484 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.569833 -0:The maximum resident set size (KB) = 638484 +0:The total amount of wall time = 234.499074 +0:The maximum resident set size (KB) = 639300 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_diag_debug -Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 88.438029 -0:The maximum resident set size (KB) = 495696 +0:The total amount of wall time = 110.653052 +0:The maximum resident set size (KB) = 596520 -Test 021 control_diag_debug PASS +Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/regional_debug -Checking test 022 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_diag_debug +Checking test 022 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 482.851426 -0:The maximum resident set size (KB) = 570132 +0:The total amount of wall time = 82.360775 +0:The maximum resident set size (KB) = 492040 -Test 022 regional_debug PASS +Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_debug -Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/regional_debug +Checking test 023 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -0:The total amount of wall time = 151.226278 -0:The maximum resident set size (KB) = 809044 +0:The total amount of wall time = 475.298683 +0:The maximum resident set size (KB) = 567272 -Test 023 rap_control_debug PASS +Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_debug -Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_debug +Checking test 024 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.058383 -0:The maximum resident set size (KB) = 804892 +0:The total amount of wall time = 145.297581 +0:The maximum resident set size (KB) = 805572 -Test 024 hrrr_control_debug PASS +Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_diag_debug -Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_debug +Checking test 025 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.867929 -0:The maximum resident set size (KB) = 892120 +0:The total amount of wall time = 142.177776 +0:The maximum resident set size (KB) = 801432 -Test 025 rap_diag_debug PASS +Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_diag_debug +Checking test 026 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 242.720910 -0:The maximum resident set size (KB) = 807588 +0:The total amount of wall time = 152.245369 +0:The maximum resident set size (KB) = 887972 -Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_progcld_thompson_debug -Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.315733 -0:The maximum resident set size (KB) = 808884 +0:The total amount of wall time = 233.467355 +0:The maximum resident set size (KB) = 804560 -Test 027 rap_progcld_thompson_debug PASS +Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_v1beta_debug -Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_progcld_thompson_debug +Checking test 028 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.240482 -0:The maximum resident set size (KB) = 804280 +0:The total amount of wall time = 145.127812 +0:The maximum resident set size (KB) = 805428 -Test 028 rrfs_v1beta_debug PASS +Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_ras_debug -Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_v1beta_debug +Checking test 029 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.796381 -0:The maximum resident set size (KB) = 449956 +0:The total amount of wall time = 143.939482 +0:The maximum resident set size (KB) = 801108 -Test 029 control_ras_debug PASS +Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_stochy_debug -Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_ras_debug +Checking test 030 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.904616 -0:The maximum resident set size (KB) = 441828 +0:The total amount of wall time = 80.234776 +0:The maximum resident set size (KB) = 446312 -Test 030 control_stochy_debug PASS +Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_debug_p8 -Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_stochy_debug +Checking test 031 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 97.434149 -0:The maximum resident set size (KB) = 1225136 +0:The total amount of wall time = 88.389506 +0:The maximum resident set size (KB) = 438764 -Test 031 control_debug_p8 PASS +Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_debug_p8 +Checking test 032 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 444.438416 -0:The maximum resident set size (KB) = 644776 +0:The total amount of wall time = 90.483329 +0:The maximum resident set size (KB) = 1220984 -Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 263.837556 -0:The maximum resident set size (KB) = 668980 +0:The total amount of wall time = 435.166829 +0:The maximum resident set size (KB) = 641652 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_conus13km_hrrr_warm_debug -Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 403.213134 -0:The maximum resident set size (KB) = 623172 +0:The total amount of wall time = 255.594807 +0:The maximum resident set size (KB) = 660812 -Test 034 rrfs_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_wam_debug -Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm_debug +Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.760189 -0:The maximum resident set size (KB) = 185492 +0:The total amount of wall time = 394.597782 +0:The maximum resident set size (KB) = 620416 -Test 035 control_wam_debug PASS +Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn32_phy32 -Checking test 036 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_wam_debug +Checking test 036 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +0:The total amount of wall time = 139.234828 +0:The maximum resident set size (KB) = 182304 + +Test 036 control_wam_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn32_phy32 +Checking test 037 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1094,21 +1106,21 @@ Checking test 036 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.108563 -0:The maximum resident set size (KB) = 673060 +0:The total amount of wall time = 700.957115 +0:The maximum resident set size (KB) = 673280 -Test 036 rap_control_dyn32_phy32 PASS +Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_dyn32_phy32 -Checking test 037 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_dyn32_phy32 +Checking test 038 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1148,21 +1160,21 @@ Checking test 037 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 = 347.661311 -0:The maximum resident set size (KB) = 671584 +0:The total amount of wall time = 355.835023 +0:The maximum resident set size (KB) = 670832 -Test 037 hrrr_control_dyn32_phy32 PASS +Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_2threads_dyn32_phy32 -Checking test 038 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_2threads_dyn32_phy32 +Checking test 039 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1202,21 +1214,21 @@ Checking test 038 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 = 630.560091 -0:The maximum resident set size (KB) = 719484 +0:The total amount of wall time = 638.283018 +0:The maximum resident set size (KB) = 719624 -Test 038 rap_2threads_dyn32_phy32 PASS +Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_2threads_dyn32_phy32 -Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_2threads_dyn32_phy32 +Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1256,21 +1268,21 @@ Checking test 039 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 = 313.855677 -0:The maximum resident set size (KB) = 716600 +0:The total amount of wall time = 320.044041 +0:The maximum resident set size (KB) = 716676 -Test 039 hrrr_control_2threads_dyn32_phy32 PASS +Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_decomp_dyn32_phy32 -Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_decomp_dyn32_phy32 +Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1310,17 +1322,17 @@ Checking test 040 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 = 348.037317 -0:The maximum resident set size (KB) = 670480 +0:The total amount of wall time = 353.921498 +0:The maximum resident set size (KB) = 670752 -Test 040 hrrr_control_decomp_dyn32_phy32 PASS +Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_restart_dyn32_phy32 -Checking test 041 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_restart_dyn32_phy32 +Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1356,17 +1368,17 @@ Checking test 041 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 = 510.943921 -0:The maximum resident set size (KB) = 511124 +0:The total amount of wall time = 518.811221 +0:The maximum resident set size (KB) = 511312 -Test 041 rap_restart_dyn32_phy32 PASS +Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_restart_dyn32_phy32 -Checking test 042 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_restart_dyn32_phy32 +Checking test 043 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -1402,21 +1414,21 @@ Checking test 042 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 = 176.555672 -0:The maximum resident set size (KB) = 506828 +0:The total amount of wall time = 179.870658 +0:The maximum resident set size (KB) = 507124 -Test 042 hrrr_control_restart_dyn32_phy32 PASS +Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn64_phy32 -Checking test 043 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn64_phy32 +Checking test 044 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1456,57 +1468,57 @@ Checking test 043 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.943412 -0:The maximum resident set size (KB) = 692896 +0:The total amount of wall time = 412.280473 +0:The maximum resident set size (KB) = 692856 -Test 043 rap_control_dyn64_phy32 PASS +Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_debug_dyn32_phy32 -Checking test 044 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_debug_dyn32_phy32 +Checking test 045 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.966784 -0:The maximum resident set size (KB) = 690900 +0:The total amount of wall time = 144.140106 +0:The maximum resident set size (KB) = 687848 -Test 044 rap_control_debug_dyn32_phy32 PASS +Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_debug_dyn32_phy32 -Checking test 045 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_debug_dyn32_phy32 +Checking test 046 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.578422 -0:The maximum resident set size (KB) = 687984 +0:The total amount of wall time = 140.445142 +0:The maximum resident set size (KB) = 684340 -Test 045 hrrr_control_debug_dyn32_phy32 PASS +Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn64_phy32_debug -Checking test 046 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn64_phy32_debug +Checking test 047 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.447576 -0:The maximum resident set size (KB) = 711284 +0:The total amount of wall time = 147.804961 +0:The maximum resident set size (KB) = 707604 -Test 046 rap_control_dyn64_phy32_debug PASS +Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_control_p8 -Checking test 047 cpld_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1570,15 +1582,15 @@ Checking test 047 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.132211 -0:The maximum resident set size (KB) = 3159988 +0:The total amount of wall time = 501.776562 +0:The maximum resident set size (KB) = 3158772 -Test 047 cpld_control_p8 PASS +Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_control_nowave_noaero_p8 -Checking test 048 cpld_control_nowave_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_control_nowave_noaero_p8 +Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1639,15 +1651,15 @@ Checking test 048 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 = 252.392150 -0:The maximum resident set size (KB) = 1240620 +0:The total amount of wall time = 250.062030 +0:The maximum resident set size (KB) = 1240384 -Test 048 cpld_control_nowave_noaero_p8 PASS +Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_debug_p8 -Checking test 049 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_debug_p8 +Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1699,25 +1711,25 @@ Checking test 049 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 = 278.275011 -0:The maximum resident set size (KB) = 3178212 +0:The total amount of wall time = 201.137488 +0:The maximum resident set size (KB) = 3173204 -Test 049 cpld_debug_p8 PASS +Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/datm_cdeps_control_cfsr -Checking test 050 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/datm_cdeps_control_cfsr +Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 179.512443 -0:The maximum resident set size (KB) = 671564 +0:The total amount of wall time = 178.653315 +0:The maximum resident set size (KB) = 676068 -Test 050 datm_cdeps_control_cfsr PASS +Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 15:45:28 MDT 2023 -Elapsed time: 00h:36m:59s. Have a nice day! +Wed Apr 5 20:41:10 MDT 2023 +Elapsed time: 00h:32m:51s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d15a94735c..d1d7b60cbb 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 14:53:23 MDT 2023 +Wed Apr 5 19:53:24 MDT 2023 Start Regression test -Compile 001 elapsed time 1449 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 1434 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 1363 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 456 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 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1092 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 1083 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1688 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 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 972 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 930 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 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1269 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 -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1119 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 351 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1575 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 1092 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 428 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 435 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 1504 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 1394 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 1365 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 450 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1062 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 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1799 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 1066 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 975 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 921 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 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1300 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 392 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 258 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 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 838 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 279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1125 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 338 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 1105 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 436 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 433 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 941 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 977 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 892 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 877 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1036 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_p8_mixedmode +Compile 028 elapsed time 955 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 978 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 895 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 291 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1044 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/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 = 316.226526 -0:The maximum resident set size (KB) = 2699188 +0:The total amount of wall time = 309.701780 +0:The maximum resident set size (KB) = 2698496 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/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 = 283.958802 -0:The maximum resident set size (KB) = 1438708 +0:The total amount of wall time = 283.089224 +0:The maximum resident set size (KB) = 1437292 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/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 = 327.253865 -0:The maximum resident set size (KB) = 2716876 +0:The total amount of wall time = 321.490867 +0:The maximum resident set size (KB) = 2715308 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/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 = 188.388181 -0:The maximum resident set size (KB) = 2578200 +0:The total amount of wall time = 185.820314 +0:The maximum resident set size (KB) = 2576604 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 331.751553 -0:The maximum resident set size (KB) = 2720880 +0:The total amount of wall time = 318.031019 +0:The maximum resident set size (KB) = 2719620 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 202.907386 -0:The maximum resident set size (KB) = 2595024 +0:The total amount of wall time = 200.015582 +0:The maximum resident set size (KB) = 2593588 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 258.153702 -0:The maximum resident set size (KB) = 3177944 +0:The total amount of wall time = 249.604068 +0:The maximum resident set size (KB) = 3178180 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.384238 -0:The maximum resident set size (KB) = 2721116 +0:The total amount of wall time = 313.000753 +0:The maximum resident set size (KB) = 2720616 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.034291 -0:The maximum resident set size (KB) = 2681244 +0:The total amount of wall time = 276.892139 +0:The maximum resident set size (KB) = 2680356 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.845385 -0:The maximum resident set size (KB) = 2716548 +0:The total amount of wall time = 323.824721 +0:The maximum resident set size (KB) = 2715796 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 629.339678 -0:The maximum resident set size (KB) = 3351528 +0:The total amount of wall time = 659.097717 +0:The maximum resident set size (KB) = 3353776 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 390.394911 -0:The maximum resident set size (KB) = 3276084 +0:The total amount of wall time = 385.385539 +0:The maximum resident set size (KB) = 3275792 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,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 = 298.755764 -0:The maximum resident set size (KB) = 1436520 +0:The total amount of wall time = 296.221875 +0:The maximum resident set size (KB) = 1435740 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.314722 -0:The maximum resident set size (KB) = 1452496 +0:The total amount of wall time = 196.295655 +0:The maximum resident set size (KB) = 1453148 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,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 = 482.326840 -0:The maximum resident set size (KB) = 2787956 +0:The total amount of wall time = 350.661610 +0:The maximum resident set size (KB) = 2779076 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,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 = 352.314611 -0:The maximum resident set size (KB) = 1460532 +0:The total amount of wall time = 299.831612 +0:The maximum resident set size (KB) = 1453784 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,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 = 264.967496 -0:The maximum resident set size (KB) = 1456164 +0:The total amount of wall time = 250.687164 +0:The maximum resident set size (KB) = 1456844 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,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.604193 -0:The maximum resident set size (KB) = 2583460 +0:The total amount of wall time = 606.256689 +0:The maximum resident set size (KB) = 2586252 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,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 = 161.026817 -0:The maximum resident set size (KB) = 2600960 +0:The total amount of wall time = 161.745036 +0:The maximum resident set size (KB) = 2601736 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.881532 -0:The maximum resident set size (KB) = 2017432 +0:The total amount of wall time = 85.573502 +0:The maximum resident set size (KB) = 2018796 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1341,69 +1341,69 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.982033 -0:The maximum resident set size (KB) = 453584 +0:The total amount of wall time = 142.261114 +0:The maximum resident set size (KB) = 454228 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 142.017359 -0:The maximum resident set size (KB) = 453548 +0:The total amount of wall time = 136.828167 +0:The maximum resident set size (KB) = 454064 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_latlon Checking test 023 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.951273 -0:The maximum resident set size (KB) = 453872 +0:The total amount of wall time = 146.126792 +0:The maximum resident set size (KB) = 454148 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.057799 -0:The maximum resident set size (KB) = 453936 +0:The total amount of wall time = 149.940324 +0:The maximum resident set size (KB) = 454168 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c48 Checking test 025 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1437,55 +1437,55 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 449.775635 -0:The maximum resident set size (KB) = 627924 +0:The total amount of wall time = 441.953889 +0:The maximum resident set size (KB) = 633472 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c192 Checking test 026 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.848081 -0:The maximum resident set size (KB) = 557672 +0:The total amount of wall time = 594.984723 +0:The maximum resident set size (KB) = 560256 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c384 Checking test 027 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 587.518195 -0:The maximum resident set size (KB) = 897924 +0:The total amount of wall time = 586.059219 +0:The maximum resident set size (KB) = 899104 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c384gdas Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1523,71 +1523,71 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 529.002144 -0:The maximum resident set size (KB) = 1024280 +0:The total amount of wall time = 513.566833 +0:The maximum resident set size (KB) = 1026848 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy Checking test 029 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.352542 -0:The maximum resident set size (KB) = 455676 +0:The total amount of wall time = 98.259702 +0:The maximum resident set size (KB) = 459112 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy_restart Checking test 030 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.424906 -0:The maximum resident set size (KB) = 226448 +0:The total amount of wall time = 53.354821 +0:The maximum resident set size (KB) = 226508 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_lndp Checking test 031 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 91.136029 -0:The maximum resident set size (KB) = 456624 +0:The total amount of wall time = 88.675563 +0:The maximum resident set size (KB) = 458152 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_iovr4 Checking test 032 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1595,21 +1595,21 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.495526 -0:The maximum resident set size (KB) = 454000 +0:The total amount of wall time = 148.035047 +0:The maximum resident set size (KB) = 454256 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_iovr5 Checking test 033 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1617,21 +1617,21 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.443685 -0:The maximum resident set size (KB) = 453900 +0:The total amount of wall time = 147.883385 +0:The maximum resident set size (KB) = 454260 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8 Checking test 034 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1671,17 +1671,17 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.500171 -0:The maximum resident set size (KB) = 1423180 +0:The total amount of wall time = 181.133109 +0:The maximum resident set size (KB) = 1423832 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_restart_p8 Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1717,21 +1717,21 @@ 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.494093 -0:The maximum resident set size (KB) = 582524 +0:The total amount of wall time = 96.261395 +0:The maximum resident set size (KB) = 582824 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_qr_p8 Checking test 036 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1771,17 +1771,17 @@ Checking test 036 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 182.309390 -0:The maximum resident set size (KB) = 1427140 +0:The total amount of wall time = 183.118070 +0:The maximum resident set size (KB) = 1427208 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1817,19 +1817,19 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 97.533596 -0:The maximum resident set size (KB) = 596076 +0:The total amount of wall time = 98.433149 +0:The maximum resident set size (KB) = 596824 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_decomp_p8 Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1867,19 +1867,19 @@ 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 = 187.031365 -0:The maximum resident set size (KB) = 1417964 +0:The total amount of wall time = 184.077411 +0:The maximum resident set size (KB) = 1418344 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_2threads_p8 Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1917,23 +1917,23 @@ 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 = 169.893880 -0:The maximum resident set size (KB) = 1508772 +0:The total amount of wall time = 171.038032 +0:The maximum resident set size (KB) = 1510220 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_lndp Checking test 040 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1943,21 +1943,21 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.048074 -0:The maximum resident set size (KB) = 1423352 +0:The total amount of wall time = 336.895002 +0:The maximum resident set size (KB) = 1424868 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1997,21 +1997,21 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 256.394235 -0:The maximum resident set size (KB) = 1481664 +0:The total amount of wall time = 253.217866 +0:The maximum resident set size (KB) = 1480228 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_mynn Checking test 042 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2051,21 +2051,21 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.457468 -0:The maximum resident set size (KB) = 1428076 +0:The total amount of wall time = 184.481915 +0:The maximum resident set size (KB) = 1427880 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/merra2_thompson Checking test 043 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2105,114 +2105,114 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.656415 -0:The maximum resident set size (KB) = 1429284 +0:The total amount of wall time = 210.444699 +0:The maximum resident set size (KB) = 1429604 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control Checking test 044 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.756038 -0:The maximum resident set size (KB) = 604072 +0:The total amount of wall time = 341.914507 +0:The maximum resident set size (KB) = 604752 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_restart Checking test 045 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.071161 -0:The maximum resident set size (KB) = 593776 +0:The total amount of wall time = 172.808086 +0:The maximum resident set size (KB) = 594044 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control_qr Checking test 046 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 331.533340 -0:The maximum resident set size (KB) = 604120 +0:The total amount of wall time = 343.609119 +0:The maximum resident set size (KB) = 604768 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_restart_qr Checking test 047 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.519379 -0:The maximum resident set size (KB) = 593772 +0:The total amount of wall time = 169.265220 +0:The maximum resident set size (KB) = 594116 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_decomp Checking test 048 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.952895 -0:The maximum resident set size (KB) = 597360 +0:The total amount of wall time = 357.856326 +0:The maximum resident set size (KB) = 598768 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_2threads Checking test 049 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.432190 -0:The maximum resident set size (KB) = 610616 +0:The total amount of wall time = 201.158100 +0:The maximum resident set size (KB) = 611264 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2220,71 +2220,71 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.457899 -0:The maximum resident set size (KB) = 598536 +0:The total amount of wall time = 366.968820 +0:The maximum resident set size (KB) = 598964 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK -0:The total amount of wall time = 339.144912 -0:The maximum resident set size (KB) = 596060 +0:The total amount of wall time = 338.654586 +0:The maximum resident set size (KB) = 596592 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.035016 -0:The maximum resident set size (KB) = 604072 +0:The total amount of wall time = 341.761167 +0:The maximum resident set size (KB) = 604644 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_wofs Checking test 053 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 436.474334 -0:The maximum resident set size (KB) = 275216 +0:The total amount of wall time = 416.725922 +0:The maximum resident set size (KB) = 275760 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control Checking test 054 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2324,39 +2324,39 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.823237 -0:The maximum resident set size (KB) = 824636 +0:The total amount of wall time = 481.483324 +0:The maximum resident set size (KB) = 823492 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 260.436289 -0:The maximum resident set size (KB) = 951796 +0:The total amount of wall time = 255.751789 +0:The maximum resident set size (KB) = 952244 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_decomp Checking test 056 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2396,21 +2396,21 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 500.687987 -0:The maximum resident set size (KB) = 823116 +0:The total amount of wall time = 504.293135 +0:The maximum resident set size (KB) = 822388 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_2threads Checking test 057 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2450,17 +2450,17 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 460.499034 -0:The maximum resident set size (KB) = 893844 +0:The total amount of wall time = 453.278523 +0:The maximum resident set size (KB) = 893380 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_restart Checking test 058 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2496,21 +2496,21 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 242.279692 -0:The maximum resident set size (KB) = 572816 +0:The total amount of wall time = 241.238889 +0:The maximum resident set size (KB) = 571260 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff Checking test 059 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2550,21 +2550,21 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.719194 -0:The maximum resident set size (KB) = 824568 +0:The total amount of wall time = 480.166461 +0:The maximum resident set size (KB) = 823420 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2604,17 +2604,17 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.324721 -0:The maximum resident set size (KB) = 825740 +0:The total amount of wall time = 502.525194 +0:The maximum resident set size (KB) = 822296 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2650,21 +2650,21 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.219123 -0:The maximum resident set size (KB) = 570688 +0:The total amount of wall time = 355.742087 +0:The maximum resident set size (KB) = 570816 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control Checking test 062 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2704,21 +2704,21 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.529207 -0:The maximum resident set size (KB) = 821528 +0:The total amount of wall time = 465.028529 +0:The maximum resident set size (KB) = 820884 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2758,21 +2758,21 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.898709 -0:The maximum resident set size (KB) = 821408 +0:The total amount of wall time = 484.130375 +0:The maximum resident set size (KB) = 820768 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2812,17 +2812,17 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 434.680462 -0:The maximum resident set size (KB) = 884352 +0:The total amount of wall time = 437.700287 +0:The maximum resident set size (KB) = 888312 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_restart Checking test 065 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2858,21 +2858,21 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 339.201979 -0:The maximum resident set size (KB) = 567904 +0:The total amount of wall time = 344.173017 +0:The maximum resident set size (KB) = 566540 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1beta Checking test 066 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2912,21 +2912,21 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.270358 -0:The maximum resident set size (KB) = 820144 +0:The total amount of wall time = 473.084398 +0:The maximum resident set size (KB) = 819496 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2934,21 +2934,21 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.972626 -0:The maximum resident set size (KB) = 508612 +0:The total amount of wall time = 585.464611 +0:The maximum resident set size (KB) = 508724 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2956,151 +2956,163 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 568.653721 -0:The maximum resident set size (KB) = 502416 +0:The total amount of wall time = 571.605504 +0:The maximum resident set size (KB) = 502580 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.416035 -0:The maximum resident set size (KB) = 672456 +0:The total amount of wall time = 152.059894 +0:The maximum resident set size (KB) = 675272 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 92.265461 -0:The maximum resident set size (KB) = 690444 +0:The total amount of wall time = 92.026044 +0:The maximum resident set size (KB) = 693924 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.801842 -0:The maximum resident set size (KB) = 653400 +0:The total amount of wall time = 134.932818 +0:The maximum resident set size (KB) = 654140 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.452442 -0:The maximum resident set size (KB) = 674548 +0:The total amount of wall time = 150.207148 +0:The maximum resident set size (KB) = 677924 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmg -Checking test 073 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 70.662713 +0:The maximum resident set size (KB) = 632272 + +Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmg +Checking test 074 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.058751 -0:The maximum resident set size (KB) = 525872 +0:The total amount of wall time = 398.493041 +0:The maximum resident set size (KB) = 527696 -Test 073 control_csawmg PASS +Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmgt -Checking test 074 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmgt +Checking test 075 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 390.784502 -0:The maximum resident set size (KB) = 530004 +0:The total amount of wall time = 393.338022 +0:The maximum resident set size (KB) = 528312 -Test 074 control_csawmgt PASS +Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_ras -Checking test 075 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_ras +Checking test 076 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.091387 -0:The maximum resident set size (KB) = 487436 +0:The total amount of wall time = 205.039259 +0:The maximum resident set size (KB) = 491224 -Test 075 control_ras PASS +Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wam -Checking test 076 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wam +Checking test 077 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.998635 -0:The maximum resident set size (KB) = 206292 +0:The total amount of wall time = 129.415496 +0:The maximum resident set size (KB) = 206388 -Test 076 control_wam PASS +Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_faster -Checking test 077 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_faster +Checking test 078 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3140,75 +3152,75 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.060846 -0:The maximum resident set size (KB) = 1423016 +0:The total amount of wall time = 171.055975 +0:The maximum resident set size (KB) = 1423796 -Test 077 control_p8_faster PASS +Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control_faster -Checking test 078 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control_faster +Checking test 079 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 313.434251 -0:The maximum resident set size (KB) = 603832 +0:The total amount of wall time = 320.972279 +0:The maximum resident set size (KB) = 604616 -Test 078 regional_control_faster PASS +Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 883.978033 -0:The maximum resident set size (KB) = 709464 +0:The total amount of wall time = 876.382640 +0:The maximum resident set size (KB) = 704740 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 509.712521 -0:The maximum resident set size (KB) = 729436 +0:The total amount of wall time = 499.436278 +0:The maximum resident set size (KB) = 724388 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm_debug +Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 788.867660 -0:The maximum resident set size (KB) = 687560 +0:The total amount of wall time = 776.409066 +0:The maximum resident set size (KB) = 683336 -Test 081 rrfs_conus13km_hrrr_warm_debug PASS +Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid_debug -Checking test 082 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid_debug +Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3234,359 +3246,359 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.805451 -0:The maximum resident set size (KB) = 619472 +0:The total amount of wall time = 155.483877 +0:The maximum resident set size (KB) = 617540 -Test 082 control_CubedSphereGrid_debug PASS +Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wrtGauss_netcdf_parallel_debug -Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wrtGauss_netcdf_parallel_debug +Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.698529 -0:The maximum resident set size (KB) = 619992 +0:The total amount of wall time = 156.368436 +0:The maximum resident set size (KB) = 615668 -Test 083 control_wrtGauss_netcdf_parallel_debug PASS +Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy_debug -Checking test 084 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy_debug +Checking test 085 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.440479 -0:The maximum resident set size (KB) = 627024 +0:The total amount of wall time = 175.355286 +0:The maximum resident set size (KB) = 621260 -Test 084 control_stochy_debug PASS +Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_lndp_debug -Checking test 085 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_lndp_debug +Checking test 086 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.662583 -0:The maximum resident set size (KB) = 624300 +0:The total amount of wall time = 157.102728 +0:The maximum resident set size (KB) = 619920 -Test 085 control_lndp_debug PASS +Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmg_debug -Checking test 086 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmg_debug +Checking test 087 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.967507 -0:The maximum resident set size (KB) = 670640 +0:The total amount of wall time = 248.676896 +0:The maximum resident set size (KB) = 666380 -Test 086 control_csawmg_debug PASS +Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmgt_debug -Checking test 087 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmgt_debug +Checking test 088 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 253.801153 -0:The maximum resident set size (KB) = 671168 +0:The total amount of wall time = 245.976095 +0:The maximum resident set size (KB) = 667364 -Test 087 control_csawmgt_debug PASS +Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_ras_debug -Checking test 088 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_ras_debug +Checking test 089 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.454849 -0:The maximum resident set size (KB) = 634300 +0:The total amount of wall time = 159.627589 +0:The maximum resident set size (KB) = 630316 -Test 088 control_ras_debug PASS +Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_diag_debug -Checking test 089 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_diag_debug +Checking test 090 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.364505 -0:The maximum resident set size (KB) = 678368 +0:The total amount of wall time = 160.344232 +0:The maximum resident set size (KB) = 674984 -Test 089 control_diag_debug PASS +Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_debug_p8 -Checking test 090 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_debug_p8 +Checking test 091 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.382105 -0:The maximum resident set size (KB) = 1445112 +0:The total amount of wall time = 175.839485 +0:The maximum resident set size (KB) = 1442372 -Test 090 control_debug_p8 PASS +Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_debug -Checking test 091 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_debug +Checking test 092 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.277747 -0:The maximum resident set size (KB) = 630044 +0:The total amount of wall time = 1034.438480 +0:The maximum resident set size (KB) = 625872 -Test 091 regional_debug PASS +Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_debug -Checking test 092 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_debug +Checking test 093 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.876775 -0:The maximum resident set size (KB) = 991944 +0:The total amount of wall time = 286.127705 +0:The maximum resident set size (KB) = 986612 -Test 092 rap_control_debug PASS +Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_debug -Checking test 093 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_debug +Checking test 094 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.331057 -0:The maximum resident set size (KB) = 988352 +0:The total amount of wall time = 280.785839 +0:The maximum resident set size (KB) = 984124 -Test 093 hrrr_control_debug PASS +Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_unified_drag_suite_debug -Checking test 094 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_unified_drag_suite_debug +Checking test 095 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.173101 -0:The maximum resident set size (KB) = 992080 +0:The total amount of wall time = 286.486253 +0:The maximum resident set size (KB) = 986580 -Test 094 rap_unified_drag_suite_debug PASS +Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_diag_debug -Checking test 095 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_diag_debug +Checking test 096 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.406229 -0:The maximum resident set size (KB) = 1074172 +0:The total amount of wall time = 298.300461 +0:The maximum resident set size (KB) = 1069832 -Test 095 rap_diag_debug PASS +Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_cires_ugwp_debug -Checking test 096 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_cires_ugwp_debug +Checking test 097 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.570218 -0:The maximum resident set size (KB) = 990092 +0:The total amount of wall time = 292.650670 +0:The maximum resident set size (KB) = 985824 -Test 096 rap_cires_ugwp_debug PASS +Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_unified_ugwp_debug -Checking test 097 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_unified_ugwp_debug +Checking test 098 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.498957 -0:The maximum resident set size (KB) = 991084 +0:The total amount of wall time = 293.799461 +0:The maximum resident set size (KB) = 986628 -Test 097 rap_unified_ugwp_debug PASS +Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_lndp_debug -Checking test 098 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_lndp_debug +Checking test 099 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.288617 -0:The maximum resident set size (KB) = 992716 +0:The total amount of wall time = 289.381618 +0:The maximum resident set size (KB) = 987236 -Test 098 rap_lndp_debug PASS +Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_flake_debug -Checking test 099 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_flake_debug +Checking test 100 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.636542 -0:The maximum resident set size (KB) = 992008 +0:The total amount of wall time = 286.769912 +0:The maximum resident set size (KB) = 986660 -Test 099 rap_flake_debug PASS +Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_progcld_thompson_debug -Checking test 100 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_progcld_thompson_debug +Checking test 101 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.019761 -0:The maximum resident set size (KB) = 991880 +0:The total amount of wall time = 287.499419 +0:The maximum resident set size (KB) = 986604 -Test 100 rap_progcld_thompson_debug PASS +Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_noah_debug -Checking test 101 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_noah_debug +Checking test 102 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.747930 -0:The maximum resident set size (KB) = 990580 +0:The total amount of wall time = 281.623663 +0:The maximum resident set size (KB) = 984676 -Test 101 rap_noah_debug PASS +Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_debug -Checking test 102 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_debug +Checking test 103 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.478992 -0:The maximum resident set size (KB) = 991732 +0:The total amount of wall time = 287.815818 +0:The maximum resident set size (KB) = 986448 -Test 102 rap_sfcdiff_debug PASS +Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 480.352304 -0:The maximum resident set size (KB) = 989136 +0:The total amount of wall time = 472.512388 +0:The maximum resident set size (KB) = 985336 -Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1beta_debug -Checking test 104 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1beta_debug +Checking test 105 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.201444 -0:The maximum resident set size (KB) = 986176 +0:The total amount of wall time = 282.087359 +0:The maximum resident set size (KB) = 983372 -Test 104 rrfs_v1beta_debug PASS +Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wam_debug -Checking test 105 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wam_debug +Checking test 106 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.863160 -0:The maximum resident set size (KB) = 239728 +0:The total amount of wall time = 289.522466 +0:The maximum resident set size (KB) = 235520 -Test 105 control_wam_debug PASS +Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 238.744869 -0:The maximum resident set size (KB) = 849216 +0:The total amount of wall time = 247.231183 +0:The maximum resident set size (KB) = 851076 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn32_phy32 -Checking test 107 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn32_phy32 +Checking test 108 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3626,21 +3638,21 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 392.322073 -0:The maximum resident set size (KB) = 707476 +0:The total amount of wall time = 398.190885 +0:The maximum resident set size (KB) = 707816 -Test 107 rap_control_dyn32_phy32 PASS +Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_dyn32_phy32 -Checking test 108 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_dyn32_phy32 +Checking test 109 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3680,21 +3692,21 @@ Checking test 108 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 = 204.913361 -0:The maximum resident set size (KB) = 705920 +0:The total amount of wall time = 206.984849 +0:The maximum resident set size (KB) = 706532 -Test 108 hrrr_control_dyn32_phy32 PASS +Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_2threads_dyn32_phy32 -Checking test 109 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_2threads_dyn32_phy32 +Checking test 110 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3734,21 +3746,21 @@ Checking test 109 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 = 379.036814 -0:The maximum resident set size (KB) = 760716 +0:The total amount of wall time = 380.915217 +0:The maximum resident set size (KB) = 759352 -Test 109 rap_2threads_dyn32_phy32 PASS +Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_2threads_dyn32_phy32 -Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_2threads_dyn32_phy32 +Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3788,21 +3800,21 @@ Checking test 110 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 = 195.832546 -0:The maximum resident set size (KB) = 754940 +0:The total amount of wall time = 198.610402 +0:The maximum resident set size (KB) = 756524 -Test 110 hrrr_control_2threads_dyn32_phy32 PASS +Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_decomp_dyn32_phy32 -Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_decomp_dyn32_phy32 +Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3842,17 +3854,17 @@ Checking test 111 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 = 217.484001 -0:The maximum resident set size (KB) = 704108 +0:The total amount of wall time = 219.168226 +0:The maximum resident set size (KB) = 704292 -Test 111 hrrr_control_decomp_dyn32_phy32 PASS +Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_restart_dyn32_phy32 -Checking test 112 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_restart_dyn32_phy32 +Checking test 113 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3888,17 +3900,17 @@ Checking test 112 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 = 292.632793 -0:The maximum resident set size (KB) = 544420 +0:The total amount of wall time = 294.310581 +0:The maximum resident set size (KB) = 544664 -Test 112 rap_restart_dyn32_phy32 PASS +Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_restart_dyn32_phy32 -Checking test 113 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_restart_dyn32_phy32 +Checking test 114 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3934,21 +3946,21 @@ Checking test 113 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 = 106.027083 -0:The maximum resident set size (KB) = 537188 +0:The total amount of wall time = 107.228012 +0:The maximum resident set size (KB) = 537556 -Test 113 hrrr_control_restart_dyn32_phy32 PASS +Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn64_phy32 -Checking test 114 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn64_phy32 +Checking test 115 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3988,440 +4000,440 @@ Checking test 114 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 = 268.655996 -0:The maximum resident set size (KB) = 729968 +0:The total amount of wall time = 271.434089 +0:The maximum resident set size (KB) = 730416 -Test 114 rap_control_dyn64_phy32 PASS +Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_debug_dyn32_phy32 -Checking test 115 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_debug_dyn32_phy32 +Checking test 116 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.509753 -0:The maximum resident set size (KB) = 876364 +0:The total amount of wall time = 281.855615 +0:The maximum resident set size (KB) = 872940 -Test 115 rap_control_debug_dyn32_phy32 PASS +Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_debug_dyn32_phy32 -Checking test 116 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_debug_dyn32_phy32 +Checking test 117 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.338496 -0:The maximum resident set size (KB) = 875440 +0:The total amount of wall time = 276.912328 +0:The maximum resident set size (KB) = 871068 -Test 116 hrrr_control_debug_dyn32_phy32 PASS +Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn64_phy32_debug -Checking test 117 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn64_phy32_debug +Checking test 118 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.293386 -0:The maximum resident set size (KB) = 894560 +0:The total amount of wall time = 286.346018 +0:The maximum resident set size (KB) = 890040 -Test 117 rap_control_dyn64_phy32_debug PASS +Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm -Checking test 118 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm +Checking test 119 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.170228 -0:The maximum resident set size (KB) = 741112 +0:The total amount of wall time = 257.111262 +0:The maximum resident set size (KB) = 742732 -Test 118 hafs_regional_atm PASS +Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_thompson_gfdlsf -Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_thompson_gfdlsf +Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 288.451901 -0:The maximum resident set size (KB) = 1097364 +0:The total amount of wall time = 286.662113 +0:The maximum resident set size (KB) = 1100028 -Test 119 hafs_regional_atm_thompson_gfdlsf PASS +Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_ocn -Checking test 120 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_ocn +Checking test 121 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 457.633363 -0:The maximum resident set size (KB) = 739960 +0:The total amount of wall time = 445.924103 +0:The maximum resident set size (KB) = 741340 -Test 120 hafs_regional_atm_ocn PASS +Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_wav -Checking test 121 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_wav +Checking test 122 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1091.996297 -0:The maximum resident set size (KB) = 768004 +0:The total amount of wall time = 1071.037702 +0:The maximum resident set size (KB) = 772384 -Test 121 hafs_regional_atm_wav PASS +Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_ocn_wav -Checking test 122 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1104.646700 -0:The maximum resident set size (KB) = 792180 +0:The total amount of wall time = 1135.356698 +0:The maximum resident set size (KB) = 792808 -Test 122 hafs_regional_atm_ocn_wav PASS +Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_1nest_atm -Checking test 123 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_1nest_atm +Checking test 124 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 374.613248 -0:The maximum resident set size (KB) = 300036 +0:The total amount of wall time = 377.984817 +0:The maximum resident set size (KB) = 300960 -Test 123 hafs_regional_1nest_atm PASS +Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_telescopic_2nests_atm -Checking test 124 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_telescopic_2nests_atm +Checking test 125 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.586794 -0:The maximum resident set size (KB) = 317968 +0:The total amount of wall time = 416.045393 +0:The maximum resident set size (KB) = 320476 -Test 124 hafs_regional_telescopic_2nests_atm PASS +Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_1nest_atm -Checking test 125 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_1nest_atm +Checking test 126 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 172.351478 -0:The maximum resident set size (KB) = 213152 +0:The total amount of wall time = 168.418279 +0:The maximum resident set size (KB) = 213828 -Test 125 hafs_global_1nest_atm PASS +Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_multiple_4nests_atm -Checking test 126 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_multiple_4nests_atm +Checking test 127 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 481.113987 -0:The maximum resident set size (KB) = 301984 +0:The total amount of wall time = 478.751468 +0:The maximum resident set size (KB) = 300396 -Test 126 hafs_global_multiple_4nests_atm PASS +Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_specified_moving_1nest_atm -Checking test 127 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_specified_moving_1nest_atm +Checking test 128 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 238.312297 -0:The maximum resident set size (KB) = 316264 +0:The total amount of wall time = 240.445034 +0:The maximum resident set size (KB) = 318476 -Test 127 hafs_regional_specified_moving_1nest_atm PASS +Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm -Checking test 128 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm +Checking test 129 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.021493 -0:The maximum resident set size (KB) = 316372 +0:The total amount of wall time = 227.256588 +0:The maximum resident set size (KB) = 318192 -Test 128 hafs_regional_storm_following_1nest_atm PASS +Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.235155 -0:The maximum resident set size (KB) = 374496 +0:The total amount of wall time = 281.301358 +0:The maximum resident set size (KB) = 376256 -Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_storm_following_1nest_atm -Checking test 130 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_storm_following_1nest_atm +Checking test 131 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.644290 -0:The maximum resident set size (KB) = 232816 +0:The total amount of wall time = 66.666957 +0:The maximum resident set size (KB) = 233324 -Test 130 hafs_global_storm_following_1nest_atm PASS +Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 822.170427 -0:The maximum resident set size (KB) = 408660 +0:The total amount of wall time = 765.308407 +0:The maximum resident set size (KB) = 402772 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 697.520043 -0:The maximum resident set size (KB) = 426812 +0:The total amount of wall time = 764.976041 +0:The maximum resident set size (KB) = 427540 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_docn -Checking test 133 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_docn +Checking test 134 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.099969 -0:The maximum resident set size (KB) = 754316 +0:The total amount of wall time = 392.775974 +0:The maximum resident set size (KB) = 755340 -Test 133 hafs_regional_docn PASS +Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_docn_oisst -Checking test 134 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_docn_oisst +Checking test 135 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 383.020436 -0:The maximum resident set size (KB) = 737028 +0:The total amount of wall time = 394.359153 +0:The maximum resident set size (KB) = 735280 -Test 134 hafs_regional_docn_oisst PASS +Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_datm_cdeps -Checking test 135 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_datm_cdeps +Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1268.043272 -0:The maximum resident set size (KB) = 887868 +0:The total amount of wall time = 1274.600899 +0:The maximum resident set size (KB) = 887832 -Test 135 hafs_regional_datm_cdeps PASS +Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_cfsr -Checking test 136 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_cfsr +Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.158326 -0:The maximum resident set size (KB) = 727860 +0:The total amount of wall time = 167.353908 +0:The maximum resident set size (KB) = 716720 -Test 136 datm_cdeps_control_cfsr PASS +Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_restart_cfsr -Checking test 137 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_restart_cfsr +Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 99.563443 -0:The maximum resident set size (KB) = 715920 +0:The total amount of wall time = 96.431899 +0:The maximum resident set size (KB) = 704880 -Test 137 datm_cdeps_restart_cfsr PASS +Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_gefs -Checking test 138 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_gefs +Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 159.717655 +0:The total amount of wall time = 155.089038 0:The maximum resident set size (KB) = 607448 -Test 138 datm_cdeps_control_gefs PASS +Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_iau_gefs -Checking test 139 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_iau_gefs +Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.484192 -0:The maximum resident set size (KB) = 607432 +0:The total amount of wall time = 163.632369 +0:The maximum resident set size (KB) = 607440 -Test 139 datm_cdeps_iau_gefs PASS +Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_stochy_gefs -Checking test 140 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_stochy_gefs +Checking test 141 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.044040 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 163.602109 +0:The maximum resident set size (KB) = 607480 -Test 140 datm_cdeps_stochy_gefs PASS +Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_ciceC_cfsr -Checking test 141 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_ciceC_cfsr +Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.865612 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 162.790671 +0:The maximum resident set size (KB) = 716720 -Test 141 datm_cdeps_ciceC_cfsr PASS +Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_bulk_cfsr -Checking test 142 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_bulk_cfsr +Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.395618 -0:The maximum resident set size (KB) = 716700 +0:The total amount of wall time = 168.705344 +0:The maximum resident set size (KB) = 716732 -Test 142 datm_cdeps_bulk_cfsr PASS +Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_bulk_gefs -Checking test 143 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_bulk_gefs +Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.768923 -0:The maximum resident set size (KB) = 607452 +0:The total amount of wall time = 160.090251 +0:The maximum resident set size (KB) = 607472 -Test 143 datm_cdeps_bulk_gefs PASS +Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_mx025_cfsr -Checking test 144 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_mx025_cfsr +Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4429,15 +4441,15 @@ Checking test 144 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 = 422.429030 -0:The maximum resident set size (KB) = 514268 +0:The total amount of wall time = 430.324675 +0:The maximum resident set size (KB) = 514312 -Test 144 datm_cdeps_mx025_cfsr PASS +Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_mx025_gefs -Checking test 145 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_mx025_gefs +Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4445,78 +4457,78 @@ Checking test 145 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 = 419.633934 -0:The maximum resident set size (KB) = 494788 +0:The total amount of wall time = 416.023203 +0:The maximum resident set size (KB) = 494812 -Test 145 datm_cdeps_mx025_gefs PASS +Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_multiple_files_cfsr -Checking test 146 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_multiple_files_cfsr +Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.108977 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 166.521079 +0:The maximum resident set size (KB) = 716712 -Test 146 datm_cdeps_multiple_files_cfsr PASS +Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_3072x1536_cfsr -Checking test 147 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_3072x1536_cfsr +Checking test 148 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 241.967340 -0:The maximum resident set size (KB) = 1942004 +0:The total amount of wall time = 272.326236 +0:The maximum resident set size (KB) = 1910040 -Test 147 datm_cdeps_3072x1536_cfsr PASS +Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_gfs -Checking test 148 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_gfs +Checking test 149 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 254.668136 -0:The maximum resident set size (KB) = 1940252 +0:The total amount of wall time = 270.205127 +0:The maximum resident set size (KB) = 1941108 -Test 148 datm_cdeps_gfs PASS +Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_debug_cfsr -Checking test 149 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_debug_cfsr +Checking test 150 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 458.294696 -0:The maximum resident set size (KB) = 706748 +0:The total amount of wall time = 369.680257 +0:The maximum resident set size (KB) = 711800 -Test 149 datm_cdeps_debug_cfsr PASS +Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_cfsr_faster -Checking test 150 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_cfsr_faster +Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.204440 -0:The maximum resident set size (KB) = 716760 +0:The total amount of wall time = 167.009432 +0:The maximum resident set size (KB) = 716736 -Test 150 datm_cdeps_control_cfsr_faster PASS +Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_lnd_gswp3 -Checking test 151 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_lnd_gswp3 +Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4524,15 +4536,15 @@ Checking test 151 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.471279 -0:The maximum resident set size (KB) = 210044 +0:The total amount of wall time = 10.268181 +0:The maximum resident set size (KB) = 208208 -Test 151 datm_cdeps_lnd_gswp3 PASS +Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_lnd_gswp3_rst -Checking test 152 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_lnd_gswp3_rst +Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4540,15 +4552,15 @@ Checking test 152 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.599126 -0:The maximum resident set size (KB) = 208176 +0:The total amount of wall time = 15.797231 +0:The maximum resident set size (KB) = 210100 -Test 152 datm_cdeps_lnd_gswp3_rst PASS +Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_atmlnd_sbs -Checking test 153 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_atmlnd_sbs +Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4632,19 +4644,19 @@ Checking test 153 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 = 238.414629 -0:The maximum resident set size (KB) = 1463464 +0:The total amount of wall time = 233.907252 +0:The maximum resident set size (KB) = 1463656 -Test 153 control_p8_atmlnd_sbs PASS +Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_atmwav -Checking test 154 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_atmwav +Checking test 155 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4683,19 +4695,19 @@ Checking test 154 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.234716 -0:The maximum resident set size (KB) = 474832 +0:The total amount of wall time = 98.498594 +0:The maximum resident set size (KB) = 474544 -Test 154 control_atmwav PASS +Test 155 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8 -Checking test 155 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8 +Checking test 156 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4734,19 +4746,19 @@ Checking test 155 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 = 254.350535 -0:The maximum resident set size (KB) = 2703820 +0:The total amount of wall time = 251.933333 +0:The maximum resident set size (KB) = 2704072 -Test 155 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8_rad -Checking test 156 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4785,19 +4797,19 @@ Checking test 156 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 = 305.701771 -0:The maximum resident set size (KB) = 2758240 +0:The total amount of wall time = 302.772368 +0:The maximum resident set size (KB) = 2757948 -Test 156 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8_rad_micro -Checking test 157 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4836,21 +4848,21 @@ Checking test 157 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 = 312.123379 -0:The maximum resident set size (KB) = 2764168 +0:The total amount of wall time = 308.750670 +0:The maximum resident set size (KB) = 2764528 -Test 157 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_atmaq -Checking test 158 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_atmaq +Checking test 159 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4859,21 +4871,21 @@ Checking test 158 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 751.416667 -0:The maximum resident set size (KB) = 999156 +0:The total amount of wall time = 748.876288 +0:The maximum resident set size (KB) = 999612 -Test 158 regional_atmaq PASS +Test 159 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_atmaq_faster -Checking test 159 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_atmaq_faster +Checking test 160 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4882,12 +4894,12 @@ Checking test 159 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 = 676.509985 -0:The maximum resident set size (KB) = 998860 +0:The total amount of wall time = 696.342729 +0:The maximum resident set size (KB) = 999192 -Test 159 regional_atmaq_faster PASS +Test 160 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 16:16:40 MDT 2023 -Elapsed time: 01h:23m:17s. Have a nice day! +Wed Apr 5 21:06:53 MDT 2023 +Elapsed time: 01h:13m:29s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index cecda09813..dbee0d7207 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,39 @@ -Tue Mar 28 17:03:09 EDT 2023 -Start Regression test - -Compile 001 elapsed time 893 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 882 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 829 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 351 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 289 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 769 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 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1002 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 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 696 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 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 841 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 274 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 240 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 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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 941 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 786 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 322 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 275 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 773 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 777 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1033 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 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 723 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 654 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 713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 928 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 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_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 215 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 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 741 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 262 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 963 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 739 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 305 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 182 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 282 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 129 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 694 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 725 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 761 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 682 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 245 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8_mixedmode +Compile 019 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 736 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 259 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 938 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 708 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 291 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 277 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 681 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 690 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 661 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 700 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 794 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,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 - 0: The total amount of wall time = 364.072530 - 0: The maximum resident set size (KB) = 1534404 + 0: The total amount of wall time = 356.527283 + 0: The maximum resident set size (KB) = 1533808 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +169,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 = 285.622397 - 0: The maximum resident set size (KB) = 1444736 + 0: The total amount of wall time = 262.280992 + 0: The maximum resident set size (KB) = 1443240 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +241,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.448163 - 0: The maximum resident set size (KB) = 1568668 + 0: The total amount of wall time = 396.799377 + 0: The maximum resident set size (KB) = 1567236 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +301,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 = 249.969934 - 0: The maximum resident set size (KB) = 1018440 + 0: The total amount of wall time = 256.489499 + 0: The maximum resident set size (KB) = 1018056 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +373,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.451779 - 0: The maximum resident set size (KB) = 1579652 + 0: The total amount of wall time = 400.579192 + 0: The maximum resident set size (KB) = 1577380 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +433,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 244.463395 - 0: The maximum resident set size (KB) = 1032320 + 0: The total amount of wall time = 243.722010 + 0: The maximum resident set size (KB) = 1031596 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +493,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.411537 - 0: The maximum resident set size (KB) = 1760064 + 0: The total amount of wall time = 435.085387 + 0: The maximum resident set size (KB) = 1759368 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +553,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.803430 - 0: The maximum resident set size (KB) = 1561584 + 0: The total amount of wall time = 414.716299 + 0: The maximum resident set size (KB) = 1561860 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,17 +613,17 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.519102 - 0: The maximum resident set size (KB) = 1526772 + 0: The total amount of wall time = 351.404805 + 0: The maximum resident set size (KB) = 1526048 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -671,69 +668,14 @@ Checking test 010 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 = 882.443134 - 0: The maximum resident set size (KB) = 2507456 + 0: The total amount of wall time = 825.488595 + 0: The maximum resident set size (KB) = 2503472 Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_bmark_p8 -Checking test 011 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 727.714180 - 0: The maximum resident set size (KB) = 2332904 - -Test 011 cpld_restart_bmark_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -797,14 +739,14 @@ Checking test 012 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 = 304.647230 - 0: The maximum resident set size (KB) = 1441984 + 0: The total amount of wall time = 309.784141 + 0: The maximum resident set size (KB) = 1441368 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -866,14 +808,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 316.149798 - 0: The maximum resident set size (KB) = 1474488 + 0: The total amount of wall time = 309.880657 + 0: The maximum resident set size (KB) = 1475072 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -926,14 +868,14 @@ Checking test 014 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 = 612.129894 - 0: The maximum resident set size (KB) = 1596092 + 0: The total amount of wall time = 569.705148 + 0: The maximum resident set size (KB) = 1594656 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -985,14 +927,14 @@ Checking test 015 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 = 418.452745 - 0: The maximum resident set size (KB) = 1442092 + 0: The total amount of wall time = 399.659686 + 0: The maximum resident set size (KB) = 1441376 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1054,14 +996,14 @@ Checking test 016 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 = 333.834681 - 0: The maximum resident set size (KB) = 1477604 + 0: The total amount of wall time = 324.449186 + 0: The maximum resident set size (KB) = 1477956 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1053,14 @@ Checking test 017 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 = 620.420511 - 0: The maximum resident set size (KB) = 2572556 + 0: The total amount of wall time = 628.182638 + 0: The maximum resident set size (KB) = 2575500 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1168,14 +1110,14 @@ Checking test 018 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 = 183.924075 - 0: The maximum resident set size (KB) = 2574764 + 0: The total amount of wall time = 177.076738 + 0: The maximum resident set size (KB) = 2575612 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1225,14 +1167,14 @@ Checking test 019 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 = 101.785112 - 0: The maximum resident set size (KB) = 1988284 + 0: The total amount of wall time = 85.364191 + 0: The maximum resident set size (KB) = 1989456 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1297,14 +1239,14 @@ Checking test 020 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 = 395.095625 - 0: The maximum resident set size (KB) = 1568588 + 0: The total amount of wall time = 396.277224 + 0: The maximum resident set size (KB) = 1566992 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1331,69 +1273,69 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 143.800553 - 0: The maximum resident set size (KB) = 437356 + 0: The total amount of wall time = 143.772244 + 0: The maximum resident set size (KB) = 437780 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.993007 - 0: The maximum resident set size (KB) = 437300 + 0: The total amount of wall time = 143.255412 + 0: The maximum resident set size (KB) = 437968 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_latlon Checking test 023 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.424223 - 0: The maximum resident set size (KB) = 437248 + 0: The total amount of wall time = 148.593883 + 0: The maximum resident set size (KB) = 437832 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 172.994385 - 0: The maximum resident set size (KB) = 437416 + 0: The total amount of wall time = 152.856988 + 0: The maximum resident set size (KB) = 437800 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c48 Checking test 025 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1427,55 +1369,55 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.916595 -0: The maximum resident set size (KB) = 633364 +0: The total amount of wall time = 421.512851 +0: The maximum resident set size (KB) = 634292 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c192 Checking test 026 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 587.160161 - 0: The maximum resident set size (KB) = 541564 + 0: The total amount of wall time = 586.568718 + 0: The maximum resident set size (KB) = 544180 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c384 Checking test 027 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1109.222616 - 0: The maximum resident set size (KB) = 820240 + 0: The total amount of wall time = 1114.061498 + 0: The maximum resident set size (KB) = 823480 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c384gdas Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1513,71 +1455,71 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 939.986168 - 0: The maximum resident set size (KB) = 953256 + 0: The total amount of wall time = 973.661887 + 0: The maximum resident set size (KB) = 954484 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy Checking test 029 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.753568 - 0: The maximum resident set size (KB) = 440988 + 0: The total amount of wall time = 102.605813 + 0: The maximum resident set size (KB) = 441308 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy_restart Checking test 030 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 53.982646 - 0: The maximum resident set size (KB) = 195020 + 0: The total amount of wall time = 54.496143 + 0: The maximum resident set size (KB) = 195816 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_lndp Checking test 031 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.447828 - 0: The maximum resident set size (KB) = 440772 + 0: The total amount of wall time = 91.681561 + 0: The maximum resident set size (KB) = 440876 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_iovr4 Checking test 032 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1585,21 +1527,21 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.626563 - 0: The maximum resident set size (KB) = 437472 + 0: The total amount of wall time = 151.206175 + 0: The maximum resident set size (KB) = 437692 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_iovr5 Checking test 033 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1607,21 +1549,21 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.575617 - 0: The maximum resident set size (KB) = 437420 + 0: The total amount of wall time = 156.212251 + 0: The maximum resident set size (KB) = 437860 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8 Checking test 034 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1661,17 +1603,17 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.232370 - 0: The maximum resident set size (KB) = 1379372 + 0: The total amount of wall time = 197.324513 + 0: The maximum resident set size (KB) = 1380096 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_restart_p8 Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1707,21 +1649,21 @@ 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 = 114.269916 - 0: The maximum resident set size (KB) = 556380 + 0: The total amount of wall time = 104.889849 + 0: The maximum resident set size (KB) = 556700 Test 035 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_qr_p8 Checking test 036 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1761,17 +1703,17 @@ Checking test 036 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 201.100252 - 0: The maximum resident set size (KB) = 1384332 + 0: The total amount of wall time = 201.516790 + 0: The maximum resident set size (KB) = 1383252 Test 036 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1807,19 +1749,19 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 107.433676 - 0: The maximum resident set size (KB) = 581320 + 0: The total amount of wall time = 130.839850 + 0: The maximum resident set size (KB) = 581624 Test 037 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_decomp_p8 Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1857,19 +1799,19 @@ 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 = 205.118906 - 0: The maximum resident set size (KB) = 1374260 + 0: The total amount of wall time = 197.648882 + 0: The maximum resident set size (KB) = 1374052 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_2threads_p8 Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1907,23 +1849,23 @@ 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 = 189.408079 - 0: The maximum resident set size (KB) = 1459440 + 0: The total amount of wall time = 183.854322 + 0: The maximum resident set size (KB) = 1464404 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_lndp Checking test 040 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1933,21 +1875,21 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 352.754779 - 0: The maximum resident set size (KB) = 1379748 + 0: The total amount of wall time = 351.590490 + 0: The maximum resident set size (KB) = 1381200 Test 040 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1987,21 +1929,21 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.281502 - 0: The maximum resident set size (KB) = 1437264 + 0: The total amount of wall time = 260.472924 + 0: The maximum resident set size (KB) = 1437572 Test 041 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_mynn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_mynn Checking test 042 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2041,21 +1983,21 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.890805 - 0: The maximum resident set size (KB) = 1383664 + 0: The total amount of wall time = 204.903564 + 0: The maximum resident set size (KB) = 1384180 Test 042 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/merra2_thompson Checking test 043 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2095,114 +2037,114 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.086013 - 0: The maximum resident set size (KB) = 1385236 + 0: The total amount of wall time = 214.097358 + 0: The maximum resident set size (KB) = 1385580 Test 043 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control Checking test 044 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.843324 - 0: The maximum resident set size (KB) = 578216 + 0: The total amount of wall time = 336.695387 + 0: The maximum resident set size (KB) = 578960 Test 044 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_restart Checking test 045 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 185.706293 - 0: The maximum resident set size (KB) = 577692 + 0: The total amount of wall time = 172.464501 + 0: The maximum resident set size (KB) = 578572 Test 045 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control_qr Checking test 046 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 331.067460 - 0: The maximum resident set size (KB) = 578236 + 0: The total amount of wall time = 337.888931 + 0: The maximum resident set size (KB) = 578924 Test 046 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_restart_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_restart_qr Checking test 047 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 191.604081 - 0: The maximum resident set size (KB) = 577676 + 0: The total amount of wall time = 181.247815 + 0: The maximum resident set size (KB) = 578924 Test 047 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_decomp Checking test 048 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.320619 - 0: The maximum resident set size (KB) = 581100 + 0: The total amount of wall time = 348.770082 + 0: The maximum resident set size (KB) = 580816 Test 048 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_2threads Checking test 049 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 213.245038 - 0: The maximum resident set size (KB) = 584848 + 0: The total amount of wall time = 210.212563 + 0: The maximum resident set size (KB) = 586164 Test 049 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2210,71 +2152,71 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 370.587252 - 0: The maximum resident set size (KB) = 573728 + 0: The total amount of wall time = 357.749656 + 0: The maximum resident set size (KB) = 573180 Test 050 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 382.100335 - 0: The maximum resident set size (KB) = 578120 + 0: The total amount of wall time = 343.618158 + 0: The maximum resident set size (KB) = 578664 Test 051 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 351.489739 - 0: The maximum resident set size (KB) = 578260 + 0: The total amount of wall time = 349.978059 + 0: The maximum resident set size (KB) = 578940 Test 052 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_wofs Checking test 053 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 417.724831 - 0: The maximum resident set size (KB) = 264068 + 0: The total amount of wall time = 425.333425 + 0: The maximum resident set size (KB) = 263984 Test 053 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control Checking test 054 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2314,39 +2256,39 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.987348 - 0: The maximum resident set size (KB) = 810552 + 0: The total amount of wall time = 481.374431 + 0: The maximum resident set size (KB) = 807976 Test 054 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 279.936298 - 0: The maximum resident set size (KB) = 901072 + 0: The total amount of wall time = 278.156589 + 0: The maximum resident set size (KB) = 908016 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_decomp Checking test 056 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2386,21 +2328,21 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.473480 - 0: The maximum resident set size (KB) = 807240 + 0: The total amount of wall time = 501.185016 + 0: The maximum resident set size (KB) = 806356 Test 056 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_2threads Checking test 057 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2440,17 +2382,17 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.443255 - 0: The maximum resident set size (KB) = 874812 + 0: The total amount of wall time = 455.983992 + 0: The maximum resident set size (KB) = 878536 Test 057 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_restart Checking test 058 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2486,21 +2428,21 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.617519 - 0: The maximum resident set size (KB) = 554128 + 0: The total amount of wall time = 243.923281 + 0: The maximum resident set size (KB) = 553208 Test 058 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff Checking test 059 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2540,21 +2482,21 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.981514 - 0: The maximum resident set size (KB) = 810728 + 0: The total amount of wall time = 489.360539 + 0: The maximum resident set size (KB) = 807912 Test 059 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2594,17 +2536,17 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.194124 - 0: The maximum resident set size (KB) = 807448 + 0: The total amount of wall time = 502.673613 + 0: The maximum resident set size (KB) = 806288 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2640,21 +2582,21 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.569488 - 0: The maximum resident set size (KB) = 551908 + 0: The total amount of wall time = 360.540164 + 0: The maximum resident set size (KB) = 552264 Test 061 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control Checking test 062 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2694,21 +2636,21 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.293898 - 0: The maximum resident set size (KB) = 806764 + 0: The total amount of wall time = 465.414866 + 0: The maximum resident set size (KB) = 805964 Test 062 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2748,21 +2690,21 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 483.888477 - 0: The maximum resident set size (KB) = 804872 + 0: The total amount of wall time = 480.859701 + 0: The maximum resident set size (KB) = 805296 Test 063 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2802,17 +2744,17 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.866163 - 0: The maximum resident set size (KB) = 872440 + 0: The total amount of wall time = 441.587734 + 0: The maximum resident set size (KB) = 872784 Test 064 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_restart Checking test 065 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2848,21 +2790,21 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.809375 - 0: The maximum resident set size (KB) = 550376 + 0: The total amount of wall time = 344.269998 + 0: The maximum resident set size (KB) = 547972 Test 065 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1beta Checking test 066 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2902,21 +2844,21 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.697226 - 0: The maximum resident set size (KB) = 802796 + 0: The total amount of wall time = 473.948281 + 0: The maximum resident set size (KB) = 805076 Test 066 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2924,21 +2866,21 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 583.998688 - 0: The maximum resident set size (KB) = 494552 + 0: The total amount of wall time = 581.704730 + 0: The maximum resident set size (KB) = 493332 Test 067 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2946,133 +2888,145 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 571.948953 - 0: The maximum resident set size (KB) = 486236 + 0: The total amount of wall time = 558.795294 + 0: The maximum resident set size (KB) = 485904 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.077652 - 0: The maximum resident set size (KB) = 654364 + 0: The total amount of wall time = 182.873819 + 0: The maximum resident set size (KB) = 657928 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 137.949257 - 0: The maximum resident set size (KB) = 666824 + 0: The total amount of wall time = 126.129012 + 0: The maximum resident set size (KB) = 671328 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 169.476955 - 0: The maximum resident set size (KB) = 633412 + 0: The total amount of wall time = 166.332453 + 0: The maximum resident set size (KB) = 634752 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.527589 - 0: The maximum resident set size (KB) = 657944 + 0: The total amount of wall time = 195.380364 + 0: The maximum resident set size (KB) = 660916 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmgt -Checking test 073 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 98.133525 + 0: The maximum resident set size (KB) = 615180 + +Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmgt +Checking test 074 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 395.957352 - 0: The maximum resident set size (KB) = 504592 + 0: The total amount of wall time = 397.382233 + 0: The maximum resident set size (KB) = 502596 -Test 073 control_csawmgt PASS +Test 074 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_ras -Checking test 074 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_ras +Checking test 075 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.886128 - 0: The maximum resident set size (KB) = 472688 + 0: The total amount of wall time = 201.581952 + 0: The maximum resident set size (KB) = 472936 -Test 074 control_ras PASS +Test 075 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wam -Checking test 075 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wam +Checking test 076 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.475041 - 0: The maximum resident set size (KB) = 188480 + 0: The total amount of wall time = 126.569869 + 0: The maximum resident set size (KB) = 189048 -Test 075 control_wam PASS +Test 076 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_faster -Checking test 076 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_faster +Checking test 077 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3112,75 +3066,75 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.210239 - 0: The maximum resident set size (KB) = 1379364 + 0: The total amount of wall time = 185.372809 + 0: The maximum resident set size (KB) = 1380124 -Test 076 control_p8_faster PASS +Test 077 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control_faster -Checking test 077 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control_faster +Checking test 078 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.882780 - 0: The maximum resident set size (KB) = 577968 + 0: The total amount of wall time = 319.657989 + 0: The maximum resident set size (KB) = 578684 -Test 077 regional_control_faster PASS +Test 078 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 912.123097 - 0: The maximum resident set size (KB) = 691712 + 0: The total amount of wall time = 896.029959 + 0: The maximum resident set size (KB) = 689956 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 536.992019 - 0: The maximum resident set size (KB) = 705360 + 0: The total amount of wall time = 538.346178 + 0: The maximum resident set size (KB) = 703800 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 814.393137 - 0: The maximum resident set size (KB) = 666220 + 0: The total amount of wall time = 809.419167 + 0: The maximum resident set size (KB) = 664892 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3206,359 +3160,359 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 170.699163 - 0: The maximum resident set size (KB) = 601836 + 0: The total amount of wall time = 157.572776 + 0: The maximum resident set size (KB) = 601956 -Test 081 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.268671 - 0: The maximum resident set size (KB) = 601812 + 0: The total amount of wall time = 162.616387 + 0: The maximum resident set size (KB) = 599536 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy_debug -Checking test 083 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy_debug +Checking test 084 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.232435 - 0: The maximum resident set size (KB) = 608256 + 0: The total amount of wall time = 176.919724 + 0: The maximum resident set size (KB) = 604516 -Test 083 control_stochy_debug PASS +Test 084 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_lndp_debug -Checking test 084 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_lndp_debug +Checking test 085 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.916090 - 0: The maximum resident set size (KB) = 606448 + 0: The total amount of wall time = 158.889605 + 0: The maximum resident set size (KB) = 603868 -Test 084 control_lndp_debug PASS +Test 085 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.880860 - 0: The maximum resident set size (KB) = 643644 + 0: The total amount of wall time = 256.597229 + 0: The maximum resident set size (KB) = 641304 -Test 085 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.240132 - 0: The maximum resident set size (KB) = 643052 + 0: The total amount of wall time = 255.483168 + 0: The maximum resident set size (KB) = 640988 -Test 086 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_ras_debug -Checking test 087 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_ras_debug +Checking test 088 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.923865 - 0: The maximum resident set size (KB) = 615432 + 0: The total amount of wall time = 163.636295 + 0: The maximum resident set size (KB) = 612996 -Test 087 control_ras_debug PASS +Test 088 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_diag_debug -Checking test 088 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_diag_debug +Checking test 089 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.948889 - 0: The maximum resident set size (KB) = 661376 + 0: The total amount of wall time = 163.268344 + 0: The maximum resident set size (KB) = 659064 -Test 088 control_diag_debug PASS +Test 089 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_debug_p8 -Checking test 089 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_debug_p8 +Checking test 090 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.857740 - 0: The maximum resident set size (KB) = 1379508 + 0: The total amount of wall time = 190.436466 + 0: The maximum resident set size (KB) = 1382780 -Test 089 control_debug_p8 PASS +Test 090 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_debug -Checking test 090 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_debug +Checking test 091 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 = 1052.454374 - 0: The maximum resident set size (KB) = 607520 + 0: The total amount of wall time = 1040.669751 + 0: The maximum resident set size (KB) = 605908 -Test 090 regional_debug PASS +Test 091 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_debug -Checking test 091 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_debug +Checking test 092 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.845346 - 0: The maximum resident set size (KB) = 973372 + 0: The total amount of wall time = 299.518468 + 0: The maximum resident set size (KB) = 970412 -Test 091 rap_control_debug PASS +Test 092 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.536477 - 0: The maximum resident set size (KB) = 970760 + 0: The total amount of wall time = 285.774860 + 0: The maximum resident set size (KB) = 968852 -Test 092 hrrr_control_debug PASS +Test 093 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.355439 - 0: The maximum resident set size (KB) = 973368 + 0: The total amount of wall time = 292.956760 + 0: The maximum resident set size (KB) = 970448 -Test 093 rap_unified_drag_suite_debug PASS +Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_diag_debug -Checking test 094 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_diag_debug +Checking test 095 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.961530 - 0: The maximum resident set size (KB) = 1056284 + 0: The total amount of wall time = 304.714359 + 0: The maximum resident set size (KB) = 1054176 -Test 094 rap_diag_debug PASS +Test 095 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.570701 - 0: The maximum resident set size (KB) = 971972 + 0: The total amount of wall time = 295.940338 + 0: The maximum resident set size (KB) = 969568 -Test 095 rap_cires_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.235234 - 0: The maximum resident set size (KB) = 972752 + 0: The total amount of wall time = 296.818162 + 0: The maximum resident set size (KB) = 971772 -Test 096 rap_unified_ugwp_debug PASS +Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.741414 - 0: The maximum resident set size (KB) = 974000 + 0: The total amount of wall time = 302.620992 + 0: The maximum resident set size (KB) = 971248 -Test 097 rap_lndp_debug PASS +Test 098 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_flake_debug -Checking test 098 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_flake_debug +Checking test 099 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 = 293.247714 - 0: The maximum resident set size (KB) = 973408 + 0: The total amount of wall time = 290.889031 + 0: The maximum resident set size (KB) = 970520 -Test 098 rap_flake_debug PASS +Test 099 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_progcld_thompson_debug -Checking test 099 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_progcld_thompson_debug +Checking test 100 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.579158 - 0: The maximum resident set size (KB) = 973312 + 0: The total amount of wall time = 290.499515 + 0: The maximum resident set size (KB) = 970500 -Test 099 rap_progcld_thompson_debug PASS +Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_noah_debug -Checking test 100 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_noah_debug +Checking test 101 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 = 287.547824 - 0: The maximum resident set size (KB) = 971208 + 0: The total amount of wall time = 287.245981 + 0: The maximum resident set size (KB) = 969200 -Test 100 rap_noah_debug PASS +Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_debug -Checking test 101 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_debug +Checking test 102 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 = 293.593608 - 0: The maximum resident set size (KB) = 973152 + 0: The total amount of wall time = 295.939677 + 0: The maximum resident set size (KB) = 970448 -Test 101 rap_sfcdiff_debug PASS +Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 103 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 = 480.359822 - 0: The maximum resident set size (KB) = 971148 + 0: The total amount of wall time = 476.332479 + 0: The maximum resident set size (KB) = 968740 -Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1beta_debug -Checking test 103 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1beta_debug +Checking test 104 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 = 287.538189 - 0: The maximum resident set size (KB) = 968944 + 0: The total amount of wall time = 285.680704 + 0: The maximum resident set size (KB) = 966312 -Test 103 rrfs_v1beta_debug PASS +Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wam_debug -Checking test 104 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wam_debug +Checking test 105 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 292.499915 - 0: The maximum resident set size (KB) = 219740 + 0: The total amount of wall time = 298.822118 + 0: The maximum resident set size (KB) = 217656 -Test 104 control_wam_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.491939 - 0: The maximum resident set size (KB) = 801368 + 0: The total amount of wall time = 263.253283 + 0: The maximum resident set size (KB) = 802788 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn32_phy32 -Checking test 106 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3598,21 +3552,21 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.416681 - 0: The maximum resident set size (KB) = 690864 + 0: The total amount of wall time = 398.498465 + 0: The maximum resident set size (KB) = 691340 -Test 106 rap_control_dyn32_phy32 PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_dyn32_phy32 -Checking test 107 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3652,21 +3606,21 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.292863 - 0: The maximum resident set size (KB) = 689072 + 0: The total amount of wall time = 214.235523 + 0: The maximum resident set size (KB) = 689732 -Test 107 hrrr_control_dyn32_phy32 PASS +Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_2threads_dyn32_phy32 -Checking test 108 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3706,21 +3660,21 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.469887 - 0: The maximum resident set size (KB) = 747176 + 0: The total amount of wall time = 391.416601 + 0: The maximum resident set size (KB) = 743320 -Test 108 rap_2threads_dyn32_phy32 PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_2threads_dyn32_phy32 -Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3760,21 +3714,21 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.989145 - 0: The maximum resident set size (KB) = 739512 + 0: The total amount of wall time = 200.096984 + 0: The maximum resident set size (KB) = 740880 -Test 109 hrrr_control_2threads_dyn32_phy32 PASS +Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_decomp_dyn32_phy32 -Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3814,17 +3768,17 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.258087 - 0: The maximum resident set size (KB) = 688680 + 0: The total amount of wall time = 223.774918 + 0: The maximum resident set size (KB) = 688476 -Test 110 hrrr_control_decomp_dyn32_phy32 PASS +Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_restart_dyn32_phy32 -Checking test 111 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3860,17 +3814,17 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.142733 - 0: The maximum resident set size (KB) = 525460 + 0: The total amount of wall time = 292.521674 + 0: The maximum resident set size (KB) = 526388 -Test 111 rap_restart_dyn32_phy32 PASS +Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_restart_dyn32_phy32 -Checking test 112 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3906,21 +3860,21 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.723527 - 0: The maximum resident set size (KB) = 517532 + 0: The total amount of wall time = 117.209965 + 0: The maximum resident set size (KB) = 518740 -Test 112 hrrr_control_restart_dyn32_phy32 PASS +Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn64_phy32 -Checking test 113 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3960,440 +3914,440 @@ Checking test 113 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.451627 - 0: The maximum resident set size (KB) = 709196 + 0: The total amount of wall time = 267.683254 + 0: The maximum resident set size (KB) = 713368 -Test 113 rap_control_dyn64_phy32 PASS +Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_debug_dyn32_phy32 -Checking test 114 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.760414 - 0: The maximum resident set size (KB) = 858328 + 0: The total amount of wall time = 287.786707 + 0: The maximum resident set size (KB) = 855388 -Test 114 rap_control_debug_dyn32_phy32 PASS +Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.125418 - 0: The maximum resident set size (KB) = 855304 + 0: The total amount of wall time = 281.901474 + 0: The maximum resident set size (KB) = 852792 -Test 115 hrrr_control_debug_dyn32_phy32 PASS +Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn64_phy32_debug -Checking test 116 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.125925 - 0: The maximum resident set size (KB) = 874420 + 0: The total amount of wall time = 291.724862 + 0: The maximum resident set size (KB) = 876348 -Test 116 rap_control_dyn64_phy32_debug PASS +Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm -Checking test 117 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 1256.911066 - 0: The maximum resident set size (KB) = 686668 + 0: The total amount of wall time = 276.415230 + 0: The maximum resident set size (KB) = 687452 -Test 117 hafs_regional_atm PASS +Test 118 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_thompson_gfdlsf +Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.779877 - 0: The maximum resident set size (KB) = 1040424 + 0: The total amount of wall time = 306.979249 + 0: The maximum resident set size (KB) = 1039604 -Test 118 hafs_regional_atm_thompson_gfdlsf PASS +Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 448.133317 - 0: The maximum resident set size (KB) = 714464 + 0: The total amount of wall time = 447.870525 + 0: The maximum resident set size (KB) = 715376 -Test 119 hafs_regional_atm_ocn PASS +Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 947.500191 - 0: The maximum resident set size (KB) = 748172 + 0: The total amount of wall time = 940.989577 + 0: The maximum resident set size (KB) = 750656 -Test 120 hafs_regional_atm_wav PASS +Test 121 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1042.676044 - 0: The maximum resident set size (KB) = 767244 + 0: The total amount of wall time = 1053.781793 + 0: The maximum resident set size (KB) = 765696 -Test 121 hafs_regional_atm_ocn_wav PASS +Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_1nest_atm -Checking test 122 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_1nest_atm +Checking test 123 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 380.797829 - 0: The maximum resident set size (KB) = 278348 + 0: The total amount of wall time = 379.510617 + 0: The maximum resident set size (KB) = 279028 -Test 122 hafs_regional_1nest_atm PASS +Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_telescopic_2nests_atm -Checking test 123 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_telescopic_2nests_atm +Checking test 124 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 434.305730 - 0: The maximum resident set size (KB) = 286512 + 0: The total amount of wall time = 460.367236 + 0: The maximum resident set size (KB) = 289288 -Test 123 hafs_regional_telescopic_2nests_atm PASS +Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_1nest_atm -Checking test 124 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_1nest_atm +Checking test 125 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 169.069145 - 0: The maximum resident set size (KB) = 183636 + 0: The total amount of wall time = 173.557130 + 0: The maximum resident set size (KB) = 184620 -Test 124 hafs_global_1nest_atm PASS +Test 125 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_multiple_4nests_atm -Checking test 125 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_multiple_4nests_atm +Checking test 126 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 492.462011 - 0: The maximum resident set size (KB) = 232212 + 0: The total amount of wall time = 492.136418 + 0: The maximum resident set size (KB) = 214052 -Test 125 hafs_global_multiple_4nests_atm PASS +Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_specified_moving_1nest_atm -Checking test 126 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_specified_moving_1nest_atm +Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 245.612311 - 0: The maximum resident set size (KB) = 294344 + 0: The total amount of wall time = 245.256895 + 0: The maximum resident set size (KB) = 294580 -Test 126 hafs_regional_specified_moving_1nest_atm PASS +Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm -Checking test 127 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm +Checking test 128 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 232.885916 - 0: The maximum resident set size (KB) = 294312 + 0: The total amount of wall time = 227.575288 + 0: The maximum resident set size (KB) = 294720 -Test 127 hafs_regional_storm_following_1nest_atm PASS +Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 276.999595 - 0: The maximum resident set size (KB) = 322228 + 0: The total amount of wall time = 268.437338 + 0: The maximum resident set size (KB) = 323876 -Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_storm_following_1nest_atm -Checking test 129 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_storm_following_1nest_atm +Checking test 130 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 71.904632 - 0: The maximum resident set size (KB) = 202432 + 0: The total amount of wall time = 69.475341 + 0: The maximum resident set size (KB) = 203248 -Test 129 hafs_global_storm_following_1nest_atm PASS +Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 131 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 = 784.778295 - 0: The maximum resident set size (KB) = 352680 + 0: The total amount of wall time = 769.776899 + 0: The maximum resident set size (KB) = 347352 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 724.270012 - 0: The maximum resident set size (KB) = 373228 + 0: The total amount of wall time = 708.864686 + 0: The maximum resident set size (KB) = 372656 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_docn -Checking test 132 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_docn +Checking test 133 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.748864 - 0: The maximum resident set size (KB) = 725320 + 0: The total amount of wall time = 395.964669 + 0: The maximum resident set size (KB) = 724188 -Test 132 hafs_regional_docn PASS +Test 133 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_docn_oisst -Checking test 133 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_docn_oisst +Checking test 134 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 400.869164 - 0: The maximum resident set size (KB) = 710344 + 0: The total amount of wall time = 395.865175 + 0: The maximum resident set size (KB) = 713400 -Test 133 hafs_regional_docn_oisst PASS +Test 134 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_datm_cdeps -Checking test 134 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_datm_cdeps +Checking test 135 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 = 1170.387638 - 0: The maximum resident set size (KB) = 808904 + 0: The total amount of wall time = 1178.310661 + 0: The maximum resident set size (KB) = 809200 -Test 134 hafs_regional_datm_cdeps PASS +Test 135 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_cfsr -Checking test 135 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_cfsr +Checking test 136 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 = 171.670985 - 0: The maximum resident set size (KB) = 717508 + 0: The total amount of wall time = 167.233402 + 0: The maximum resident set size (KB) = 717504 -Test 135 datm_cdeps_control_cfsr PASS +Test 136 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_restart_cfsr -Checking test 136 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_restart_cfsr +Checking test 137 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 = 109.034896 - 0: The maximum resident set size (KB) = 716008 + 0: The total amount of wall time = 102.099401 + 0: The maximum resident set size (KB) = 708852 -Test 136 datm_cdeps_restart_cfsr PASS +Test 137 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_gefs -Checking test 137 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_gefs +Checking test 138 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 = 160.487001 - 0: The maximum resident set size (KB) = 600272 + 0: The total amount of wall time = 161.604603 + 0: The maximum resident set size (KB) = 597972 -Test 137 datm_cdeps_control_gefs PASS +Test 138 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_iau_gefs -Checking test 138 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_iau_gefs +Checking test 139 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 = 168.682819 - 0: The maximum resident set size (KB) = 593096 + 0: The total amount of wall time = 162.318115 + 0: The maximum resident set size (KB) = 599984 -Test 138 datm_cdeps_iau_gefs PASS +Test 139 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_stochy_gefs -Checking test 139 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_stochy_gefs +Checking test 140 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.559153 - 0: The maximum resident set size (KB) = 601980 + 0: The total amount of wall time = 162.603448 + 0: The maximum resident set size (KB) = 600056 -Test 139 datm_cdeps_stochy_gefs PASS +Test 140 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_ciceC_cfsr -Checking test 140 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_ciceC_cfsr +Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.967454 - 0: The maximum resident set size (KB) = 715940 + 0: The total amount of wall time = 168.153052 + 0: The maximum resident set size (KB) = 715828 -Test 140 datm_cdeps_ciceC_cfsr PASS +Test 141 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_bulk_cfsr -Checking test 141 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_bulk_cfsr +Checking test 142 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 = 167.750031 - 0: The maximum resident set size (KB) = 715872 + 0: The total amount of wall time = 166.665649 + 0: The maximum resident set size (KB) = 717596 -Test 141 datm_cdeps_bulk_cfsr PASS +Test 142 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_bulk_gefs -Checking test 142 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_bulk_gefs +Checking test 143 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 = 175.894890 - 0: The maximum resident set size (KB) = 600148 + 0: The total amount of wall time = 158.677200 + 0: The maximum resident set size (KB) = 597984 -Test 142 datm_cdeps_bulk_gefs PASS +Test 143 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_mx025_cfsr -Checking test 143 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_mx025_cfsr +Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4401,15 +4355,15 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 480.036253 - 0: The maximum resident set size (KB) = 494472 + 0: The total amount of wall time = 425.073961 + 0: The maximum resident set size (KB) = 496716 -Test 143 datm_cdeps_mx025_cfsr PASS +Test 144 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_mx025_gefs -Checking test 144 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_mx025_gefs +Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4417,78 +4371,78 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 469.219987 - 0: The maximum resident set size (KB) = 476252 + 0: The total amount of wall time = 425.668742 + 0: The maximum resident set size (KB) = 475988 -Test 144 datm_cdeps_mx025_gefs PASS +Test 145 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_multiple_files_cfsr -Checking test 145 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_multiple_files_cfsr +Checking test 146 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 = 168.089744 - 0: The maximum resident set size (KB) = 715664 + 0: The total amount of wall time = 169.207887 + 0: The maximum resident set size (KB) = 715996 -Test 145 datm_cdeps_multiple_files_cfsr PASS +Test 146 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_3072x1536_cfsr -Checking test 146 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_3072x1536_cfsr +Checking test 147 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 = 254.688490 - 0: The maximum resident set size (KB) = 1944796 + 0: The total amount of wall time = 251.145275 + 0: The maximum resident set size (KB) = 1948080 -Test 146 datm_cdeps_3072x1536_cfsr PASS +Test 147 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_gfs -Checking test 147 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_gfs +Checking test 148 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.390180 - 0: The maximum resident set size (KB) = 1952536 + 0: The total amount of wall time = 252.822546 + 0: The maximum resident set size (KB) = 1952208 -Test 147 datm_cdeps_gfs PASS +Test 148 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_debug_cfsr -Checking test 148 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_debug_cfsr +Checking test 149 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 = 375.555717 - 0: The maximum resident set size (KB) = 714876 + 0: The total amount of wall time = 372.813951 + 0: The maximum resident set size (KB) = 711452 -Test 148 datm_cdeps_debug_cfsr PASS +Test 149 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_cfsr_faster -Checking test 149 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_cfsr_faster +Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.319212 - 0: The maximum resident set size (KB) = 715868 + 0: The total amount of wall time = 170.180116 + 0: The maximum resident set size (KB) = 715728 -Test 149 datm_cdeps_control_cfsr_faster PASS +Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_lnd_gswp3 -Checking test 150 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_lnd_gswp3 +Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4496,15 +4450,15 @@ Checking test 150 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.102991 - 0: The maximum resident set size (KB) = 145664 + 0: The total amount of wall time = 19.739349 + 0: The maximum resident set size (KB) = 149920 -Test 150 datm_cdeps_lnd_gswp3 PASS +Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_lnd_gswp3_rst -Checking test 151 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_lnd_gswp3_rst +Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4512,15 +4466,15 @@ Checking test 151 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 = 22.684065 - 0: The maximum resident set size (KB) = 145800 + 0: The total amount of wall time = 23.625868 + 0: The maximum resident set size (KB) = 149740 -Test 151 datm_cdeps_lnd_gswp3_rst PASS +Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_atmlnd_sbs -Checking test 152 control_p8_atmlnd_sbs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_atmlnd_sbs +Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4604,19 +4558,19 @@ Checking test 152 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 = 253.265812 - 0: The maximum resident set size (KB) = 1413964 + 0: The total amount of wall time = 255.698791 + 0: The maximum resident set size (KB) = 1413568 -Test 152 control_p8_atmlnd_sbs PASS +Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_atmwav -Checking test 153 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_atmwav +Checking test 154 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4655,19 +4609,19 @@ Checking test 153 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 = 105.535228 - 0: The maximum resident set size (KB) = 451524 + 0: The total amount of wall time = 98.226036 + 0: The maximum resident set size (KB) = 451548 -Test 153 control_atmwav PASS +Test 154 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8 -Checking test 154 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8 +Checking test 155 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4706,19 +4660,19 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.245957 - 0: The maximum resident set size (KB) = 1448088 + 0: The total amount of wall time = 269.145759 + 0: The maximum resident set size (KB) = 1448080 -Test 154 atmaero_control_p8 PASS +Test 155 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8_rad -Checking test 155 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8_rad +Checking test 156 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4757,19 +4711,19 @@ Checking test 155 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.248576 - 0: The maximum resident set size (KB) = 1469700 + 0: The total amount of wall time = 305.835627 + 0: The maximum resident set size (KB) = 1469932 -Test 155 atmaero_control_p8_rad PASS +Test 156 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8_rad_micro -Checking test 156 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8_rad_micro +Checking test 157 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4808,21 +4762,21 @@ Checking test 156 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.626411 - 0: The maximum resident set size (KB) = 1473760 + 0: The total amount of wall time = 308.402513 + 0: The maximum resident set size (KB) = 1473520 -Test 156 atmaero_control_p8_rad_micro PASS +Test 157 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_atmaq -Checking test 157 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_atmaq +Checking test 158 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4831,21 +4785,21 @@ Checking test 157 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 = 706.122737 - 0: The maximum resident set size (KB) = 967392 + 0: The total amount of wall time = 668.170458 + 0: The maximum resident set size (KB) = 970056 -Test 157 regional_atmaq PASS +Test 158 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_atmaq_faster -Checking test 158 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_atmaq_faster +Checking test 159 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4854,12 +4808,8 @@ Checking test 158 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 = 605.021924 - 0: The maximum resident set size (KB) = 970724 - -Test 158 regional_atmaq_faster PASS Tries: 2 + 0: The total amount of wall time = 625.127520 + 0: The maximum resident set size (KB) = 966080 +Test 159 regional_atmaq_faster PASS -REGRESSION TEST WAS SUCCESSFUL -Wed Mar 29 05:45:42 EDT 2023 -Elapsed time: 12h:42m:47s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 1693e92b6e..d34242e6b7 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,26 +1,26 @@ -Tue Mar 28 21:04:58 UTC 2023 +Wed Apr 5 20:43:53 UTC 2023 Start Regression test -Compile 001 elapsed time 190 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 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 338 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 111 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 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 404 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 349 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 266 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 237 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 164 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 125 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_c48 +Compile 001 elapsed time 183 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 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 394 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 315 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +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 229 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 138 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -54,57 +54,57 @@ 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 = 689.427595 -0: The maximum resident set size (KB) = 701584 +0: The total amount of wall time = 688.877530 +0: The maximum resident set size (KB) = 702248 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.646485 - 0: The maximum resident set size (KB) = 477212 + 0: The total amount of wall time = 655.197524 + 0: The maximum resident set size (KB) = 478104 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_ras Checking test 003 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 843.950882 - 0: The maximum resident set size (KB) = 488380 + 0: The total amount of wall time = 837.073618 + 0: The maximum resident set size (KB) = 483228 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -144,21 +144,21 @@ 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 = 899.771944 - 0: The maximum resident set size (KB) = 1235064 + 0: The total amount of wall time = 900.888914 + 0: The maximum resident set size (KB) = 1237660 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -198,21 +198,21 @@ 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 = 1452.926316 - 0: The maximum resident set size (KB) = 829972 + 0: The total amount of wall time = 1469.223855 + 0: The maximum resident set size (KB) = 831588 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_decomp Checking test 006 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -252,21 +252,21 @@ 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 = 1428.201850 - 0: The maximum resident set size (KB) = 833176 + 0: The total amount of wall time = 1448.649229 + 0: The maximum resident set size (KB) = 836880 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_2threads Checking test 007 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -306,17 +306,17 @@ 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 = 1349.078164 - 0: The maximum resident set size (KB) = 898384 + 0: The total amount of wall time = 1361.823379 + 0: The maximum resident set size (KB) = 900616 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_restart Checking test 008 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -352,21 +352,21 @@ 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 = 725.935335 - 0: The maximum resident set size (KB) = 546124 + 0: The total amount of wall time = 739.862088 + 0: The maximum resident set size (KB) = 554216 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff Checking test 009 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -406,21 +406,21 @@ 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 = 1499.799495 - 0: The maximum resident set size (KB) = 829704 + 0: The total amount of wall time = 1466.816494 + 0: The maximum resident set size (KB) = 834688 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -460,17 +460,17 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.500091 - 0: The maximum resident set size (KB) = 830696 + 0: The total amount of wall time = 1445.752888 + 0: The maximum resident set size (KB) = 834628 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -506,21 +506,21 @@ 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 = 1086.449420 - 0: The maximum resident set size (KB) = 555136 + 0: The total amount of wall time = 1098.992804 + 0: The maximum resident set size (KB) = 550232 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control Checking test 012 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -560,21 +560,21 @@ 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 = 1449.246804 - 0: The maximum resident set size (KB) = 828968 + 0: The total amount of wall time = 1443.845848 + 0: The maximum resident set size (KB) = 828124 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -614,21 +614,21 @@ 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 = 1312.889516 - 0: The maximum resident set size (KB) = 894480 + 0: The total amount of wall time = 1335.538767 + 0: The maximum resident set size (KB) = 897224 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -668,17 +668,17 @@ 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 = 1442.061438 - 0: The maximum resident set size (KB) = 828952 + 0: The total amount of wall time = 1418.727736 + 0: The maximum resident set size (KB) = 826916 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_restart Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -714,21 +714,21 @@ 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 = 1034.270276 - 0: The maximum resident set size (KB) = 551712 + 0: The total amount of wall time = 1077.182861 + 0: The maximum resident set size (KB) = 550152 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_v1beta Checking test 016 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -768,293 +768,305 @@ 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 = 1480.167185 - 0: The maximum resident set size (KB) = 825796 + 0: The total amount of wall time = 1491.582801 + 0: The maximum resident set size (KB) = 829404 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 811.187823 - 0: The maximum resident set size (KB) = 668736 + 0: The total amount of wall time = 798.951487 + 0: The maximum resident set size (KB) = 671116 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1055.815848 - 0: The maximum resident set size (KB) = 666436 + 0: The total amount of wall time = 1083.283608 + 0: The maximum resident set size (KB) = 660744 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 779.189968 - 0: The maximum resident set size (KB) = 643996 + 0: The total amount of wall time = 751.153297 + 0: The maximum resident set size (KB) = 646464 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 772.572871 - 0: The maximum resident set size (KB) = 672480 + 0: The total amount of wall time = 789.414984 + 0: The maximum resident set size (KB) = 675028 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_diag_debug -Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.302028 - 0: The maximum resident set size (KB) = 528088 + 0: The total amount of wall time = 379.003630 + 0: The maximum resident set size (KB) = 636512 -Test 021 control_diag_debug PASS +Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/regional_debug -Checking test 022 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_diag_debug +Checking test 022 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 750.078306 - 0: The maximum resident set size (KB) = 595116 + 0: The total amount of wall time = 124.538170 + 0: The maximum resident set size (KB) = 530528 -Test 022 regional_debug PASS +Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_debug -Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/regional_debug +Checking test 023 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 180.783260 - 0: The maximum resident set size (KB) = 847552 + 0: The total amount of wall time = 723.812047 + 0: The maximum resident set size (KB) = 590012 -Test 023 rap_control_debug PASS +Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_debug -Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_debug +Checking test 024 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.798266 - 0: The maximum resident set size (KB) = 841300 + 0: The total amount of wall time = 173.115201 + 0: The maximum resident set size (KB) = 845528 -Test 024 hrrr_control_debug PASS +Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_diag_debug -Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_debug +Checking test 025 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.608298 - 0: The maximum resident set size (KB) = 930240 + 0: The total amount of wall time = 170.800021 + 0: The maximum resident set size (KB) = 844396 -Test 025 rap_diag_debug PASS +Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_diag_debug +Checking test 026 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.306294 - 0: The maximum resident set size (KB) = 849208 + 0: The total amount of wall time = 207.858014 + 0: The maximum resident set size (KB) = 928544 -Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_progcld_thompson_debug -Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.334186 - 0: The maximum resident set size (KB) = 841012 + 0: The total amount of wall time = 268.632975 + 0: The maximum resident set size (KB) = 837056 -Test 027 rap_progcld_thompson_debug PASS +Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_v1beta_debug -Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_progcld_thompson_debug +Checking test 028 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.997113 - 0: The maximum resident set size (KB) = 839792 + 0: The total amount of wall time = 169.775303 + 0: The maximum resident set size (KB) = 845736 -Test 028 rrfs_v1beta_debug PASS +Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_ras_debug -Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_v1beta_debug +Checking test 029 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.004944 - 0: The maximum resident set size (KB) = 480580 + 0: The total amount of wall time = 172.035527 + 0: The maximum resident set size (KB) = 839720 -Test 029 control_ras_debug PASS +Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_stochy_debug -Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_ras_debug +Checking test 030 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.481039 - 0: The maximum resident set size (KB) = 476752 + 0: The total amount of wall time = 99.444866 + 0: The maximum resident set size (KB) = 484256 -Test 030 control_stochy_debug PASS +Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_debug_p8 -Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_stochy_debug +Checking test 031 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.188742 - 0: The maximum resident set size (KB) = 1232312 + 0: The total amount of wall time = 115.735426 + 0: The maximum resident set size (KB) = 475276 -Test 031 control_debug_p8 PASS +Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_debug_p8 +Checking test 032 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 611.530387 - 0: The maximum resident set size (KB) = 687788 + 0: The total amount of wall time = 113.582117 + 0: The maximum resident set size (KB) = 1230308 -Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 757.560083 - 0: The maximum resident set size (KB) = 687144 + 0: The total amount of wall time = 636.298638 + 0: The maximum resident set size (KB) = 683164 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_conus13km_hrrr_warm_debug -Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 572.602498 - 0: The maximum resident set size (KB) = 659640 + 0: The total amount of wall time = 749.293064 + 0: The maximum resident set size (KB) = 681740 -Test 034 rrfs_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_wam_debug -Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm_debug +Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.270956 - 0: The maximum resident set size (KB) = 194464 + 0: The total amount of wall time = 575.247818 + 0: The maximum resident set size (KB) = 658092 -Test 035 control_wam_debug PASS +Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn32_phy32 -Checking test 036 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_wam_debug +Checking test 036 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 181.159065 + 0: The maximum resident set size (KB) = 195156 + +Test 036 control_wam_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn32_phy32 +Checking test 037 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1094,21 +1106,21 @@ Checking test 036 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 = 1462.495853 - 0: The maximum resident set size (KB) = 684648 + 0: The total amount of wall time = 1507.511448 + 0: The maximum resident set size (KB) = 683920 -Test 036 rap_control_dyn32_phy32 PASS +Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_dyn32_phy32 -Checking test 037 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_dyn32_phy32 +Checking test 038 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1148,21 +1160,21 @@ Checking test 037 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 748.565706 - 0: The maximum resident set size (KB) = 688920 + 0: The total amount of wall time = 759.001644 + 0: The maximum resident set size (KB) = 683912 -Test 037 hrrr_control_dyn32_phy32 PASS +Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_2threads_dyn32_phy32 -Checking test 038 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_2threads_dyn32_phy32 +Checking test 039 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1202,21 +1214,21 @@ Checking test 038 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 = 1358.606002 - 0: The maximum resident set size (KB) = 734724 + 0: The total amount of wall time = 1359.266261 + 0: The maximum resident set size (KB) = 729884 -Test 038 rap_2threads_dyn32_phy32 PASS +Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_2threads_dyn32_phy32 -Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_2threads_dyn32_phy32 +Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1256,21 +1268,21 @@ Checking test 039 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 = 677.228576 - 0: The maximum resident set size (KB) = 727676 + 0: The total amount of wall time = 682.249405 + 0: The maximum resident set size (KB) = 730688 -Test 039 hrrr_control_2threads_dyn32_phy32 PASS +Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_decomp_dyn32_phy32 -Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_decomp_dyn32_phy32 +Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1310,17 +1322,17 @@ Checking test 040 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 = 710.212133 - 0: The maximum resident set size (KB) = 683996 + 0: The total amount of wall time = 737.952704 + 0: The maximum resident set size (KB) = 688312 -Test 040 hrrr_control_decomp_dyn32_phy32 PASS +Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_restart_dyn32_phy32 -Checking test 041 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_restart_dyn32_phy32 +Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1356,17 +1368,17 @@ Checking test 041 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 = 1084.970850 - 0: The maximum resident set size (KB) = 511720 + 0: The total amount of wall time = 1074.629510 + 0: The maximum resident set size (KB) = 511240 -Test 041 rap_restart_dyn32_phy32 PASS +Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_restart_dyn32_phy32 -Checking test 042 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_restart_dyn32_phy32 +Checking test 043 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -1402,21 +1414,21 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.953225 - 0: The maximum resident set size (KB) = 507656 + 0: The total amount of wall time = 377.862756 + 0: The maximum resident set size (KB) = 508516 -Test 042 hrrr_control_restart_dyn32_phy32 PASS +Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn64_phy32 -Checking test 043 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn64_phy32 +Checking test 044 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1456,57 +1468,59 @@ Checking test 043 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 = 1078.690957 - 0: The maximum resident set size (KB) = 710556 + 0: The total amount of wall time = 1050.271591 + 0: The maximum resident set size (KB) = 708088 + +Test 044 rap_control_dyn64_phy32 PASS -Test 043 rap_control_dyn64_phy32 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_debug_dyn32_phy32 +Checking test 045 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_debug_dyn32_phy32 -Checking test 044 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 170.860933 + 0: The maximum resident set size (KB) = 703100 - 0: The total amount of wall time = 178.956055 - 0: The maximum resident set size (KB) = 702948 +Test 045 rap_control_debug_dyn32_phy32 PASS -Test 044 rap_control_debug_dyn32_phy32 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_debug_dyn32_phy32 +Checking test 046 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_debug_dyn32_phy32 -Checking test 045 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 168.195095 + 0: The maximum resident set size (KB) = 695776 - 0: The total amount of wall time = 177.063375 - 0: The maximum resident set size (KB) = 703788 +Test 046 hrrr_control_debug_dyn32_phy32 PASS -Test 045 hrrr_control_debug_dyn32_phy32 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn64_phy32_debug +Checking test 047 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn64_phy32_debug -Checking test 046 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 202.746710 + 0: The maximum resident set size (KB) = 718220 - 0: The total amount of wall time = 212.904990 - 0: The maximum resident set size (KB) = 719080 +Test 047 rap_control_dyn64_phy32_debug PASS -Test 046 rap_control_dyn64_phy32_debug PASS +Test 048 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_control_p8 -Checking test 047 cpld_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/cpld_control_nowave_noaero_p8 +Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1531,7 +1545,6 @@ Checking test 047 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1567,18 +1580,99 @@ Checking test 047 cpld_control_p8 results .... 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 = 1777.796152 - 0: The maximum resident set size (KB) = 1432284 + 0: The total amount of wall time = 1240.298513 + 0: The maximum resident set size (KB) = 1332740 + +Test 049 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/cpld_debug_p8 +Checking test 050 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 854.052885 + 0: The maximum resident set size (KB) = 1441848 + +Test 050 cpld_debug_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/datm_cdeps_control_cfsr +Checking test 051 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 175.214068 + 0: The maximum resident set size (KB) = 666260 + +Test 051 datm_cdeps_control_cfsr PASS -Test 047 cpld_control_p8 PASS Tries: 2 +FAILED TESTS: +Test cpld_control_p8 048 failed in run_test failed +REGRESSION TEST FAILED +Wed Apr 5 22:00:24 UTC 2023 +Elapsed time: 01h:16m:32s. Have a nice day! +Wed Apr 5 22:29:07 UTC 2023 +Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_control_nowave_noaero_p8 -Checking test 048 cpld_control_nowave_noaero_p8 results .... +Compile 001 elapsed time 264 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-20230405/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_7058/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 @@ -1603,6 +1697,7 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1638,86 +1733,15 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... 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 = 1223.762699 - 0: The maximum resident set size (KB) = 1334820 - -Test 048 cpld_control_nowave_noaero_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_debug_p8 -Checking test 049 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 891.505453 - 0: The maximum resident set size (KB) = 1444888 - -Test 049 cpld_debug_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/datm_cdeps_control_cfsr -Checking test 050 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 = 182.909636 - 0: The maximum resident set size (KB) = 661592 + 0: The total amount of wall time = 1670.463192 + 0: The maximum resident set size (KB) = 1429888 -Test 050 datm_cdeps_control_cfsr PASS +Test 001 cpld_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 22:22:49 UTC 2023 -Elapsed time: 01h:17m:52s. Have a nice day! +Wed Apr 5 23:07:45 UTC 2023 +Elapsed time: 00h:38m:38s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b89ea04e24..54059b314f 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 20:48:45 UTC 2023 +Wed Apr 5 20:42:59 UTC 2023 Start Regression test -Compile 001 elapsed time 616 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 616 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 562 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 248 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 213 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 532 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 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 703 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 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 492 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 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 591 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 230 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_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 183 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 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 605 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 205 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 645 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 563 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 492 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 539 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 487 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 464 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 197 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 579 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8_mixedmode +Compile 001 elapsed time 637 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 635 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 567 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 228 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 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 533 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 473 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 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 606 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 208 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 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 161 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 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 523 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 186 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 631 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 547 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 195 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 484 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 536 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,85 +101,85 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.229887 - 0: The maximum resident set size (KB) = 3146352 + 0: The total amount of wall time = 305.291494 + 0: The maximum resident set size (KB) = 3144884 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK + Comparing sfcf021.tile1.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile2.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile3.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile4.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile5.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile6.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile1.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile2.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile3.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile4.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile5.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile6.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile1.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile2.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile3.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile4.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile5.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile6.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile1.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile2.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile3.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile4.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile5.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile6.nc ............ALT CHECK......NOT OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 235.569057 - 0: The maximum resident set size (KB) = 1725256 - -Test 002 cpld_control_gfsv17 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8 + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......NOT OK + Comparing RESTART/iced.2021-03-23-21600.nc ............ALT CHECK......NOT OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............ALT CHECK......NOT OK + Comparing 20210323.060000.out_pnt.ww3 .........NOT OK + Comparing 20210323.060000.out_grd.ww3 .........NOT OK + + 0: The total amount of wall time = 224.382839 + 0: The maximum resident set size (KB) = 1737256 + +Test 002 cpld_control_gfsv17 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/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 = 361.665717 - 0: The maximum resident set size (KB) = 3182908 + 0: The total amount of wall time = 338.448423 + 0: The maximum resident set size (KB) = 3181692 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/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 = 205.846788 - 0: The maximum resident set size (KB) = 3049120 + 0: The total amount of wall time = 195.738094 + 0: The maximum resident set size (KB) = 3050872 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.863437 - 0: The maximum resident set size (KB) = 3196524 + 0: The total amount of wall time = 343.272175 + 0: The maximum resident set size (KB) = 3194532 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.428045 - 0: The maximum resident set size (KB) = 3060728 + 0: The total amount of wall time = 196.597835 + 0: The maximum resident set size (KB) = 3068460 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.837184 - 0: The maximum resident set size (KB) = 3520752 + 0: The total amount of wall time = 350.226952 + 0: The maximum resident set size (KB) = 3523764 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.684401 - 0: The maximum resident set size (KB) = 3167680 + 0: The total amount of wall time = 338.228077 + 0: The maximum resident set size (KB) = 3178788 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 294.763638 - 0: The maximum resident set size (KB) = 3025824 + 0: The total amount of wall time = 282.242750 + 0: The maximum resident set size (KB) = 3027328 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.334567 - 0: The maximum resident set size (KB) = 3189124 + 0: The total amount of wall time = 340.964848 + 0: The maximum resident set size (KB) = 3162588 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 611.248630 - 0: The maximum resident set size (KB) = 3260532 + 0: The total amount of wall time = 594.593190 + 0: The maximum resident set size (KB) = 3256752 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,17 +808,17 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 402.874053 - 0: The maximum resident set size (KB) = 3156308 + 0: The total amount of wall time = 380.766155 + 0: The maximum resident set size (KB) = 3159496 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -863,17 +863,17 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 760.535974 - 0: The maximum resident set size (KB) = 4038564 + 0: The total amount of wall time = 705.272063 + 0: The maximum resident set size (KB) = 4031860 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.708731 - 0: The maximum resident set size (KB) = 3985948 + 0: The total amount of wall time = 455.775107 + 0: The maximum resident set size (KB) = 3977784 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.006060 - 0: The maximum resident set size (KB) = 1721216 + 0: The total amount of wall time = 262.672095 + 0: The maximum resident set size (KB) = 1723364 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.809065 - 0: The maximum resident set size (KB) = 1765620 + 0: The total amount of wall time = 258.837291 + 0: The maximum resident set size (KB) = 1767624 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 660.314091 - 0: The maximum resident set size (KB) = 3241696 + 0: The total amount of wall time = 526.767267 + 0: The maximum resident set size (KB) = 3216176 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.449522 - 0: The maximum resident set size (KB) = 1739032 + 0: The total amount of wall time = 361.034403 + 0: The maximum resident set size (KB) = 1729788 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 278.221229 - 0: The maximum resident set size (KB) = 1766652 + 0: The total amount of wall time = 267.142470 + 0: The maximum resident set size (KB) = 1767864 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 584.173106 - 0: The maximum resident set size (KB) = 2801988 + 0: The total amount of wall time = 587.027126 + 0: The maximum resident set size (KB) = 2809480 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.417077 - 0: The maximum resident set size (KB) = 2799804 + 0: The total amount of wall time = 152.984802 + 0: The maximum resident set size (KB) = 2806204 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 93.995011 - 0: The maximum resident set size (KB) = 2233976 + 0: The total amount of wall time = 81.975596 + 0: The maximum resident set size (KB) = 2238628 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.751076 - 0: The maximum resident set size (KB) = 3184900 + 0: The total amount of wall time = 317.286547 + 0: The maximum resident set size (KB) = 3158912 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,69 +1523,69 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.871471 - 0: The maximum resident set size (KB) = 637320 + 0: The total amount of wall time = 131.140033 + 0: The maximum resident set size (KB) = 633200 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 131.110885 - 0: The maximum resident set size (KB) = 628220 + 0: The total amount of wall time = 126.394251 + 0: The maximum resident set size (KB) = 632392 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_latlon Checking test 026 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.358191 - 0: The maximum resident set size (KB) = 633576 + 0: The total amount of wall time = 133.328077 + 0: The maximum resident set size (KB) = 628200 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.750449 - 0: The maximum resident set size (KB) = 629300 + 0: The total amount of wall time = 136.081701 + 0: The maximum resident set size (KB) = 634084 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c48 Checking test 028 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1619,55 +1619,55 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 369.958868 -0: The maximum resident set size (KB) = 824636 +0: The total amount of wall time = 366.086049 +0: The maximum resident set size (KB) = 821056 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c192 Checking test 029 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.752203 - 0: The maximum resident set size (KB) = 771804 + 0: The total amount of wall time = 526.166190 + 0: The maximum resident set size (KB) = 770632 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c384 Checking test 030 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.714325 - 0: The maximum resident set size (KB) = 1266888 + 0: The total amount of wall time = 521.719521 + 0: The maximum resident set size (KB) = 1265248 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c384gdas Checking test 031 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1705,71 +1705,71 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.274347 - 0: The maximum resident set size (KB) = 1383088 + 0: The total amount of wall time = 458.885241 + 0: The maximum resident set size (KB) = 1378732 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy Checking test 032 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.106673 - 0: The maximum resident set size (KB) = 640568 + 0: The total amount of wall time = 86.535989 + 0: The maximum resident set size (KB) = 636580 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy_restart Checking test 033 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 53.634214 - 0: The maximum resident set size (KB) = 483228 + 0: The total amount of wall time = 47.450229 + 0: The maximum resident set size (KB) = 484064 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_lndp Checking test 034 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.299048 - 0: The maximum resident set size (KB) = 636392 + 0: The total amount of wall time = 81.242679 + 0: The maximum resident set size (KB) = 633388 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_iovr4 Checking test 035 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1777,21 +1777,21 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.343413 - 0: The maximum resident set size (KB) = 636584 + 0: The total amount of wall time = 135.409321 + 0: The maximum resident set size (KB) = 629416 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_iovr5 Checking test 036 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1799,21 +1799,21 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.910491 - 0: The maximum resident set size (KB) = 634172 + 0: The total amount of wall time = 136.668651 + 0: The maximum resident set size (KB) = 627524 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8 Checking test 037 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1853,17 +1853,17 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.932492 - 0: The maximum resident set size (KB) = 1605520 + 0: The total amount of wall time = 169.053693 + 0: The maximum resident set size (KB) = 1600812 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_restart_p8 Checking test 038 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1899,21 +1899,21 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.200824 - 0: The maximum resident set size (KB) = 880816 + 0: The total amount of wall time = 87.148707 + 0: The maximum resident set size (KB) = 865020 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_qr_p8 Checking test 039 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1953,17 +1953,17 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.385732 - 0: The maximum resident set size (KB) = 1608376 + 0: The total amount of wall time = 167.034538 + 0: The maximum resident set size (KB) = 1609660 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1999,19 +1999,19 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 97.474956 - 0: The maximum resident set size (KB) = 875016 + 0: The total amount of wall time = 90.870158 + 0: The maximum resident set size (KB) = 869396 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_decomp_p8 Checking test 041 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -2049,19 +2049,19 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.113463 - 0: The maximum resident set size (KB) = 1590932 + 0: The total amount of wall time = 172.097586 + 0: The maximum resident set size (KB) = 1582260 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_2threads_p8 Checking test 042 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -2099,23 +2099,23 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.635609 - 0: The maximum resident set size (KB) = 1690320 + 0: The total amount of wall time = 155.269912 + 0: The maximum resident set size (KB) = 1688908 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_lndp Checking test 043 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2125,21 +2125,21 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 321.926081 - 0: The maximum resident set size (KB) = 1604208 + 0: The total amount of wall time = 311.141403 + 0: The maximum resident set size (KB) = 1605144 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2179,21 +2179,21 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.452525 - 0: The maximum resident set size (KB) = 1674548 + 0: The total amount of wall time = 224.799303 + 0: The maximum resident set size (KB) = 1662808 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_mynn Checking test 045 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2233,21 +2233,21 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.898272 - 0: The maximum resident set size (KB) = 1616568 + 0: The total amount of wall time = 169.862995 + 0: The maximum resident set size (KB) = 1609300 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/merra2_thompson Checking test 046 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2287,114 +2287,114 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.168555 - 0: The maximum resident set size (KB) = 1613452 + 0: The total amount of wall time = 189.467950 + 0: The maximum resident set size (KB) = 1610132 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control Checking test 047 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.767960 - 0: The maximum resident set size (KB) = 871112 + 0: The total amount of wall time = 298.621550 + 0: The maximum resident set size (KB) = 873496 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_restart Checking test 048 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 161.005226 - 0: The maximum resident set size (KB) = 865084 + 0: The total amount of wall time = 155.849705 + 0: The maximum resident set size (KB) = 834564 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control_qr Checking test 049 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.529040 - 0: The maximum resident set size (KB) = 875584 + 0: The total amount of wall time = 299.606790 + 0: The maximum resident set size (KB) = 868056 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_restart_qr Checking test 050 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.604437 + 0: The total amount of wall time = 151.816630 0: The maximum resident set size (KB) = 866424 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_decomp Checking test 051 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.823530 - 0: The maximum resident set size (KB) = 863316 + 0: The total amount of wall time = 314.054918 + 0: The maximum resident set size (KB) = 864992 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_2threads Checking test 052 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 187.940036 - 0: The maximum resident set size (KB) = 851864 + 0: The total amount of wall time = 181.026521 + 0: The maximum resident set size (KB) = 847388 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,71 +2402,71 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 322.218464 - 0: The maximum resident set size (KB) = 858904 + 0: The total amount of wall time = 319.477269 + 0: The maximum resident set size (KB) = 863924 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 299.512051 - 0: The maximum resident set size (KB) = 867992 + 0: The total amount of wall time = 294.169389 + 0: The maximum resident set size (KB) = 871152 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.652215 - 0: The maximum resident set size (KB) = 868700 + 0: The total amount of wall time = 299.553845 + 0: The maximum resident set size (KB) = 872304 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_wofs Checking test 056 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 378.988741 - 0: The maximum resident set size (KB) = 635952 + 0: The total amount of wall time = 376.433536 + 0: The maximum resident set size (KB) = 629724 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control Checking test 057 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2506,39 +2506,39 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.214338 - 0: The maximum resident set size (KB) = 1055992 + 0: The total amount of wall time = 458.408473 + 0: The maximum resident set size (KB) = 1046732 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 238.595521 - 0: The maximum resident set size (KB) = 1177632 + 0: The total amount of wall time = 237.512662 + 0: The maximum resident set size (KB) = 1180944 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_decomp Checking test 059 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2578,21 +2578,21 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 483.489989 - 0: The maximum resident set size (KB) = 997788 + 0: The total amount of wall time = 475.476237 + 0: The maximum resident set size (KB) = 1000932 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_2threads Checking test 060 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2632,17 +2632,17 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.885899 - 0: The maximum resident set size (KB) = 1131156 + 0: The total amount of wall time = 433.017586 + 0: The maximum resident set size (KB) = 1136848 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_restart Checking test 061 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2678,21 +2678,21 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.363267 - 0: The maximum resident set size (KB) = 960800 + 0: The total amount of wall time = 228.877664 + 0: The maximum resident set size (KB) = 962696 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff Checking test 062 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2732,21 +2732,21 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.306225 - 0: The maximum resident set size (KB) = 1055408 + 0: The total amount of wall time = 458.727260 + 0: The maximum resident set size (KB) = 1052032 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2786,17 +2786,17 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.696410 - 0: The maximum resident set size (KB) = 999772 + 0: The total amount of wall time = 481.421739 + 0: The maximum resident set size (KB) = 1000804 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2832,21 +2832,21 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.885112 - 0: The maximum resident set size (KB) = 987052 + 0: The total amount of wall time = 342.500326 + 0: The maximum resident set size (KB) = 994416 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control Checking test 065 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2886,21 +2886,21 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.992553 - 0: The maximum resident set size (KB) = 1050828 + 0: The total amount of wall time = 442.730222 + 0: The maximum resident set size (KB) = 1056140 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2940,21 +2940,21 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.078777 - 0: The maximum resident set size (KB) = 1000412 + 0: The total amount of wall time = 464.322390 + 0: The maximum resident set size (KB) = 993376 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2994,17 +2994,17 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.259850 - 0: The maximum resident set size (KB) = 1133244 + 0: The total amount of wall time = 418.396404 + 0: The maximum resident set size (KB) = 1131332 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_restart Checking test 068 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3040,21 +3040,21 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.335259 - 0: The maximum resident set size (KB) = 985840 + 0: The total amount of wall time = 328.307782 + 0: The maximum resident set size (KB) = 979648 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1beta Checking test 069 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3094,21 +3094,21 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.661935 - 0: The maximum resident set size (KB) = 1071576 + 0: The total amount of wall time = 454.092262 + 0: The maximum resident set size (KB) = 1051972 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3116,21 +3116,21 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 543.143988 - 0: The maximum resident set size (KB) = 692092 + 0: The total amount of wall time = 535.974187 + 0: The maximum resident set size (KB) = 689600 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3138,151 +3138,163 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.251238 - 0: The maximum resident set size (KB) = 752276 + 0: The total amount of wall time = 519.983484 + 0: The maximum resident set size (KB) = 753600 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 154.024013 - 0: The maximum resident set size (KB) = 1031680 + 0: The total amount of wall time = 145.580973 + 0: The maximum resident set size (KB) = 1036680 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.363529 - 0: The maximum resident set size (KB) = 933992 + 0: The total amount of wall time = 90.683337 + 0: The maximum resident set size (KB) = 942120 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.432875 - 0: The maximum resident set size (KB) = 941084 + 0: The total amount of wall time = 128.598242 + 0: The maximum resident set size (KB) = 944904 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.516976 - 0: The maximum resident set size (KB) = 1034568 + 0: The total amount of wall time = 145.634884 + 0: The maximum resident set size (KB) = 1003728 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmg -Checking test 076 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 68.308930 + 0: The maximum resident set size (KB) = 929780 + +Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmg +Checking test 077 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.700358 - 0: The maximum resident set size (KB) = 729924 + 0: The total amount of wall time = 345.960410 + 0: The maximum resident set size (KB) = 725620 -Test 076 control_csawmg PASS +Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmgt -Checking test 077 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmgt +Checking test 078 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.664321 - 0: The maximum resident set size (KB) = 726904 + 0: The total amount of wall time = 339.162313 + 0: The maximum resident set size (KB) = 724924 -Test 077 control_csawmgt PASS +Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_ras -Checking test 078 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_ras +Checking test 079 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.295126 - 0: The maximum resident set size (KB) = 716548 + 0: The total amount of wall time = 179.974892 + 0: The maximum resident set size (KB) = 718820 -Test 078 control_ras PASS +Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wam -Checking test 079 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wam +Checking test 080 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.996441 - 0: The maximum resident set size (KB) = 641228 + 0: The total amount of wall time = 111.105005 + 0: The maximum resident set size (KB) = 638536 -Test 079 control_wam PASS +Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_faster -Checking test 080 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_faster +Checking test 081 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3322,75 +3334,75 @@ Checking test 080 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.721698 - 0: The maximum resident set size (KB) = 1599540 + 0: The total amount of wall time = 154.891467 + 0: The maximum resident set size (KB) = 1601364 -Test 080 control_p8_faster PASS +Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control_faster -Checking test 081 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control_faster +Checking test 082 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 274.989460 - 0: The maximum resident set size (KB) = 874264 + 0: The total amount of wall time = 272.406628 + 0: The maximum resident set size (KB) = 864248 -Test 081 regional_control_faster PASS +Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 833.530867 - 0: The maximum resident set size (KB) = 1026512 + 0: The total amount of wall time = 821.994184 + 0: The maximum resident set size (KB) = 1059200 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 477.171558 - 0: The maximum resident set size (KB) = 931416 + 0: The total amount of wall time = 460.856688 + 0: The maximum resident set size (KB) = 970148 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_conus13km_hrrr_warm_debug -Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm_debug +Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 741.686105 - 0: The maximum resident set size (KB) = 970128 + 0: The total amount of wall time = 739.820113 + 0: The maximum resident set size (KB) = 968308 -Test 084 rrfs_conus13km_hrrr_warm_debug PASS +Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid_debug -Checking test 085 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid_debug +Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3416,359 +3428,359 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 162.758102 - 0: The maximum resident set size (KB) = 797120 + 0: The total amount of wall time = 143.204109 + 0: The maximum resident set size (KB) = 791552 -Test 085 control_CubedSphereGrid_debug PASS +Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wrtGauss_netcdf_parallel_debug -Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wrtGauss_netcdf_parallel_debug +Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.597132 - 0: The maximum resident set size (KB) = 794888 + 0: The total amount of wall time = 142.253207 + 0: The maximum resident set size (KB) = 790616 -Test 086 control_wrtGauss_netcdf_parallel_debug PASS +Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy_debug -Checking test 087 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy_debug +Checking test 088 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.395696 - 0: The maximum resident set size (KB) = 801584 + 0: The total amount of wall time = 163.813624 + 0: The maximum resident set size (KB) = 794120 -Test 087 control_stochy_debug PASS +Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_lndp_debug -Checking test 088 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_lndp_debug +Checking test 089 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.056866 - 0: The maximum resident set size (KB) = 800752 + 0: The total amount of wall time = 145.282420 + 0: The maximum resident set size (KB) = 792156 -Test 088 control_lndp_debug PASS +Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmg_debug -Checking test 089 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmg_debug +Checking test 090 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.555325 - 0: The maximum resident set size (KB) = 840704 + 0: The total amount of wall time = 226.518164 + 0: The maximum resident set size (KB) = 840808 -Test 089 control_csawmg_debug PASS +Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmgt_debug -Checking test 090 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmgt_debug +Checking test 091 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.905969 - 0: The maximum resident set size (KB) = 842276 + 0: The total amount of wall time = 219.479731 + 0: The maximum resident set size (KB) = 840744 -Test 090 control_csawmgt_debug PASS +Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_ras_debug -Checking test 091 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_ras_debug +Checking test 092 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.334503 - 0: The maximum resident set size (KB) = 814028 + 0: The total amount of wall time = 146.737321 + 0: The maximum resident set size (KB) = 801680 -Test 091 control_ras_debug PASS +Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_diag_debug -Checking test 092 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_diag_debug +Checking test 093 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.608430 - 0: The maximum resident set size (KB) = 854032 + 0: The total amount of wall time = 149.044647 + 0: The maximum resident set size (KB) = 850312 -Test 092 control_diag_debug PASS +Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_debug_p8 -Checking test 093 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_debug_p8 +Checking test 094 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.670061 - 0: The maximum resident set size (KB) = 1620932 + 0: The total amount of wall time = 164.116211 + 0: The maximum resident set size (KB) = 1618996 -Test 093 control_debug_p8 PASS +Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_debug -Checking test 094 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_debug +Checking test 095 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 994.349237 - 0: The maximum resident set size (KB) = 889008 + 0: The total amount of wall time = 986.455785 + 0: The maximum resident set size (KB) = 871456 -Test 094 regional_debug PASS +Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_debug -Checking test 095 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_debug +Checking test 096 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.634088 - 0: The maximum resident set size (KB) = 1180108 + 0: The total amount of wall time = 267.589607 + 0: The maximum resident set size (KB) = 1164688 -Test 095 rap_control_debug PASS +Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_debug -Checking test 096 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_debug +Checking test 097 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.020402 - 0: The maximum resident set size (KB) = 1174880 + 0: The total amount of wall time = 260.431773 + 0: The maximum resident set size (KB) = 1167276 -Test 096 hrrr_control_debug PASS +Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_unified_drag_suite_debug -Checking test 097 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_unified_drag_suite_debug +Checking test 098 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.135093 - 0: The maximum resident set size (KB) = 1181140 + 0: The total amount of wall time = 265.309892 + 0: The maximum resident set size (KB) = 1171848 -Test 097 rap_unified_drag_suite_debug PASS +Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_diag_debug -Checking test 098 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_diag_debug +Checking test 099 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.984771 - 0: The maximum resident set size (KB) = 1264084 + 0: The total amount of wall time = 278.422860 + 0: The maximum resident set size (KB) = 1255604 -Test 098 rap_diag_debug PASS +Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_cires_ugwp_debug -Checking test 099 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_cires_ugwp_debug +Checking test 100 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.590303 - 0: The maximum resident set size (KB) = 1176888 + 0: The total amount of wall time = 275.072172 + 0: The maximum resident set size (KB) = 1171984 -Test 099 rap_cires_ugwp_debug PASS +Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_unified_ugwp_debug -Checking test 100 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_unified_ugwp_debug +Checking test 101 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.081037 - 0: The maximum resident set size (KB) = 1178304 + 0: The total amount of wall time = 273.554568 + 0: The maximum resident set size (KB) = 1165424 -Test 100 rap_unified_ugwp_debug PASS +Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_lndp_debug -Checking test 101 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_lndp_debug +Checking test 102 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.523651 - 0: The maximum resident set size (KB) = 1177260 + 0: The total amount of wall time = 265.551271 + 0: The maximum resident set size (KB) = 1171276 -Test 101 rap_lndp_debug PASS +Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_flake_debug -Checking test 102 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_flake_debug +Checking test 103 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.179584 - 0: The maximum resident set size (KB) = 1176924 + 0: The total amount of wall time = 266.414916 + 0: The maximum resident set size (KB) = 1168808 -Test 102 rap_flake_debug PASS +Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_progcld_thompson_debug -Checking test 103 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_progcld_thompson_debug +Checking test 104 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.436971 - 0: The maximum resident set size (KB) = 1175956 + 0: The total amount of wall time = 268.830465 + 0: The maximum resident set size (KB) = 1174740 -Test 103 rap_progcld_thompson_debug PASS +Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_noah_debug -Checking test 104 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_noah_debug +Checking test 105 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.299155 - 0: The maximum resident set size (KB) = 1178468 + 0: The total amount of wall time = 262.962199 + 0: The maximum resident set size (KB) = 1169180 -Test 104 rap_noah_debug PASS +Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_debug -Checking test 105 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_debug +Checking test 106 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.081274 - 0: The maximum resident set size (KB) = 1174088 + 0: The total amount of wall time = 267.749624 + 0: The maximum resident set size (KB) = 1170096 -Test 105 rap_sfcdiff_debug PASS +Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.569824 - 0: The maximum resident set size (KB) = 1179252 + 0: The total amount of wall time = 444.290759 + 0: The maximum resident set size (KB) = 1169176 -Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1beta_debug -Checking test 107 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1beta_debug +Checking test 108 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.348634 - 0: The maximum resident set size (KB) = 1174844 + 0: The total amount of wall time = 269.227047 + 0: The maximum resident set size (KB) = 1133352 -Test 107 rrfs_v1beta_debug PASS +Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wam_debug -Checking test 108 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wam_debug +Checking test 109 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.293886 - 0: The maximum resident set size (KB) = 524360 + 0: The total amount of wall time = 277.349899 + 0: The maximum resident set size (KB) = 526476 -Test 108 control_wam_debug PASS +Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 215.405384 - 0: The maximum resident set size (KB) = 1073344 + 0: The total amount of wall time = 218.847425 + 0: The maximum resident set size (KB) = 1081252 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn32_phy32 -Checking test 110 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn32_phy32 +Checking test 111 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3808,21 +3820,21 @@ Checking test 110 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 = 384.083703 - 0: The maximum resident set size (KB) = 1002552 + 0: The total amount of wall time = 379.361711 + 0: The maximum resident set size (KB) = 1003192 -Test 110 rap_control_dyn32_phy32 PASS +Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_dyn32_phy32 -Checking test 111 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_dyn32_phy32 +Checking test 112 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3862,21 +3874,21 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.838688 - 0: The maximum resident set size (KB) = 952292 + 0: The total amount of wall time = 198.460490 + 0: The maximum resident set size (KB) = 963940 -Test 111 hrrr_control_dyn32_phy32 PASS +Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_2threads_dyn32_phy32 -Checking test 112 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_2threads_dyn32_phy32 +Checking test 113 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3916,21 +3928,21 @@ Checking test 112 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 = 366.197872 - 0: The maximum resident set size (KB) = 1023656 + 0: The total amount of wall time = 362.585163 + 0: The maximum resident set size (KB) = 1019692 -Test 112 rap_2threads_dyn32_phy32 PASS +Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_2threads_dyn32_phy32 -Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_2threads_dyn32_phy32 +Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3970,21 +3982,21 @@ Checking test 113 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 = 189.974474 - 0: The maximum resident set size (KB) = 1003196 + 0: The total amount of wall time = 187.309509 + 0: The maximum resident set size (KB) = 993516 -Test 113 hrrr_control_2threads_dyn32_phy32 PASS +Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_decomp_dyn32_phy32 -Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_decomp_dyn32_phy32 +Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4024,17 +4036,17 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.226724 - 0: The maximum resident set size (KB) = 900448 + 0: The total amount of wall time = 207.093639 + 0: The maximum resident set size (KB) = 894036 -Test 114 hrrr_control_decomp_dyn32_phy32 PASS +Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_restart_dyn32_phy32 -Checking test 115 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_restart_dyn32_phy32 +Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -4070,17 +4082,17 @@ Checking test 115 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.984755 - 0: The maximum resident set size (KB) = 941540 + 0: The total amount of wall time = 284.078256 + 0: The maximum resident set size (KB) = 947932 -Test 115 rap_restart_dyn32_phy32 PASS +Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_restart_dyn32_phy32 -Checking test 116 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_restart_dyn32_phy32 +Checking test 117 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -4116,21 +4128,21 @@ Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 104.383676 - 0: The maximum resident set size (KB) = 863784 + 0: The total amount of wall time = 102.624644 + 0: The maximum resident set size (KB) = 859148 -Test 116 hrrr_control_restart_dyn32_phy32 PASS +Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn64_phy32 -Checking test 117 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn64_phy32 +Checking test 118 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4170,440 +4182,440 @@ Checking test 117 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.978921 - 0: The maximum resident set size (KB) = 957304 + 0: The total amount of wall time = 243.546284 + 0: The maximum resident set size (KB) = 964296 -Test 117 rap_control_dyn64_phy32 PASS +Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_debug_dyn32_phy32 -Checking test 118 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_debug_dyn32_phy32 +Checking test 119 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.839032 - 0: The maximum resident set size (KB) = 1062532 + 0: The total amount of wall time = 263.075093 + 0: The maximum resident set size (KB) = 1055272 -Test 118 rap_control_debug_dyn32_phy32 PASS +Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_debug_dyn32_phy32 -Checking test 119 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_debug_dyn32_phy32 +Checking test 120 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.415819 - 0: The maximum resident set size (KB) = 1058936 + 0: The total amount of wall time = 269.017930 + 0: The maximum resident set size (KB) = 1051824 -Test 119 hrrr_control_debug_dyn32_phy32 PASS +Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn64_phy32_debug -Checking test 120 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn64_phy32_debug +Checking test 121 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.314404 - 0: The maximum resident set size (KB) = 1097908 + 0: The total amount of wall time = 273.954021 + 0: The maximum resident set size (KB) = 1103880 -Test 120 rap_control_dyn64_phy32_debug PASS +Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm -Checking test 121 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm +Checking test 122 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 245.050328 - 0: The maximum resident set size (KB) = 1049456 + 0: The total amount of wall time = 234.020257 + 0: The maximum resident set size (KB) = 1053560 -Test 121 hafs_regional_atm PASS +Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_thompson_gfdlsf -Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_thompson_gfdlsf +Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 360.087926 - 0: The maximum resident set size (KB) = 1417976 + 0: The total amount of wall time = 311.090182 + 0: The maximum resident set size (KB) = 1424756 -Test 122 hafs_regional_atm_thompson_gfdlsf PASS +Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_ocn -Checking test 123 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_ocn +Checking test 124 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 387.516127 - 0: The maximum resident set size (KB) = 1218760 + 0: The total amount of wall time = 379.848462 + 0: The maximum resident set size (KB) = 1225372 -Test 123 hafs_regional_atm_ocn PASS +Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_wav -Checking test 124 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_wav +Checking test 125 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 749.223680 - 0: The maximum resident set size (KB) = 1254416 + 0: The total amount of wall time = 739.600868 + 0: The maximum resident set size (KB) = 1246776 -Test 124 hafs_regional_atm_wav PASS +Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_ocn_wav -Checking test 125 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_ocn_wav +Checking test 126 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 859.817976 - 0: The maximum resident set size (KB) = 1237348 + 0: The total amount of wall time = 839.181157 + 0: The maximum resident set size (KB) = 1266540 -Test 125 hafs_regional_atm_ocn_wav PASS +Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_1nest_atm -Checking test 126 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_1nest_atm +Checking test 127 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 323.623553 - 0: The maximum resident set size (KB) = 507924 + 0: The total amount of wall time = 315.632421 + 0: The maximum resident set size (KB) = 504952 -Test 126 hafs_regional_1nest_atm PASS +Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_telescopic_2nests_atm -Checking test 127 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_telescopic_2nests_atm +Checking test 128 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 367.380480 - 0: The maximum resident set size (KB) = 512896 + 0: The total amount of wall time = 364.847033 + 0: The maximum resident set size (KB) = 515448 -Test 127 hafs_regional_telescopic_2nests_atm PASS +Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_1nest_atm -Checking test 128 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_1nest_atm +Checking test 129 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 149.388471 - 0: The maximum resident set size (KB) = 352112 + 0: The total amount of wall time = 145.727864 + 0: The maximum resident set size (KB) = 351884 -Test 128 hafs_global_1nest_atm PASS +Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_multiple_4nests_atm -Checking test 129 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_multiple_4nests_atm +Checking test 130 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 416.314782 - 0: The maximum resident set size (KB) = 423756 + 0: The total amount of wall time = 409.595024 + 0: The maximum resident set size (KB) = 456200 -Test 129 hafs_global_multiple_4nests_atm PASS +Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_specified_moving_1nest_atm -Checking test 130 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_specified_moving_1nest_atm +Checking test 131 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 203.528711 - 0: The maximum resident set size (KB) = 521136 + 0: The total amount of wall time = 201.786385 + 0: The maximum resident set size (KB) = 523868 -Test 130 hafs_regional_specified_moving_1nest_atm PASS +Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm -Checking test 131 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm +Checking test 132 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 195.415855 - 0: The maximum resident set size (KB) = 520288 + 0: The total amount of wall time = 191.109034 + 0: The maximum resident set size (KB) = 524228 -Test 131 hafs_regional_storm_following_1nest_atm PASS +Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 229.068345 - 0: The maximum resident set size (KB) = 564968 + 0: The total amount of wall time = 222.273994 + 0: The maximum resident set size (KB) = 573416 -Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_storm_following_1nest_atm -Checking test 133 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_storm_following_1nest_atm +Checking test 134 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 61.201767 - 0: The maximum resident set size (KB) = 371876 + 0: The total amount of wall time = 57.767744 + 0: The maximum resident set size (KB) = 372444 -Test 133 hafs_global_storm_following_1nest_atm PASS +Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 756.593891 - 0: The maximum resident set size (KB) = 593236 + 0: The total amount of wall time = 714.794719 + 0: The maximum resident set size (KB) = 562860 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 484.905920 - 0: The maximum resident set size (KB) = 624796 + 0: The total amount of wall time = 480.341435 + 0: The maximum resident set size (KB) = 623160 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_docn +Checking test 137 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 367.234679 - 0: The maximum resident set size (KB) = 1224216 + 0: The total amount of wall time = 360.860735 + 0: The maximum resident set size (KB) = 1231332 -Test 136 hafs_regional_docn PASS +Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_docn_oisst +Checking test 138 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 371.263886 - 0: The maximum resident set size (KB) = 1207840 + 0: The total amount of wall time = 360.556746 + 0: The maximum resident set size (KB) = 1220104 -Test 137 hafs_regional_docn_oisst PASS +Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_datm_cdeps +Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.079029 - 0: The maximum resident set size (KB) = 1040516 + 0: The total amount of wall time = 937.065823 + 0: The maximum resident set size (KB) = 1039896 -Test 138 hafs_regional_datm_cdeps PASS +Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_cfsr +Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.497153 - 0: The maximum resident set size (KB) = 1056968 + 0: The total amount of wall time = 155.828652 + 0: The maximum resident set size (KB) = 1058732 -Test 139 datm_cdeps_control_cfsr PASS +Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_restart_cfsr +Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.396105 - 0: The maximum resident set size (KB) = 1040204 + 0: The total amount of wall time = 92.988520 + 0: The maximum resident set size (KB) = 1009616 -Test 140 datm_cdeps_restart_cfsr PASS +Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_gefs +Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.189637 - 0: The maximum resident set size (KB) = 964436 + 0: The total amount of wall time = 150.642254 + 0: The maximum resident set size (KB) = 973796 -Test 141 datm_cdeps_control_gefs PASS +Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_iau_gefs +Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.421379 - 0: The maximum resident set size (KB) = 962720 + 0: The total amount of wall time = 152.077394 + 0: The maximum resident set size (KB) = 959580 -Test 142 datm_cdeps_iau_gefs PASS +Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_stochy_gefs +Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.713391 - 0: The maximum resident set size (KB) = 967716 + 0: The total amount of wall time = 150.825825 + 0: The maximum resident set size (KB) = 961924 -Test 143 datm_cdeps_stochy_gefs PASS +Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_ciceC_cfsr +Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.233604 - 0: The maximum resident set size (KB) = 1059768 + 0: The total amount of wall time = 150.855002 + 0: The maximum resident set size (KB) = 1068208 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_bulk_cfsr +Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.868444 - 0: The maximum resident set size (KB) = 1079316 + 0: The total amount of wall time = 153.787135 + 0: The maximum resident set size (KB) = 1072996 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_bulk_gefs +Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.089828 - 0: The maximum resident set size (KB) = 961584 + 0: The total amount of wall time = 147.080648 + 0: The maximum resident set size (KB) = 963708 -Test 146 datm_cdeps_bulk_gefs PASS +Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_mx025_cfsr +Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4611,15 +4623,15 @@ Checking test 147 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 = 410.742645 - 0: The maximum resident set size (KB) = 878056 + 0: The total amount of wall time = 433.425326 + 0: The maximum resident set size (KB) = 880828 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_mx025_gefs +Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4627,78 +4639,78 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 420.849556 - 0: The maximum resident set size (KB) = 927400 + 0: The total amount of wall time = 401.532657 + 0: The maximum resident set size (KB) = 932840 -Test 148 datm_cdeps_mx025_gefs PASS +Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_multiple_files_cfsr +Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.593044 - 0: The maximum resident set size (KB) = 1061288 + 0: The total amount of wall time = 153.049770 + 0: The maximum resident set size (KB) = 1058680 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_3072x1536_cfsr +Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.639366 - 0: The maximum resident set size (KB) = 2374240 + 0: The total amount of wall time = 207.844945 + 0: The maximum resident set size (KB) = 2368988 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_gfs +Checking test 152 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.833677 - 0: The maximum resident set size (KB) = 2359140 + 0: The total amount of wall time = 229.328037 + 0: The maximum resident set size (KB) = 2351428 -Test 151 datm_cdeps_gfs PASS +Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_debug_cfsr +Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 448.094237 - 0: The maximum resident set size (KB) = 1015312 + 0: The total amount of wall time = 356.208842 + 0: The maximum resident set size (KB) = 978128 -Test 152 datm_cdeps_debug_cfsr PASS +Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_cfsr_faster -Checking test 153 datm_cdeps_control_cfsr_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_cfsr_faster +Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.197516 - 0: The maximum resident set size (KB) = 1067300 + 0: The total amount of wall time = 151.529818 + 0: The maximum resident set size (KB) = 1065396 -Test 153 datm_cdeps_control_cfsr_faster PASS +Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_lnd_gswp3 -Checking test 154 datm_cdeps_lnd_gswp3 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_lnd_gswp3 +Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4706,15 +4718,15 @@ Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.673630 - 0: The maximum resident set size (KB) = 263500 + 0: The total amount of wall time = 6.620096 + 0: The maximum resident set size (KB) = 255928 -Test 154 datm_cdeps_lnd_gswp3 PASS +Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_lnd_gswp3_rst -Checking test 155 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_lnd_gswp3_rst +Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4722,15 +4734,15 @@ Checking test 155 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 = 17.146421 - 0: The maximum resident set size (KB) = 262416 + 0: The total amount of wall time = 11.920452 + 0: The maximum resident set size (KB) = 249772 -Test 155 datm_cdeps_lnd_gswp3_rst PASS +Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_atmlnd_sbs -Checking test 156 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_atmlnd_sbs +Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4814,19 +4826,19 @@ Checking test 156 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 = 209.793724 - 0: The maximum resident set size (KB) = 1607328 + 0: The total amount of wall time = 203.076999 + 0: The maximum resident set size (KB) = 1606740 -Test 156 control_p8_atmlnd_sbs PASS +Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_atmwav -Checking test 157 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_atmwav +Checking test 158 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4865,19 +4877,19 @@ Checking test 157 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 = 90.218628 - 0: The maximum resident set size (KB) = 664340 + 0: The total amount of wall time = 86.452167 + 0: The maximum resident set size (KB) = 661388 -Test 157 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8 -Checking test 158 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8 +Checking test 159 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4916,19 +4928,19 @@ Checking test 158 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 = 232.201993 - 0: The maximum resident set size (KB) = 2977620 + 0: The total amount of wall time = 227.434443 + 0: The maximum resident set size (KB) = 2977872 -Test 158 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8_rad -Checking test 159 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4967,19 +4979,19 @@ Checking test 159 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 = 286.673313 - 0: The maximum resident set size (KB) = 3047312 + 0: The total amount of wall time = 281.562912 + 0: The maximum resident set size (KB) = 3047684 -Test 159 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8_rad_micro -Checking test 160 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -5018,21 +5030,21 @@ Checking test 160 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.697855 - 0: The maximum resident set size (KB) = 3055628 + 0: The total amount of wall time = 282.961384 + 0: The maximum resident set size (KB) = 3048064 -Test 160 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq -Checking test 161 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq +Checking test 162 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5041,19 +5053,19 @@ Checking test 161 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 = 667.283323 - 0: The maximum resident set size (KB) = 1468916 + 0: The total amount of wall time = 628.951995 + 0: The maximum resident set size (KB) = 1472272 -Test 161 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq_debug -Checking test 162 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq_debug +Checking test 163 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -5062,21 +5074,21 @@ Checking test 162 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 = 1236.979511 - 0: The maximum resident set size (KB) = 1402492 + 0: The total amount of wall time = 1190.514290 + 0: The maximum resident set size (KB) = 1213444 -Test 162 regional_atmaq_debug PASS +Test 163 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq_faster -Checking test 163 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq_faster +Checking test 164 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5085,12 +5097,94 @@ Checking test 163 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 = 583.905228 - 0: The maximum resident set size (KB) = 1473108 + 0: The total amount of wall time = 548.981367 + 0: The maximum resident set size (KB) = 1463908 + +Test 164 regional_atmaq_faster PASS + +FAILED TESTS: +Test cpld_control_gfsv17 002 failed in check_result failed +Test cpld_control_gfsv17 002 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 5 21:55:44 UTC 2023 +Elapsed time: 01h:12m:45s. Have a nice day! +Thu Apr 6 00:51:34 UTC 2023 +Start Regression test + +Compile 001 elapsed time 617 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-20230405/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_20278/cpld_control_gfsv17 +Checking test 001 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 223.004061 + 0: The maximum resident set size (KB) = 1729940 -Test 163 regional_atmaq_faster PASS +Test 001 cpld_control_gfsv17 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 22:11:47 UTC 2023 -Elapsed time: 01h:23m:03s. Have a nice day! +Thu Apr 6 01:13:53 UTC 2023 +Elapsed time: 00h:22m:19s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index ffe4cc711c..287df0eb29 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 20:48:38 UTC 2023 +Thu Apr 6 01:52:16 UTC 2023 Start Regression test -Compile 001 elapsed time 1962 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 1890 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 1858 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 361 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 287 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1521 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 1558 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3371 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 1688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1616 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1529 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 1446 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 2056 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 334 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 285 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 1460 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 1463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 271 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 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1731 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 311 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 2134 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 1658 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 325 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1514 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 1741 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1500 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1447 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1900 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8_mixedmode +Compile 001 elapsed time 2023 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 1992 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 1789 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 363 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 339 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1560 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 1603 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3439 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 1717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1671 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1517 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 1432 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 2114 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 335 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 297 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 1496 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 1503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 249 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 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1757 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 452 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 2321 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 1435 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 375 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 224 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 353 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 180 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1665 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 1698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1528 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 331 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1928 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 = 574.162889 - 0: The maximum resident set size (KB) = 1746864 + 0: The total amount of wall time = 704.247296 + 0: The maximum resident set size (KB) = 1736140 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 = 404.158832 - 0: The maximum resident set size (KB) = 1645664 + 0: The total amount of wall time = 517.007447 + 0: The maximum resident set size (KB) = 1657820 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 = 635.644243 - 0: The maximum resident set size (KB) = 1724488 + 0: The total amount of wall time = 731.765590 + 0: The maximum resident set size (KB) = 1784352 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 = 338.788283 - 0: The maximum resident set size (KB) = 1506612 + 0: The total amount of wall time = 433.381639 + 0: The maximum resident set size (KB) = 1482320 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 611.586884 - 0: The maximum resident set size (KB) = 1791980 + 0: The total amount of wall time = 789.950692 + 0: The maximum resident set size (KB) = 1790336 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.666269 - 0: The maximum resident set size (KB) = 1515644 + 0: The total amount of wall time = 503.561430 + 0: The maximum resident set size (KB) = 1512208 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 653.065182 - 0: The maximum resident set size (KB) = 1973296 + 0: The total amount of wall time = 782.655697 + 0: The maximum resident set size (KB) = 1987600 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 595.313116 - 0: The maximum resident set size (KB) = 1781856 + 0: The total amount of wall time = 725.951507 + 0: The maximum resident set size (KB) = 1791312 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 546.834527 - 0: The maximum resident set size (KB) = 1725672 + 0: The total amount of wall time = 697.728215 + 0: The maximum resident set size (KB) = 1729600 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 580.544670 - 0: The maximum resident set size (KB) = 1763840 + 0: The total amount of wall time = 689.715847 + 0: The maximum resident set size (KB) = 1786080 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -759,14 +759,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 = 414.369052 - 0: The maximum resident set size (KB) = 1621908 + 0: The total amount of wall time = 553.694390 + 0: The maximum resident set size (KB) = 1634256 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -828,14 +828,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 = 423.946266 - 0: The maximum resident set size (KB) = 1673232 + 0: The total amount of wall time = 529.147414 + 0: The maximum resident set size (KB) = 1676532 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -888,14 +888,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 = 921.382038 - 0: The maximum resident set size (KB) = 1819440 + 0: The total amount of wall time = 782.045856 + 0: The maximum resident set size (KB) = 1813688 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -947,14 +947,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 = 573.613374 - 0: The maximum resident set size (KB) = 1645016 + 0: The total amount of wall time = 525.151304 + 0: The maximum resident set size (KB) = 1648320 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1016,14 +1016,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 = 444.309036 - 0: The maximum resident set size (KB) = 1673852 + 0: The total amount of wall time = 660.894756 + 0: The maximum resident set size (KB) = 1687288 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1073,14 +1073,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 = 816.714588 - 0: The maximum resident set size (KB) = 2768996 + 0: The total amount of wall time = 830.108797 + 0: The maximum resident set size (KB) = 2767200 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1130,14 +1130,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 = 221.669966 - 0: The maximum resident set size (KB) = 2761680 + 0: The total amount of wall time = 286.617151 + 0: The maximum resident set size (KB) = 2765164 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1187,14 +1187,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 = 123.264805 - 0: The maximum resident set size (KB) = 2204848 + 0: The total amount of wall time = 139.966378 + 0: The maximum resident set size (KB) = 2217776 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 515.744934 - 0: The maximum resident set size (KB) = 1773752 + 0: The total amount of wall time = 863.974021 + 0: The maximum resident set size (KB) = 1796768 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1293,69 +1293,69 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 222.155365 - 0: The maximum resident set size (KB) = 573708 + 0: The total amount of wall time = 275.413466 + 0: The maximum resident set size (KB) = 574480 Test 020 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 208.671835 - 0: The maximum resident set size (KB) = 577996 + 0: The total amount of wall time = 349.310658 + 0: The maximum resident set size (KB) = 575032 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_latlon Checking test 022 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 230.834023 - 0: The maximum resident set size (KB) = 578604 + 0: The total amount of wall time = 310.552200 + 0: The maximum resident set size (KB) = 577268 Test 022 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.690218 - 0: The maximum resident set size (KB) = 571836 + 0: The total amount of wall time = 307.373656 + 0: The maximum resident set size (KB) = 579760 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c48 Checking test 024 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1389,55 +1389,55 @@ 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 = 601.495916 -0: The maximum resident set size (KB) = 794828 +0: The total amount of wall time = 614.756796 +0: The maximum resident set size (KB) = 801792 Test 024 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c192 Checking test 025 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 804.789245 - 0: The maximum resident set size (KB) = 696216 + 0: The total amount of wall time = 911.738880 + 0: The maximum resident set size (KB) = 688644 Test 025 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c384 Checking test 026 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1152.826234 - 0: The maximum resident set size (KB) = 1059800 + 0: The total amount of wall time = 1605.655012 + 0: The maximum resident set size (KB) = 1052708 Test 026 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c384gdas Checking test 027 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1475,71 +1475,71 @@ 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 = 1034.138797 - 0: The maximum resident set size (KB) = 1202304 + 0: The total amount of wall time = 1431.112996 + 0: The maximum resident set size (KB) = 1198364 Test 027 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy Checking test 028 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 152.004913 - 0: The maximum resident set size (KB) = 575080 + 0: The total amount of wall time = 154.862187 + 0: The maximum resident set size (KB) = 579912 Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy_restart Checking test 029 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.015646 - 0: The maximum resident set size (KB) = 394312 + 0: The total amount of wall time = 166.936801 + 0: The maximum resident set size (KB) = 405576 Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_lndp Checking test 030 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.052399 - 0: The maximum resident set size (KB) = 577868 + 0: The total amount of wall time = 199.550056 + 0: The maximum resident set size (KB) = 576408 Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_iovr4 Checking test 031 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1547,21 +1547,21 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 228.610344 - 0: The maximum resident set size (KB) = 573720 + 0: The total amount of wall time = 367.344764 + 0: The maximum resident set size (KB) = 571368 Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_iovr5 Checking test 032 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1569,21 +1569,21 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 241.888196 - 0: The maximum resident set size (KB) = 580768 + 0: The total amount of wall time = 380.177668 + 0: The maximum resident set size (KB) = 578988 Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8 Checking test 033 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1623,17 +1623,17 @@ 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 = 268.400825 - 0: The maximum resident set size (KB) = 1551556 + 0: The total amount of wall time = 430.142897 + 0: The maximum resident set size (KB) = 1535608 Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_restart_p8 Checking test 034 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1669,21 +1669,21 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.548169 - 0: The maximum resident set size (KB) = 785188 + 0: The total amount of wall time = 238.828657 + 0: The maximum resident set size (KB) = 773980 Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_qr_p8 Checking test 035 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1723,17 +1723,17 @@ Checking test 035 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 263.485795 - 0: The maximum resident set size (KB) = 1548696 + 0: The total amount of wall time = 467.073061 + 0: The maximum resident set size (KB) = 1548924 Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1769,19 +1769,19 @@ Checking test 036 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.068476 - 0: The maximum resident set size (KB) = 783892 + 0: The total amount of wall time = 199.630294 + 0: The maximum resident set size (KB) = 783616 Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_decomp_p8 Checking test 037 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1819,19 +1819,19 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.638294 - 0: The maximum resident set size (KB) = 1537976 + 0: The total amount of wall time = 375.865912 + 0: The maximum resident set size (KB) = 1527684 Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_2threads_p8 Checking test 038 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1869,23 +1869,23 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.032374 - 0: The maximum resident set size (KB) = 1631768 + 0: The total amount of wall time = 368.700223 + 0: The maximum resident set size (KB) = 1627496 Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_lndp Checking test 039 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1895,21 +1895,21 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 504.265844 - 0: The maximum resident set size (KB) = 1534952 + 0: The total amount of wall time = 795.859919 + 0: The maximum resident set size (KB) = 1537692 Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1949,21 +1949,21 @@ 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 = 330.832097 - 0: The maximum resident set size (KB) = 1604076 + 0: The total amount of wall time = 525.418084 + 0: The maximum resident set size (KB) = 1602552 Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_mynn Checking test 041 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2003,21 +2003,21 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.523031 - 0: The maximum resident set size (KB) = 1538440 + 0: The total amount of wall time = 405.453424 + 0: The maximum resident set size (KB) = 1557004 Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/merra2_thompson Checking test 042 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2057,186 +2057,153 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.459458 - 0: The maximum resident set size (KB) = 1552508 + 0: The total amount of wall time = 486.005329 + 0: The maximum resident set size (KB) = 1545456 Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control Checking test 043 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 452.126340 - 0: The maximum resident set size (KB) = 784276 + 0: The total amount of wall time = 724.721363 + 0: The maximum resident set size (KB) = 790332 Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_restart Checking test 044 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.562522 - 0: The maximum resident set size (KB) = 779728 + 0: The total amount of wall time = 308.749726 + 0: The maximum resident set size (KB) = 782452 Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control_qr Checking test 045 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 507.170656 - 0: The maximum resident set size (KB) = 786604 + 0: The total amount of wall time = 769.628703 + 0: The maximum resident set size (KB) = 786988 Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_restart_qr Checking test 046 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.135531 - 0: The maximum resident set size (KB) = 784756 + 0: The total amount of wall time = 349.092000 + 0: The maximum resident set size (KB) = 779656 Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_decomp Checking test 047 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 559.185407 - 0: The maximum resident set size (KB) = 785072 + 0: The total amount of wall time = 804.782981 + 0: The maximum resident set size (KB) = 791116 Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_2threads Checking test 048 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 351.931653 - 0: The maximum resident set size (KB) = 771000 + 0: The total amount of wall time = 566.974774 + 0: The maximum resident set size (KB) = 775280 Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_noquilt -Checking test 049 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 533.411360 - 0: The maximum resident set size (KB) = 772152 - -Test 049 regional_noquilt PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_netcdf_parallel -Checking test 050 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_netcdf_parallel +Checking test 049 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 480.102099 - 0: The maximum resident set size (KB) = 784920 + 0: The total amount of wall time = 770.401993 + 0: The maximum resident set size (KB) = 781112 -Test 050 regional_netcdf_parallel PASS +Test 049 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_2dwrtdecomp -Checking test 051 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 538.204759 - 0: The maximum resident set size (KB) = 790372 - -Test 051 regional_2dwrtdecomp PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_wofs -Checking test 052 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_2dwrtdecomp +Checking test 050 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 648.503180 - 0: The maximum resident set size (KB) = 522496 + 0: The total amount of wall time = 843.394705 + 0: The maximum resident set size (KB) = 787904 -Test 052 regional_wofs PASS +Test 050 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control -Checking test 053 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control +Checking test 051 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2276,39 +2243,39 @@ Checking test 053 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 = 754.487613 - 0: The maximum resident set size (KB) = 946380 + 0: The total amount of wall time = 855.878209 + 0: The maximum resident set size (KB) = 949148 -Test 053 rap_control PASS +Test 051 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_spp_sppt_shum_skeb -Checking test 054 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 432.100085 - 0: The maximum resident set size (KB) = 1093904 + 0: The total amount of wall time = 622.654113 + 0: The maximum resident set size (KB) = 1090100 -Test 054 regional_spp_sppt_shum_skeb PASS +Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_decomp -Checking test 055 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_decomp +Checking test 053 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2348,21 +2315,21 @@ Checking test 055 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 = 801.417395 - 0: The maximum resident set size (KB) = 946176 + 0: The total amount of wall time = 876.988948 + 0: The maximum resident set size (KB) = 952348 -Test 055 rap_decomp PASS +Test 053 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_2threads -Checking test 056 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_2threads +Checking test 054 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2402,17 +2369,17 @@ Checking test 056 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 = 736.912088 - 0: The maximum resident set size (KB) = 1013064 + 0: The total amount of wall time = 803.095183 + 0: The maximum resident set size (KB) = 1021660 -Test 056 rap_2threads PASS +Test 054 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_restart -Checking test 057 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_restart +Checking test 055 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2448,21 +2415,21 @@ Checking test 057 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 = 376.060571 - 0: The maximum resident set size (KB) = 837684 + 0: The total amount of wall time = 559.829078 + 0: The maximum resident set size (KB) = 838140 -Test 057 rap_restart PASS +Test 055 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff -Checking test 058 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff +Checking test 056 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2502,21 +2469,21 @@ Checking test 058 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 = 797.644927 - 0: The maximum resident set size (KB) = 961368 + 0: The total amount of wall time = 790.774249 + 0: The maximum resident set size (KB) = 950888 -Test 058 rap_sfcdiff PASS +Test 056 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_decomp -Checking test 059 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_decomp +Checking test 057 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2556,17 +2523,17 @@ Checking test 059 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 = 819.089209 - 0: The maximum resident set size (KB) = 949216 + 0: The total amount of wall time = 852.487035 + 0: The maximum resident set size (KB) = 942124 -Test 059 rap_sfcdiff_decomp PASS +Test 057 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_restart -Checking test 060 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_restart +Checking test 058 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2602,21 +2569,21 @@ Checking test 060 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 = 577.777706 - 0: The maximum resident set size (KB) = 839940 + 0: The total amount of wall time = 687.069775 + 0: The maximum resident set size (KB) = 835436 -Test 060 rap_sfcdiff_restart PASS +Test 058 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control -Checking test 061 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control +Checking test 059 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2656,21 +2623,21 @@ Checking test 061 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 = 734.319611 - 0: The maximum resident set size (KB) = 945516 + 0: The total amount of wall time = 818.369929 + 0: The maximum resident set size (KB) = 953460 -Test 061 hrrr_control PASS +Test 059 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_decomp -Checking test 062 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_decomp +Checking test 060 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2710,21 +2677,21 @@ Checking test 062 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 = 715.874807 - 0: The maximum resident set size (KB) = 949024 + 0: The total amount of wall time = 887.873985 + 0: The maximum resident set size (KB) = 942836 -Test 062 hrrr_control_decomp PASS +Test 060 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_2threads -Checking test 063 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2764,17 +2731,17 @@ Checking test 063 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 = 701.760118 - 0: The maximum resident set size (KB) = 1018056 + 0: The total amount of wall time = 808.808904 + 0: The maximum resident set size (KB) = 1013460 -Test 063 hrrr_control_2threads PASS +Test 061 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_restart -Checking test 064 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_restart +Checking test 062 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2810,21 +2777,21 @@ Checking test 064 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 = 485.620894 - 0: The maximum resident set size (KB) = 837012 + 0: The total amount of wall time = 682.913494 + 0: The maximum resident set size (KB) = 836788 -Test 064 hrrr_control_restart PASS +Test 062 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1beta -Checking test 065 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2864,21 +2831,21 @@ Checking test 065 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 = 760.314881 - 0: The maximum resident set size (KB) = 948708 + 0: The total amount of wall time = 882.282755 + 0: The maximum resident set size (KB) = 954708 -Test 065 rrfs_v1beta PASS +Test 063 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1nssl -Checking test 066 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1nssl +Checking test 064 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2886,21 +2853,21 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 877.765531 - 0: The maximum resident set size (KB) = 635076 + 0: The total amount of wall time = 931.589221 + 0: The maximum resident set size (KB) = 623340 -Test 066 rrfs_v1nssl PASS +Test 064 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1nssl_nohailnoccn -Checking test 067 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2908,151 +2875,163 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 855.802971 - 0: The maximum resident set size (KB) = 631580 + 0: The total amount of wall time = 976.044518 + 0: The maximum resident set size (KB) = 629632 + +Test 065 rrfs_v1nssl_nohailnoccn PASS + -Test 067 rrfs_v1nssl_nohailnoccn PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + 0: The total amount of wall time = 298.407407 + 0: The maximum resident set size (KB) = 896168 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm -Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS - 0: The total amount of wall time = 243.302644 - 0: The maximum resident set size (KB) = 905556 -Test 068 rrfs_smoke_conus13km_hrrr_warm PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + 0: The total amount of wall time = 187.655624 + 0: The maximum resident set size (KB) = 865140 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS - 0: The total amount of wall time = 167.578613 - 0: The maximum resident set size (KB) = 852256 -Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + 0: The total amount of wall time = 232.415190 + 0: The maximum resident set size (KB) = 864232 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_conus13km_hrrr_warm -Checking test 070 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +Test 068 rrfs_conus13km_hrrr_warm PASS - 0: The total amount of wall time = 223.165184 - 0: The maximum resident set size (KB) = 860244 -Test 070 rrfs_conus13km_hrrr_warm PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + 0: The total amount of wall time = 376.354176 + 0: The maximum resident set size (KB) = 902340 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_radar_tten_warm -Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS - 0: The total amount of wall time = 237.867258 - 0: The maximum resident set size (KB) = 896772 -Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + 0: The total amount of wall time = 207.282324 + 0: The maximum resident set size (KB) = 847012 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmg -Checking test 072 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmg +Checking test 071 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 508.957660 - 0: The maximum resident set size (KB) = 672180 + 0: The total amount of wall time = 651.189439 + 0: The maximum resident set size (KB) = 667692 -Test 072 control_csawmg PASS +Test 071 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmgt -Checking test 073 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmgt +Checking test 072 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 546.011757 - 0: The maximum resident set size (KB) = 665460 + 0: The total amount of wall time = 667.253974 + 0: The maximum resident set size (KB) = 669408 -Test 073 control_csawmgt PASS +Test 072 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_ras -Checking test 074 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_ras +Checking test 073 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.746277 - 0: The maximum resident set size (KB) = 637328 + 0: The total amount of wall time = 347.659147 + 0: The maximum resident set size (KB) = 634724 -Test 074 control_ras PASS +Test 073 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wam -Checking test 075 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wam +Checking test 074 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 198.171815 - 0: The maximum resident set size (KB) = 484080 + 0: The total amount of wall time = 187.431488 + 0: The maximum resident set size (KB) = 479548 -Test 075 control_wam PASS +Test 074 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_faster -Checking test 076 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_faster +Checking test 075 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3092,75 +3071,75 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.458730 - 0: The maximum resident set size (KB) = 1537040 + 0: The total amount of wall time = 312.679136 + 0: The maximum resident set size (KB) = 1534136 -Test 076 control_p8_faster PASS +Test 075 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control_faster -Checking test 077 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control_faster +Checking test 076 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 543.181149 - 0: The maximum resident set size (KB) = 785956 + 0: The total amount of wall time = 598.489567 + 0: The maximum resident set size (KB) = 785680 -Test 077 regional_control_faster PASS +Test 076 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1106.523355 - 0: The maximum resident set size (KB) = 931180 + 0: The total amount of wall time = 1143.155037 + 0: The maximum resident set size (KB) = 930116 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 681.103722 - 0: The maximum resident set size (KB) = 896540 + 0: The total amount of wall time = 803.412340 + 0: The maximum resident set size (KB) = 892744 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1002.085398 - 0: The maximum resident set size (KB) = 890880 + 0: The total amount of wall time = 1060.451829 + 0: The maximum resident set size (KB) = 894712 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid_debug +Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3186,359 +3165,359 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 229.317493 - 0: The maximum resident set size (KB) = 736424 + 0: The total amount of wall time = 237.701422 + 0: The maximum resident set size (KB) = 738928 -Test 081 control_CubedSphereGrid_debug PASS +Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wrtGauss_netcdf_parallel_debug +Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.025678 - 0: The maximum resident set size (KB) = 734476 + 0: The total amount of wall time = 313.371265 + 0: The maximum resident set size (KB) = 729144 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy_debug -Checking test 083 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy_debug +Checking test 082 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.964705 - 0: The maximum resident set size (KB) = 743108 + 0: The total amount of wall time = 303.045734 + 0: The maximum resident set size (KB) = 737108 -Test 083 control_stochy_debug PASS +Test 082 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_lndp_debug -Checking test 084 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_lndp_debug +Checking test 083 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.475535 - 0: The maximum resident set size (KB) = 744640 + 0: The total amount of wall time = 232.962728 + 0: The maximum resident set size (KB) = 742472 -Test 084 control_lndp_debug PASS +Test 083 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmg_debug +Checking test 084 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.015136 - 0: The maximum resident set size (KB) = 788124 + 0: The total amount of wall time = 369.974480 + 0: The maximum resident set size (KB) = 782508 -Test 085 control_csawmg_debug PASS +Test 084 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmgt_debug +Checking test 085 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 326.385183 - 0: The maximum resident set size (KB) = 783876 + 0: The total amount of wall time = 343.893095 + 0: The maximum resident set size (KB) = 784084 -Test 086 control_csawmgt_debug PASS +Test 085 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_ras_debug -Checking test 087 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_ras_debug +Checking test 086 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.148923 - 0: The maximum resident set size (KB) = 748840 + 0: The total amount of wall time = 229.072039 + 0: The maximum resident set size (KB) = 742548 -Test 087 control_ras_debug PASS +Test 086 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_diag_debug -Checking test 088 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_diag_debug +Checking test 087 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.614929 - 0: The maximum resident set size (KB) = 789608 + 0: The total amount of wall time = 269.487398 + 0: The maximum resident set size (KB) = 789412 -Test 088 control_diag_debug PASS +Test 087 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_debug_p8 -Checking test 089 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_debug_p8 +Checking test 088 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.348999 - 0: The maximum resident set size (KB) = 1562484 + 0: The total amount of wall time = 253.522411 + 0: The maximum resident set size (KB) = 1552612 -Test 089 control_debug_p8 PASS +Test 088 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_debug -Checking test 090 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_debug +Checking test 089 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1352.668673 - 0: The maximum resident set size (KB) = 804360 + 0: The total amount of wall time = 1430.554848 + 0: The maximum resident set size (KB) = 803940 -Test 090 regional_debug PASS +Test 089 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_debug -Checking test 091 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_debug +Checking test 090 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 383.262896 - 0: The maximum resident set size (KB) = 1120044 + 0: The total amount of wall time = 415.780522 + 0: The maximum resident set size (KB) = 1115660 -Test 091 rap_control_debug PASS +Test 090 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_debug +Checking test 091 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 400.296304 - 0: The maximum resident set size (KB) = 1110964 + 0: The total amount of wall time = 386.060131 + 0: The maximum resident set size (KB) = 1115060 -Test 092 hrrr_control_debug PASS +Test 091 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_unified_drag_suite_debug +Checking test 092 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 425.257782 - 0: The maximum resident set size (KB) = 1119000 + 0: The total amount of wall time = 394.695177 + 0: The maximum resident set size (KB) = 1107468 -Test 093 rap_unified_drag_suite_debug PASS +Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_diag_debug -Checking test 094 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_diag_debug +Checking test 093 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 422.685362 - 0: The maximum resident set size (KB) = 1191984 + 0: The total amount of wall time = 457.183726 + 0: The maximum resident set size (KB) = 1193088 -Test 094 rap_diag_debug PASS +Test 093 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_cires_ugwp_debug +Checking test 094 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 388.079086 - 0: The maximum resident set size (KB) = 1115656 + 0: The total amount of wall time = 403.980863 + 0: The maximum resident set size (KB) = 1104292 -Test 095 rap_cires_ugwp_debug PASS +Test 094 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_unified_ugwp_debug +Checking test 095 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 403.996632 - 0: The maximum resident set size (KB) = 1115548 + 0: The total amount of wall time = 418.300819 + 0: The maximum resident set size (KB) = 1112580 -Test 096 rap_unified_ugwp_debug PASS +Test 095 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_lndp_debug +Checking test 096 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.170305 - 0: The maximum resident set size (KB) = 1111388 + 0: The total amount of wall time = 401.876424 + 0: The maximum resident set size (KB) = 1114776 -Test 097 rap_lndp_debug PASS +Test 096 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_flake_debug -Checking test 098 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_flake_debug +Checking test 097 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.835203 - 0: The maximum resident set size (KB) = 1121440 + 0: The total amount of wall time = 375.961353 + 0: The maximum resident set size (KB) = 1117368 -Test 098 rap_flake_debug PASS +Test 097 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_progcld_thompson_debug -Checking test 099 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 391.710992 - 0: The maximum resident set size (KB) = 1110664 + 0: The total amount of wall time = 387.842804 + 0: The maximum resident set size (KB) = 1109116 -Test 099 rap_progcld_thompson_debug PASS +Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_noah_debug -Checking test 100 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.132755 - 0: The maximum resident set size (KB) = 1118652 + 0: The total amount of wall time = 398.863813 + 0: The maximum resident set size (KB) = 1104020 -Test 100 rap_noah_debug PASS +Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_debug -Checking test 101 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.719349 - 0: The maximum resident set size (KB) = 1119184 + 0: The total amount of wall time = 384.883839 + 0: The maximum resident set size (KB) = 1115532 -Test 101 rap_sfcdiff_debug PASS +Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 614.405938 - 0: The maximum resident set size (KB) = 1112456 + 0: The total amount of wall time = 620.164758 + 0: The maximum resident set size (KB) = 1116280 -Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1beta_debug -Checking test 103 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.953133 - 0: The maximum resident set size (KB) = 1112836 + 0: The total amount of wall time = 387.691423 + 0: The maximum resident set size (KB) = 1102412 -Test 103 rrfs_v1beta_debug PASS +Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wam_debug -Checking test 104 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wam_debug +Checking test 103 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 372.851501 - 0: The maximum resident set size (KB) = 441356 + 0: The total amount of wall time = 385.181673 + 0: The maximum resident set size (KB) = 436792 -Test 104 control_wam_debug PASS +Test 103 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 361.721033 - 0: The maximum resident set size (KB) = 985520 + 0: The total amount of wall time = 453.451328 + 0: The maximum resident set size (KB) = 979500 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn32_phy32 -Checking test 106 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn32_phy32 +Checking test 105 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3578,21 +3557,21 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 593.851647 - 0: The maximum resident set size (KB) = 843404 + 0: The total amount of wall time = 712.883352 + 0: The maximum resident set size (KB) = 855448 -Test 106 rap_control_dyn32_phy32 PASS +Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_dyn32_phy32 -Checking test 107 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_dyn32_phy32 +Checking test 106 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3632,21 +3611,21 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.109015 - 0: The maximum resident set size (KB) = 824092 + 0: The total amount of wall time = 399.735608 + 0: The maximum resident set size (KB) = 831340 -Test 107 hrrr_control_dyn32_phy32 PASS +Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_2threads_dyn32_phy32 -Checking test 108 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_2threads_dyn32_phy32 +Checking test 107 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3686,21 +3665,21 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 560.795543 - 0: The maximum resident set size (KB) = 885376 + 0: The total amount of wall time = 781.135121 + 0: The maximum resident set size (KB) = 893356 -Test 108 rap_2threads_dyn32_phy32 PASS +Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_2threads_dyn32_phy32 -Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_2threads_dyn32_phy32 +Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3740,21 +3719,21 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.117586 - 0: The maximum resident set size (KB) = 886436 + 0: The total amount of wall time = 380.902882 + 0: The maximum resident set size (KB) = 893684 -Test 109 hrrr_control_2threads_dyn32_phy32 PASS +Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_decomp_dyn32_phy32 -Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_decomp_dyn32_phy32 +Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3794,17 +3773,17 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.960610 - 0: The maximum resident set size (KB) = 821308 + 0: The total amount of wall time = 420.407008 + 0: The maximum resident set size (KB) = 827260 -Test 110 hrrr_control_decomp_dyn32_phy32 PASS +Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_restart_dyn32_phy32 -Checking test 111 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_restart_dyn32_phy32 +Checking test 110 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3840,17 +3819,17 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 411.515213 - 0: The maximum resident set size (KB) = 805256 + 0: The total amount of wall time = 608.405289 + 0: The maximum resident set size (KB) = 813888 -Test 111 rap_restart_dyn32_phy32 PASS +Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_restart_dyn32_phy32 -Checking test 112 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_restart_dyn32_phy32 +Checking test 111 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3886,21 +3865,21 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.432656 - 0: The maximum resident set size (KB) = 760992 + 0: The total amount of wall time = 174.718282 + 0: The maximum resident set size (KB) = 761040 -Test 112 hrrr_control_restart_dyn32_phy32 PASS +Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn64_phy32 -Checking test 113 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn64_phy32 +Checking test 112 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3940,279 +3919,266 @@ Checking test 113 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.877550 - 0: The maximum resident set size (KB) = 864468 + 0: The total amount of wall time = 430.815357 + 0: The maximum resident set size (KB) = 875564 -Test 113 rap_control_dyn64_phy32 PASS +Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_debug_dyn32_phy32 -Checking test 114 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_debug_dyn32_phy32 +Checking test 113 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.829560 - 0: The maximum resident set size (KB) = 996808 + 0: The total amount of wall time = 375.839906 + 0: The maximum resident set size (KB) = 992364 -Test 114 rap_control_debug_dyn32_phy32 PASS +Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_debug_dyn32_phy32 +Checking test 114 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.159445 - 0: The maximum resident set size (KB) = 991396 + 0: The total amount of wall time = 376.573436 + 0: The maximum resident set size (KB) = 997272 -Test 115 hrrr_control_debug_dyn32_phy32 PASS +Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn64_phy32_debug -Checking test 116 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn64_phy32_debug +Checking test 115 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 401.066020 - 0: The maximum resident set size (KB) = 1035836 + 0: The total amount of wall time = 404.404448 + 0: The maximum resident set size (KB) = 1027412 -Test 116 rap_control_dyn64_phy32_debug PASS +Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm -Checking test 117 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm +Checking test 116 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 412.439478 - 0: The maximum resident set size (KB) = 1214276 + 0: The total amount of wall time = 596.730523 + 0: The maximum resident set size (KB) = 1169512 -Test 117 hafs_regional_atm PASS +Test 116 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_thompson_gfdlsf +Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 586.398192 - 0: The maximum resident set size (KB) = 1533748 + 0: The total amount of wall time = 1215.199131 + 0: The maximum resident set size (KB) = 1588456 -Test 118 hafs_regional_atm_thompson_gfdlsf PASS +Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_ocn +Checking test 118 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 648.189609 - 0: The maximum resident set size (KB) = 1293448 + 0: The total amount of wall time = 798.795474 + 0: The maximum resident set size (KB) = 1296260 -Test 119 hafs_regional_atm_ocn PASS +Test 118 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_wav +Checking test 119 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1176.581760 - 0: The maximum resident set size (KB) = 1283732 + 0: The total amount of wall time = 1526.554174 + 0: The maximum resident set size (KB) = 1319452 -Test 120 hafs_regional_atm_wav PASS +Test 119 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_ocn_wav +Checking test 120 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1160.515171 - 0: The maximum resident set size (KB) = 1345800 + 0: The total amount of wall time = 1641.320617 + 0: The maximum resident set size (KB) = 1326680 -Test 121 hafs_regional_atm_ocn_wav PASS +Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_docn -Checking test 122 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_docn +Checking test 121 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 623.684219 - 0: The maximum resident set size (KB) = 1300772 + 0: The total amount of wall time = 1009.633025 + 0: The maximum resident set size (KB) = 1238068 -Test 122 hafs_regional_docn PASS +Test 121 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_docn_oisst -Checking test 123 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_docn_oisst +Checking test 122 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 648.654910 - 0: The maximum resident set size (KB) = 1282300 - -Test 123 hafs_regional_docn_oisst PASS - + 0: The total amount of wall time = 931.961674 + 0: The maximum resident set size (KB) = 1287728 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_datm_cdeps -Checking test 124 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 +Test 122 hafs_regional_docn_oisst PASS - 0: The total amount of wall time = 1510.967414 - 0: The maximum resident set size (KB) = 973108 -Test 124 hafs_regional_datm_cdeps PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_cfsr -Checking test 125 datm_cdeps_control_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_cfsr +Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 355.558782 - 0: The maximum resident set size (KB) = 958684 + 0: The total amount of wall time = 348.792398 + 0: The maximum resident set size (KB) = 966848 -Test 125 datm_cdeps_control_cfsr PASS +Test 123 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_restart_cfsr -Checking test 126 datm_cdeps_restart_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_restart_cfsr +Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.977852 - 0: The maximum resident set size (KB) = 933356 + 0: The total amount of wall time = 224.479768 + 0: The maximum resident set size (KB) = 937020 -Test 126 datm_cdeps_restart_cfsr PASS +Test 124 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_gefs -Checking test 127 datm_cdeps_control_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_gefs +Checking test 125 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 339.987949 - 0: The maximum resident set size (KB) = 859828 + 0: The total amount of wall time = 360.416404 + 0: The maximum resident set size (KB) = 870636 -Test 127 datm_cdeps_control_gefs PASS +Test 125 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_iau_gefs -Checking test 128 datm_cdeps_iau_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_iau_gefs +Checking test 126 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 307.819390 - 0: The maximum resident set size (KB) = 862680 + 0: The total amount of wall time = 385.531228 + 0: The maximum resident set size (KB) = 866788 -Test 128 datm_cdeps_iau_gefs PASS +Test 126 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_stochy_gefs -Checking test 129 datm_cdeps_stochy_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_stochy_gefs +Checking test 127 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 339.093601 - 0: The maximum resident set size (KB) = 862804 + 0: The total amount of wall time = 288.063917 + 0: The maximum resident set size (KB) = 870660 -Test 129 datm_cdeps_stochy_gefs PASS +Test 127 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_ciceC_cfsr -Checking test 130 datm_cdeps_ciceC_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_ciceC_cfsr +Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 340.976176 - 0: The maximum resident set size (KB) = 961920 + 0: The total amount of wall time = 308.527994 + 0: The maximum resident set size (KB) = 978532 -Test 130 datm_cdeps_ciceC_cfsr PASS +Test 128 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_bulk_cfsr -Checking test 131 datm_cdeps_bulk_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_bulk_cfsr +Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 342.172516 - 0: The maximum resident set size (KB) = 981924 + 0: The total amount of wall time = 307.963749 + 0: The maximum resident set size (KB) = 971908 -Test 131 datm_cdeps_bulk_cfsr PASS +Test 129 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_bulk_gefs -Checking test 132 datm_cdeps_bulk_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_bulk_gefs +Checking test 130 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 328.216476 - 0: The maximum resident set size (KB) = 868108 + 0: The total amount of wall time = 378.423054 + 0: The maximum resident set size (KB) = 870116 -Test 132 datm_cdeps_bulk_gefs PASS +Test 130 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_mx025_cfsr -Checking test 133 datm_cdeps_mx025_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_mx025_cfsr +Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4220,15 +4186,15 @@ Checking test 133 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 = 739.194461 - 0: The maximum resident set size (KB) = 767996 + 0: The total amount of wall time = 968.308398 + 0: The maximum resident set size (KB) = 769560 -Test 133 datm_cdeps_mx025_cfsr PASS +Test 131 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_mx025_gefs -Checking test 134 datm_cdeps_mx025_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_mx025_gefs +Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4236,78 +4202,78 @@ Checking test 134 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 = 675.469879 - 0: The maximum resident set size (KB) = 737636 + 0: The total amount of wall time = 1013.160470 + 0: The maximum resident set size (KB) = 732576 -Test 134 datm_cdeps_mx025_gefs PASS +Test 132 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_multiple_files_cfsr -Checking test 135 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_multiple_files_cfsr +Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 266.414544 - 0: The maximum resident set size (KB) = 962492 + 0: The total amount of wall time = 381.502236 + 0: The maximum resident set size (KB) = 964620 -Test 135 datm_cdeps_multiple_files_cfsr PASS +Test 133 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_3072x1536_cfsr -Checking test 136 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_3072x1536_cfsr +Checking test 134 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 430.474607 - 0: The maximum resident set size (KB) = 2196860 + 0: The total amount of wall time = 489.570613 + 0: The maximum resident set size (KB) = 2244428 -Test 136 datm_cdeps_3072x1536_cfsr PASS +Test 134 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_gfs -Checking test 137 datm_cdeps_gfs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_gfs +Checking test 135 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 392.529923 - 0: The maximum resident set size (KB) = 2259524 + 0: The total amount of wall time = 498.191026 + 0: The maximum resident set size (KB) = 2262352 -Test 137 datm_cdeps_gfs PASS +Test 135 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_debug_cfsr -Checking test 138 datm_cdeps_debug_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_debug_cfsr +Checking test 136 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 599.730889 - 0: The maximum resident set size (KB) = 914536 + 0: The total amount of wall time = 513.909263 + 0: The maximum resident set size (KB) = 911016 -Test 138 datm_cdeps_debug_cfsr PASS +Test 136 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_cfsr_faster -Checking test 139 datm_cdeps_control_cfsr_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_cfsr_faster +Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 288.581705 - 0: The maximum resident set size (KB) = 959896 + 0: The total amount of wall time = 337.544809 + 0: The maximum resident set size (KB) = 975132 -Test 139 datm_cdeps_control_cfsr_faster PASS +Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_lnd_gswp3 -Checking test 140 datm_cdeps_lnd_gswp3 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4315,15 +4281,15 @@ Checking test 140 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 = 25.122612 - 0: The maximum resident set size (KB) = 253344 + 0: The total amount of wall time = 62.901857 + 0: The maximum resident set size (KB) = 246896 -Test 140 datm_cdeps_lnd_gswp3 PASS +Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_lnd_gswp3_rst -Checking test 141 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4331,15 +4297,15 @@ Checking test 141 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 = 25.669702 - 0: The maximum resident set size (KB) = 251680 + 0: The total amount of wall time = 51.276584 + 0: The maximum resident set size (KB) = 256968 -Test 141 datm_cdeps_lnd_gswp3_rst PASS +Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_atmlnd_sbs -Checking test 142 control_p8_atmlnd_sbs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_atmlnd_sbs +Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4423,19 +4389,19 @@ Checking test 142 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 = 400.975608 - 0: The maximum resident set size (KB) = 1598816 + 0: The total amount of wall time = 545.258546 + 0: The maximum resident set size (KB) = 1585776 -Test 142 control_p8_atmlnd_sbs PASS +Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_atmwav -Checking test 143 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_atmwav +Checking test 141 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4474,19 +4440,19 @@ Checking test 143 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 = 178.289739 - 0: The maximum resident set size (KB) = 600100 + 0: The total amount of wall time = 281.976030 + 0: The maximum resident set size (KB) = 596936 -Test 143 control_atmwav PASS +Test 141 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8 -Checking test 144 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8 +Checking test 142 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4525,19 +4491,19 @@ Checking test 144 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 = 418.973301 - 0: The maximum resident set size (KB) = 1634084 + 0: The total amount of wall time = 466.412640 + 0: The maximum resident set size (KB) = 1646116 -Test 144 atmaero_control_p8 PASS +Test 142 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8_rad -Checking test 145 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8_rad +Checking test 143 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4576,19 +4542,19 @@ Checking test 145 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 = 522.204327 - 0: The maximum resident set size (KB) = 1653460 + 0: The total amount of wall time = 583.810329 + 0: The maximum resident set size (KB) = 1654536 -Test 145 atmaero_control_p8_rad PASS +Test 143 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8_rad_micro -Checking test 146 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8_rad_micro +Checking test 144 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4627,58 +4593,12 @@ Checking test 146 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 = 505.920456 - 0: The maximum resident set size (KB) = 1681588 - -Test 146 atmaero_control_p8_rad_micro PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_atmaq -Checking test 147 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1249.139007 - 0: The maximum resident set size (KB) = 1154640 - -Test 147 regional_atmaq PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_atmaq_faster -Checking test 148 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1137.317628 - 0: The maximum resident set size (KB) = 1164452 - -Test 148 regional_atmaq_faster PASS + 0: The total amount of wall time = 545.817603 + 0: The maximum resident set size (KB) = 1687232 + +Test 144 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 29 02:05:22 UTC 2023 -Elapsed time: 05h:16m:44s. Have a nice day! +Thu Apr 6 04:48:43 UTC 2023 +Elapsed time: 02h:56m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log old mode 100644 new mode 100755 index 2c0e5d29ec..aa7cd500fc --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 15:41:26 CDT 2023 +Wed Apr 5 20:54:13 CDT 2023 Start Regression test -Compile 001 elapsed time 1116 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 1044 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 982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 632 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 604 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 929 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 968 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1272 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 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 633 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 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 726 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 315 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 254 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 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 239 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 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 681 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 200 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 771 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 636 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 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 134 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 90 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 592 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 572 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 564 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 545 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 903 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8_mixedmode +Compile 001 elapsed time 761 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 750 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 679 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 639 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 650 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 832 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 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 551 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 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 683 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 213 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 159 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 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 165 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 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 599 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 202 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 720 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 618 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 219 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 210 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 654 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 712 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 235 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 653 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/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 = 308.905249 - 0: The maximum resident set size (KB) = 3151744 + 0: The total amount of wall time = 309.967464 + 0: The maximum resident set size (KB) = 3146548 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/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 = 238.465133 - 0: The maximum resident set size (KB) = 1725492 + 0: The total amount of wall time = 225.096862 + 0: The maximum resident set size (KB) = 1736500 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/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 = 351.842149 - 0: The maximum resident set size (KB) = 3189888 + 0: The total amount of wall time = 351.311222 + 0: The maximum resident set size (KB) = 3188716 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/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 = 209.225577 - 0: The maximum resident set size (KB) = 3053988 + 0: The total amount of wall time = 206.963605 + 0: The maximum resident set size (KB) = 3046936 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.300323 - 0: The maximum resident set size (KB) = 3181460 + 0: The total amount of wall time = 355.689583 + 0: The maximum resident set size (KB) = 3191616 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 217.482580 - 0: The maximum resident set size (KB) = 3065964 + 0: The total amount of wall time = 222.425450 + 0: The maximum resident set size (KB) = 3068128 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.792378 - 0: The maximum resident set size (KB) = 3517576 + 0: The total amount of wall time = 412.531868 + 0: The maximum resident set size (KB) = 3522008 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.481564 - 0: The maximum resident set size (KB) = 3181036 + 0: The total amount of wall time = 360.149223 + 0: The maximum resident set size (KB) = 3095412 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 288.946307 - 0: The maximum resident set size (KB) = 3032860 + 0: The total amount of wall time = 291.782701 + 0: The maximum resident set size (KB) = 3031012 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.149356 - 0: The maximum resident set size (KB) = 3174928 + 0: The total amount of wall time = 347.899544 + 0: The maximum resident set size (KB) = 3190308 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 645.658207 - 0: The maximum resident set size (KB) = 3261804 + 0: The total amount of wall time = 639.128478 + 0: The maximum resident set size (KB) = 3262764 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,17 +808,17 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 471.828040 - 0: The maximum resident set size (KB) = 3165432 + 0: The total amount of wall time = 451.572128 + 0: The maximum resident set size (KB) = 3094672 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -863,17 +863,17 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 946.196693 - 0: The maximum resident set size (KB) = 3971232 + 0: The total amount of wall time = 866.768674 + 0: The maximum resident set size (KB) = 4041720 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 566.338382 - 0: The maximum resident set size (KB) = 3936488 + 0: The total amount of wall time = 537.483768 + 0: The maximum resident set size (KB) = 4018760 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.178077 - 0: The maximum resident set size (KB) = 1722784 + 0: The total amount of wall time = 259.526227 + 0: The maximum resident set size (KB) = 1719032 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.268081 - 0: The maximum resident set size (KB) = 1762384 + 0: The total amount of wall time = 262.667181 + 0: The maximum resident set size (KB) = 1769148 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 723.822161 - 0: The maximum resident set size (KB) = 3245840 + 0: The total amount of wall time = 540.472914 + 0: The maximum resident set size (KB) = 3249128 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 465.697944 - 0: The maximum resident set size (KB) = 1744404 + 0: The total amount of wall time = 395.156172 + 0: The maximum resident set size (KB) = 1753340 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 277.505740 - 0: The maximum resident set size (KB) = 1706184 + 0: The total amount of wall time = 269.437113 + 0: The maximum resident set size (KB) = 1767364 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 506.274261 - 0: The maximum resident set size (KB) = 2786704 + 0: The total amount of wall time = 497.389256 + 0: The maximum resident set size (KB) = 2804740 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.283317 - 0: The maximum resident set size (KB) = 2801312 + 0: The total amount of wall time = 137.807877 + 0: The maximum resident set size (KB) = 2805540 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.554956 - 0: The maximum resident set size (KB) = 2237072 + 0: The total amount of wall time = 72.442529 + 0: The maximum resident set size (KB) = 2237872 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.446332 - 0: The maximum resident set size (KB) = 3183560 + 0: The total amount of wall time = 330.338617 + 0: The maximum resident set size (KB) = 3178692 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,48 +1523,48 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.684290 - 0: The maximum resident set size (KB) = 631688 + 0: The total amount of wall time = 131.606289 + 0: The maximum resident set size (KB) = 632008 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.768507 - 0: The maximum resident set size (KB) = 639288 + 0: The total amount of wall time = 127.382142 + 0: The maximum resident set size (KB) = 631412 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_latlon Checking test 026 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.173942 - 0: The maximum resident set size (KB) = 635696 + 0: The total amount of wall time = 132.797336 + 0: The maximum resident set size (KB) = 632872 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1573,19 +1573,19 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.898498 - 0: The maximum resident set size (KB) = 638760 + 0: The total amount of wall time = 137.256951 + 0: The maximum resident set size (KB) = 633140 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c48 Checking test 028 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1619,55 +1619,55 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.710310 -0: The maximum resident set size (KB) = 826560 +0: The total amount of wall time = 345.387601 +0: The maximum resident set size (KB) = 823060 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c192 Checking test 029 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.562177 - 0: The maximum resident set size (KB) = 767960 + 0: The total amount of wall time = 524.613511 + 0: The maximum resident set size (KB) = 768028 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c384 Checking test 030 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.744721 - 0: The maximum resident set size (KB) = 1222184 + 0: The total amount of wall time = 581.468191 + 0: The maximum resident set size (KB) = 1239352 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c384gdas Checking test 031 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1705,71 +1705,71 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 513.192539 - 0: The maximum resident set size (KB) = 1335920 + 0: The total amount of wall time = 507.088503 + 0: The maximum resident set size (KB) = 1343156 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy Checking test 032 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.989529 - 0: The maximum resident set size (KB) = 639044 + 0: The total amount of wall time = 88.033919 + 0: The maximum resident set size (KB) = 644752 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy_restart Checking test 033 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.699882 - 0: The maximum resident set size (KB) = 487004 + 0: The total amount of wall time = 47.042062 + 0: The maximum resident set size (KB) = 491776 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_lndp Checking test 034 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.708200 - 0: The maximum resident set size (KB) = 639304 + 0: The total amount of wall time = 81.659748 + 0: The maximum resident set size (KB) = 599152 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_iovr4 Checking test 035 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1777,21 +1777,21 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.427771 - 0: The maximum resident set size (KB) = 619496 + 0: The total amount of wall time = 136.322896 + 0: The maximum resident set size (KB) = 635052 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_iovr5 Checking test 036 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1799,21 +1799,21 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.881141 - 0: The maximum resident set size (KB) = 633788 + 0: The total amount of wall time = 134.971037 + 0: The maximum resident set size (KB) = 631948 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8 Checking test 037 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1853,17 +1853,17 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.716780 - 0: The maximum resident set size (KB) = 1599116 + 0: The total amount of wall time = 167.045417 + 0: The maximum resident set size (KB) = 1610228 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_restart_p8 Checking test 038 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1899,21 +1899,21 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.439663 - 0: The maximum resident set size (KB) = 882348 + 0: The total amount of wall time = 89.546625 + 0: The maximum resident set size (KB) = 879468 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_qr_p8 Checking test 039 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1953,17 +1953,17 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.188331 - 0: The maximum resident set size (KB) = 1607452 + 0: The total amount of wall time = 168.435961 + 0: The maximum resident set size (KB) = 1614996 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1999,19 +1999,19 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 93.280428 - 0: The maximum resident set size (KB) = 875344 + 0: The total amount of wall time = 89.726789 + 0: The maximum resident set size (KB) = 870152 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_decomp_p8 Checking test 041 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -2049,19 +2049,19 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.106524 - 0: The maximum resident set size (KB) = 1581496 + 0: The total amount of wall time = 175.476327 + 0: The maximum resident set size (KB) = 1590300 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_2threads_p8 Checking test 042 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -2099,23 +2099,23 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.565090 - 0: The maximum resident set size (KB) = 1694432 + 0: The total amount of wall time = 177.010913 + 0: The maximum resident set size (KB) = 1694356 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_lndp Checking test 043 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2125,21 +2125,21 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 320.165505 - 0: The maximum resident set size (KB) = 1605416 + 0: The total amount of wall time = 310.714559 + 0: The maximum resident set size (KB) = 1611796 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2179,21 +2179,21 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.494419 - 0: The maximum resident set size (KB) = 1685068 + 0: The total amount of wall time = 226.445431 + 0: The maximum resident set size (KB) = 1670312 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_mynn Checking test 045 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2233,21 +2233,21 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.527997 - 0: The maximum resident set size (KB) = 1606124 + 0: The total amount of wall time = 169.893980 + 0: The maximum resident set size (KB) = 1605564 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/merra2_thompson Checking test 046 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2287,114 +2287,114 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.644800 - 0: The maximum resident set size (KB) = 1611252 + 0: The total amount of wall time = 191.311862 + 0: The maximum resident set size (KB) = 1619364 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control Checking test 047 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.075760 - 0: The maximum resident set size (KB) = 882820 + 0: The total amount of wall time = 294.471297 + 0: The maximum resident set size (KB) = 872732 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_restart Checking test 048 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.630935 - 0: The maximum resident set size (KB) = 863000 + 0: The total amount of wall time = 150.350015 + 0: The maximum resident set size (KB) = 814876 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control_qr Checking test 049 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.194806 - 0: The maximum resident set size (KB) = 876916 + 0: The total amount of wall time = 295.130900 + 0: The maximum resident set size (KB) = 874080 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_restart_qr Checking test 050 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.960197 - 0: The maximum resident set size (KB) = 866976 + 0: The total amount of wall time = 154.483656 + 0: The maximum resident set size (KB) = 865264 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_decomp Checking test 051 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.524356 - 0: The maximum resident set size (KB) = 863520 + 0: The total amount of wall time = 312.758266 + 0: The maximum resident set size (KB) = 865280 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_2threads Checking test 052 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.948366 - 0: The maximum resident set size (KB) = 796184 + 0: The total amount of wall time = 206.786595 + 0: The maximum resident set size (KB) = 854196 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,71 +2402,71 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.965638 - 0: The maximum resident set size (KB) = 857928 + 0: The total amount of wall time = 316.399074 + 0: The maximum resident set size (KB) = 859160 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 294.471708 - 0: The maximum resident set size (KB) = 842564 + 0: The total amount of wall time = 291.093483 + 0: The maximum resident set size (KB) = 864884 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.100176 - 0: The maximum resident set size (KB) = 868448 + 0: The total amount of wall time = 295.479847 + 0: The maximum resident set size (KB) = 874892 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_wofs Checking test 056 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.324733 - 0: The maximum resident set size (KB) = 633744 + 0: The total amount of wall time = 372.599295 + 0: The maximum resident set size (KB) = 632172 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control Checking test 057 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2506,39 +2506,39 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.536727 - 0: The maximum resident set size (KB) = 1067648 + 0: The total amount of wall time = 456.240006 + 0: The maximum resident set size (KB) = 1067428 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 271.855012 - 0: The maximum resident set size (KB) = 1179324 + 0: The total amount of wall time = 265.626501 + 0: The maximum resident set size (KB) = 1183520 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_decomp Checking test 059 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2578,21 +2578,21 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.301110 - 0: The maximum resident set size (KB) = 999876 + 0: The total amount of wall time = 482.103449 + 0: The maximum resident set size (KB) = 1004808 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_2threads Checking test 060 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2632,17 +2632,17 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.987920 - 0: The maximum resident set size (KB) = 1130384 + 0: The total amount of wall time = 469.520532 + 0: The maximum resident set size (KB) = 1142036 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_restart Checking test 061 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2678,21 +2678,21 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.101017 - 0: The maximum resident set size (KB) = 978544 + 0: The total amount of wall time = 231.781895 + 0: The maximum resident set size (KB) = 973600 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff Checking test 062 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2732,21 +2732,21 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.402985 - 0: The maximum resident set size (KB) = 1066372 + 0: The total amount of wall time = 458.689191 + 0: The maximum resident set size (KB) = 1054912 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2786,17 +2786,17 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.290953 - 0: The maximum resident set size (KB) = 1000736 + 0: The total amount of wall time = 481.172229 + 0: The maximum resident set size (KB) = 997312 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2832,21 +2832,21 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.931439 - 0: The maximum resident set size (KB) = 982696 + 0: The total amount of wall time = 343.100078 + 0: The maximum resident set size (KB) = 947380 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control Checking test 065 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2886,21 +2886,21 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.520402 - 0: The maximum resident set size (KB) = 1056860 + 0: The total amount of wall time = 443.990032 + 0: The maximum resident set size (KB) = 1051012 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2940,21 +2940,21 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.785285 - 0: The maximum resident set size (KB) = 993992 + 0: The total amount of wall time = 459.940979 + 0: The maximum resident set size (KB) = 1002716 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2994,17 +2994,17 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.466800 - 0: The maximum resident set size (KB) = 1135140 + 0: The total amount of wall time = 453.626354 + 0: The maximum resident set size (KB) = 1137516 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_restart Checking test 068 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3040,21 +3040,21 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.171353 - 0: The maximum resident set size (KB) = 984472 + 0: The total amount of wall time = 327.721847 + 0: The maximum resident set size (KB) = 984116 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1beta Checking test 069 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3094,21 +3094,21 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.824266 - 0: The maximum resident set size (KB) = 1051768 + 0: The total amount of wall time = 456.474547 + 0: The maximum resident set size (KB) = 1061512 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3116,21 +3116,21 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 560.055734 - 0: The maximum resident set size (KB) = 695212 + 0: The total amount of wall time = 542.384782 + 0: The maximum resident set size (KB) = 695668 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3138,151 +3138,163 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 544.749320 - 0: The maximum resident set size (KB) = 758776 + 0: The total amount of wall time = 524.969309 + 0: The maximum resident set size (KB) = 754432 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.704329 - 0: The maximum resident set size (KB) = 1030444 + 0: The total amount of wall time = 144.799041 + 0: The maximum resident set size (KB) = 997680 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.914126 - 0: The maximum resident set size (KB) = 943492 + 0: The total amount of wall time = 96.692169 + 0: The maximum resident set size (KB) = 949412 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 133.057212 - 0: The maximum resident set size (KB) = 942932 + 0: The total amount of wall time = 129.555379 + 0: The maximum resident set size (KB) = 950332 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 152.299699 - 0: The maximum resident set size (KB) = 993992 + 0: The total amount of wall time = 146.279835 + 0: The maximum resident set size (KB) = 1040280 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmg -Checking test 076 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 69.840414 + 0: The maximum resident set size (KB) = 932500 + +Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmg +Checking test 077 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.708467 - 0: The maximum resident set size (KB) = 729892 + 0: The total amount of wall time = 344.244524 + 0: The maximum resident set size (KB) = 724876 -Test 076 control_csawmg PASS +Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmgt -Checking test 077 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmgt +Checking test 078 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.535799 - 0: The maximum resident set size (KB) = 728140 + 0: The total amount of wall time = 342.261842 + 0: The maximum resident set size (KB) = 720116 -Test 077 control_csawmgt PASS +Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_ras -Checking test 078 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_ras +Checking test 079 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.195921 - 0: The maximum resident set size (KB) = 671192 + 0: The total amount of wall time = 185.080279 + 0: The maximum resident set size (KB) = 723812 -Test 078 control_ras PASS +Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wam -Checking test 079 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wam +Checking test 080 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.943879 - 0: The maximum resident set size (KB) = 645168 + 0: The total amount of wall time = 112.672597 + 0: The maximum resident set size (KB) = 642024 -Test 079 control_wam PASS +Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_faster -Checking test 080 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_faster +Checking test 081 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3322,75 +3334,75 @@ Checking test 080 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.573576 - 0: The maximum resident set size (KB) = 1601144 + 0: The total amount of wall time = 153.561184 + 0: The maximum resident set size (KB) = 1602488 -Test 080 control_p8_faster PASS +Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control_faster -Checking test 081 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control_faster +Checking test 082 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.489139 - 0: The maximum resident set size (KB) = 868020 + 0: The total amount of wall time = 271.138631 + 0: The maximum resident set size (KB) = 821248 -Test 081 regional_control_faster PASS +Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 865.433645 - 0: The maximum resident set size (KB) = 1068872 + 0: The total amount of wall time = 833.794943 + 0: The maximum resident set size (KB) = 1062004 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 501.642518 - 0: The maximum resident set size (KB) = 980356 + 0: The total amount of wall time = 486.419888 + 0: The maximum resident set size (KB) = 973824 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_conus13km_hrrr_warm_debug -Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm_debug +Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 777.327377 - 0: The maximum resident set size (KB) = 978776 + 0: The total amount of wall time = 751.274150 + 0: The maximum resident set size (KB) = 968876 -Test 084 rrfs_conus13km_hrrr_warm_debug PASS +Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid_debug -Checking test 085 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid_debug +Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3416,359 +3428,359 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 187.698754 - 0: The maximum resident set size (KB) = 794148 + 0: The total amount of wall time = 152.964030 + 0: The maximum resident set size (KB) = 796996 -Test 085 control_CubedSphereGrid_debug PASS +Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wrtGauss_netcdf_parallel_debug -Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wrtGauss_netcdf_parallel_debug +Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 158.616553 - 0: The maximum resident set size (KB) = 799864 + 0: The total amount of wall time = 149.271171 + 0: The maximum resident set size (KB) = 805620 -Test 086 control_wrtGauss_netcdf_parallel_debug PASS +Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy_debug -Checking test 087 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy_debug +Checking test 088 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.308414 - 0: The maximum resident set size (KB) = 799032 + 0: The total amount of wall time = 166.779651 + 0: The maximum resident set size (KB) = 802164 -Test 087 control_stochy_debug PASS +Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_lndp_debug -Checking test 088 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_lndp_debug +Checking test 089 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.058522 - 0: The maximum resident set size (KB) = 801496 + 0: The total amount of wall time = 153.941526 + 0: The maximum resident set size (KB) = 792296 -Test 088 control_lndp_debug PASS +Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmg_debug -Checking test 089 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmg_debug +Checking test 090 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.211496 - 0: The maximum resident set size (KB) = 792836 + 0: The total amount of wall time = 236.382693 + 0: The maximum resident set size (KB) = 804772 -Test 089 control_csawmg_debug PASS +Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmgt_debug -Checking test 090 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmgt_debug +Checking test 091 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.832829 - 0: The maximum resident set size (KB) = 848096 + 0: The total amount of wall time = 232.337561 + 0: The maximum resident set size (KB) = 845024 -Test 090 control_csawmgt_debug PASS +Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_ras_debug -Checking test 091 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_ras_debug +Checking test 092 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.291358 - 0: The maximum resident set size (KB) = 813468 + 0: The total amount of wall time = 152.146731 + 0: The maximum resident set size (KB) = 808160 -Test 091 control_ras_debug PASS +Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_diag_debug -Checking test 092 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_diag_debug +Checking test 093 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.961239 - 0: The maximum resident set size (KB) = 847804 + 0: The total amount of wall time = 157.485779 + 0: The maximum resident set size (KB) = 861848 -Test 092 control_diag_debug PASS +Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_debug_p8 -Checking test 093 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_debug_p8 +Checking test 094 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.537612 - 0: The maximum resident set size (KB) = 1629804 + 0: The total amount of wall time = 171.064995 + 0: The maximum resident set size (KB) = 1621608 -Test 093 control_debug_p8 PASS +Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_debug -Checking test 094 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_debug +Checking test 095 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1001.275534 - 0: The maximum resident set size (KB) = 889544 + 0: The total amount of wall time = 994.424088 + 0: The maximum resident set size (KB) = 887064 -Test 094 regional_debug PASS +Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_debug -Checking test 095 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_debug +Checking test 096 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.160322 - 0: The maximum resident set size (KB) = 1180564 + 0: The total amount of wall time = 278.813996 + 0: The maximum resident set size (KB) = 1174296 -Test 095 rap_control_debug PASS +Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_debug -Checking test 096 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_debug +Checking test 097 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.439574 - 0: The maximum resident set size (KB) = 1177248 + 0: The total amount of wall time = 274.725743 + 0: The maximum resident set size (KB) = 1170096 -Test 096 hrrr_control_debug PASS +Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_unified_drag_suite_debug -Checking test 097 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_unified_drag_suite_debug +Checking test 098 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.430562 - 0: The maximum resident set size (KB) = 1174128 + 0: The total amount of wall time = 272.810075 + 0: The maximum resident set size (KB) = 1177416 -Test 097 rap_unified_drag_suite_debug PASS +Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_diag_debug -Checking test 098 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_diag_debug +Checking test 099 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.996697 - 0: The maximum resident set size (KB) = 1264076 + 0: The total amount of wall time = 287.018756 + 0: The maximum resident set size (KB) = 1259292 -Test 098 rap_diag_debug PASS +Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_cires_ugwp_debug -Checking test 099 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_cires_ugwp_debug +Checking test 100 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.513706 - 0: The maximum resident set size (KB) = 1175252 + 0: The total amount of wall time = 276.268035 + 0: The maximum resident set size (KB) = 1172468 -Test 099 rap_cires_ugwp_debug PASS +Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_unified_ugwp_debug -Checking test 100 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_unified_ugwp_debug +Checking test 101 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.733436 - 0: The maximum resident set size (KB) = 1177172 + 0: The total amount of wall time = 279.696688 + 0: The maximum resident set size (KB) = 1177008 -Test 100 rap_unified_ugwp_debug PASS +Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_lndp_debug -Checking test 101 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_lndp_debug +Checking test 102 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.828489 - 0: The maximum resident set size (KB) = 1177096 + 0: The total amount of wall time = 277.553968 + 0: The maximum resident set size (KB) = 1171724 -Test 101 rap_lndp_debug PASS +Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_flake_debug -Checking test 102 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_flake_debug +Checking test 103 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.382658 - 0: The maximum resident set size (KB) = 1181120 + 0: The total amount of wall time = 275.788034 + 0: The maximum resident set size (KB) = 1173480 -Test 102 rap_flake_debug PASS +Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_progcld_thompson_debug -Checking test 103 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_progcld_thompson_debug +Checking test 104 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.669287 - 0: The maximum resident set size (KB) = 1179032 + 0: The total amount of wall time = 269.669851 + 0: The maximum resident set size (KB) = 1170880 -Test 103 rap_progcld_thompson_debug PASS +Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_noah_debug -Checking test 104 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_noah_debug +Checking test 105 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.118595 - 0: The maximum resident set size (KB) = 1141084 + 0: The total amount of wall time = 271.414314 + 0: The maximum resident set size (KB) = 1170520 -Test 104 rap_noah_debug PASS +Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_debug -Checking test 105 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_debug +Checking test 106 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.250834 - 0: The maximum resident set size (KB) = 1173952 + 0: The total amount of wall time = 283.430476 + 0: The maximum resident set size (KB) = 1173560 -Test 105 rap_sfcdiff_debug PASS +Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.192056 - 0: The maximum resident set size (KB) = 1170040 + 0: The total amount of wall time = 461.617768 + 0: The maximum resident set size (KB) = 1173396 -Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1beta_debug -Checking test 107 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1beta_debug +Checking test 108 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.540379 - 0: The maximum resident set size (KB) = 1175452 + 0: The total amount of wall time = 281.005127 + 0: The maximum resident set size (KB) = 1165048 -Test 107 rrfs_v1beta_debug PASS +Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wam_debug -Checking test 108 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wam_debug +Checking test 109 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 305.700440 - 0: The maximum resident set size (KB) = 527996 + 0: The total amount of wall time = 282.400836 + 0: The maximum resident set size (KB) = 523656 -Test 108 control_wam_debug PASS +Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 244.381482 - 0: The maximum resident set size (KB) = 1075724 + 0: The total amount of wall time = 251.408446 + 0: The maximum resident set size (KB) = 1088536 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn32_phy32 -Checking test 110 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn32_phy32 +Checking test 111 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3808,21 +3820,21 @@ Checking test 110 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 = 379.244769 - 0: The maximum resident set size (KB) = 999312 + 0: The total amount of wall time = 385.464223 + 0: The maximum resident set size (KB) = 994636 -Test 110 rap_control_dyn32_phy32 PASS +Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_dyn32_phy32 -Checking test 111 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_dyn32_phy32 +Checking test 112 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3862,21 +3874,21 @@ Checking test 111 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 = 199.933151 - 0: The maximum resident set size (KB) = 953400 + 0: The total amount of wall time = 198.688400 + 0: The maximum resident set size (KB) = 957096 -Test 111 hrrr_control_dyn32_phy32 PASS +Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_2threads_dyn32_phy32 -Checking test 112 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_2threads_dyn32_phy32 +Checking test 113 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3916,21 +3928,21 @@ Checking test 112 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 = 392.201999 - 0: The maximum resident set size (KB) = 1021416 + 0: The total amount of wall time = 401.101358 + 0: The maximum resident set size (KB) = 1023748 -Test 112 rap_2threads_dyn32_phy32 PASS +Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_2threads_dyn32_phy32 -Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_2threads_dyn32_phy32 +Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3970,21 +3982,21 @@ Checking test 113 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 = 202.564415 - 0: The maximum resident set size (KB) = 1001532 + 0: The total amount of wall time = 208.065458 + 0: The maximum resident set size (KB) = 1007256 -Test 113 hrrr_control_2threads_dyn32_phy32 PASS +Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_decomp_dyn32_phy32 -Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_decomp_dyn32_phy32 +Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4024,17 +4036,17 @@ Checking test 114 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.562467 - 0: The maximum resident set size (KB) = 893388 + 0: The total amount of wall time = 208.405813 + 0: The maximum resident set size (KB) = 906436 -Test 114 hrrr_control_decomp_dyn32_phy32 PASS +Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_restart_dyn32_phy32 -Checking test 115 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_restart_dyn32_phy32 +Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -4070,17 +4082,17 @@ Checking test 115 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 = 297.104307 - 0: The maximum resident set size (KB) = 957536 + 0: The total amount of wall time = 285.089339 + 0: The maximum resident set size (KB) = 961616 -Test 115 rap_restart_dyn32_phy32 PASS +Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_restart_dyn32_phy32 -Checking test 116 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_restart_dyn32_phy32 +Checking test 117 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -4116,21 +4128,21 @@ Checking test 116 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.778662 - 0: The maximum resident set size (KB) = 862912 + 0: The total amount of wall time = 106.505643 + 0: The maximum resident set size (KB) = 871124 -Test 116 hrrr_control_restart_dyn32_phy32 PASS +Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn64_phy32 -Checking test 117 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn64_phy32 +Checking test 118 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4170,440 +4182,440 @@ Checking test 117 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 = 238.846932 - 0: The maximum resident set size (KB) = 967600 + 0: The total amount of wall time = 251.970182 + 0: The maximum resident set size (KB) = 963652 -Test 117 rap_control_dyn64_phy32 PASS +Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_debug_dyn32_phy32 -Checking test 118 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_debug_dyn32_phy32 +Checking test 119 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.157895 - 0: The maximum resident set size (KB) = 1066196 + 0: The total amount of wall time = 275.415520 + 0: The maximum resident set size (KB) = 1064820 -Test 118 rap_control_debug_dyn32_phy32 PASS +Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_debug_dyn32_phy32 -Checking test 119 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_debug_dyn32_phy32 +Checking test 120 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.529625 - 0: The maximum resident set size (KB) = 1063420 + 0: The total amount of wall time = 277.646562 + 0: The maximum resident set size (KB) = 1064980 -Test 119 hrrr_control_debug_dyn32_phy32 PASS +Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn64_phy32_debug -Checking test 120 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn64_phy32_debug +Checking test 121 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.007378 - 0: The maximum resident set size (KB) = 1103108 + 0: The total amount of wall time = 275.961338 + 0: The maximum resident set size (KB) = 1097804 -Test 120 rap_control_dyn64_phy32_debug PASS +Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm -Checking test 121 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm +Checking test 122 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 266.936838 - 0: The maximum resident set size (KB) = 1049724 + 0: The total amount of wall time = 274.226221 + 0: The maximum resident set size (KB) = 1063868 -Test 121 hafs_regional_atm PASS +Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_thompson_gfdlsf -Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_thompson_gfdlsf +Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 404.478212 - 0: The maximum resident set size (KB) = 1423636 + 0: The total amount of wall time = 420.548954 + 0: The maximum resident set size (KB) = 1425584 -Test 122 hafs_regional_atm_thompson_gfdlsf PASS +Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_ocn -Checking test 123 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_ocn +Checking test 124 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.266655 - 0: The maximum resident set size (KB) = 1225904 + 0: The total amount of wall time = 391.719041 + 0: The maximum resident set size (KB) = 1233464 -Test 123 hafs_regional_atm_ocn PASS +Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_wav -Checking test 124 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_wav +Checking test 125 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 728.784570 - 0: The maximum resident set size (KB) = 1253060 + 0: The total amount of wall time = 737.562160 + 0: The maximum resident set size (KB) = 1263496 -Test 124 hafs_regional_atm_wav PASS +Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_ocn_wav -Checking test 125 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_ocn_wav +Checking test 126 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 833.521836 - 0: The maximum resident set size (KB) = 1284672 + 0: The total amount of wall time = 825.792881 + 0: The maximum resident set size (KB) = 1292452 -Test 125 hafs_regional_atm_ocn_wav PASS +Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_1nest_atm -Checking test 126 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_1nest_atm +Checking test 127 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 360.893132 - 0: The maximum resident set size (KB) = 510408 + 0: The total amount of wall time = 368.719548 + 0: The maximum resident set size (KB) = 508100 -Test 126 hafs_regional_1nest_atm PASS +Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_telescopic_2nests_atm -Checking test 127 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_telescopic_2nests_atm +Checking test 128 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 424.967120 - 0: The maximum resident set size (KB) = 517020 + 0: The total amount of wall time = 419.673198 + 0: The maximum resident set size (KB) = 521192 -Test 127 hafs_regional_telescopic_2nests_atm PASS +Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_1nest_atm -Checking test 128 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_1nest_atm +Checking test 129 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.602745 - 0: The maximum resident set size (KB) = 359560 + 0: The total amount of wall time = 184.170732 + 0: The maximum resident set size (KB) = 359456 -Test 128 hafs_global_1nest_atm PASS +Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_multiple_4nests_atm -Checking test 129 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_multiple_4nests_atm +Checking test 130 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 491.172642 - 0: The maximum resident set size (KB) = 432932 + 0: The total amount of wall time = 466.493000 + 0: The maximum resident set size (KB) = 432684 -Test 129 hafs_global_multiple_4nests_atm PASS +Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_specified_moving_1nest_atm -Checking test 130 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_specified_moving_1nest_atm +Checking test 131 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.919104 - 0: The maximum resident set size (KB) = 469000 + 0: The total amount of wall time = 232.957025 + 0: The maximum resident set size (KB) = 525880 -Test 130 hafs_regional_specified_moving_1nest_atm PASS +Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm -Checking test 131 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm +Checking test 132 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.009342 - 0: The maximum resident set size (KB) = 526020 + 0: The total amount of wall time = 222.713516 + 0: The maximum resident set size (KB) = 526080 -Test 131 hafs_regional_storm_following_1nest_atm PASS +Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 293.153274 - 0: The maximum resident set size (KB) = 568472 + 0: The total amount of wall time = 294.285096 + 0: The maximum resident set size (KB) = 573720 -Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_storm_following_1nest_atm -Checking test 133 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_storm_following_1nest_atm +Checking test 134 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.754932 - 0: The maximum resident set size (KB) = 378696 + 0: The total amount of wall time = 69.777130 + 0: The maximum resident set size (KB) = 377112 -Test 133 hafs_global_storm_following_1nest_atm PASS +Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 791.930004 - 0: The maximum resident set size (KB) = 594236 + 0: The total amount of wall time = 776.179723 + 0: The maximum resident set size (KB) = 591296 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 560.768385 - 0: The maximum resident set size (KB) = 630368 + 0: The total amount of wall time = 543.572714 + 0: The maximum resident set size (KB) = 579948 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_docn +Checking test 137 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.176618 - 0: The maximum resident set size (KB) = 1233168 + 0: The total amount of wall time = 363.967075 + 0: The maximum resident set size (KB) = 1244200 -Test 136 hafs_regional_docn PASS +Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_docn_oisst +Checking test 138 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.682572 - 0: The maximum resident set size (KB) = 1210140 + 0: The total amount of wall time = 375.556681 + 0: The maximum resident set size (KB) = 1228920 -Test 137 hafs_regional_docn_oisst PASS +Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_datm_cdeps +Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 931.422528 - 0: The maximum resident set size (KB) = 1050120 + 0: The total amount of wall time = 932.585507 + 0: The maximum resident set size (KB) = 1033244 -Test 138 hafs_regional_datm_cdeps PASS +Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_cfsr +Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.701740 - 0: The maximum resident set size (KB) = 1064568 + 0: The total amount of wall time = 151.075027 + 0: The maximum resident set size (KB) = 1045012 -Test 139 datm_cdeps_control_cfsr PASS +Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_restart_cfsr +Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.166005 - 0: The maximum resident set size (KB) = 1012700 + 0: The total amount of wall time = 91.569212 + 0: The maximum resident set size (KB) = 1015476 -Test 140 datm_cdeps_restart_cfsr PASS +Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_gefs +Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.981082 - 0: The maximum resident set size (KB) = 956984 + 0: The total amount of wall time = 146.687050 + 0: The maximum resident set size (KB) = 972892 -Test 141 datm_cdeps_control_gefs PASS +Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_iau_gefs +Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.635886 - 0: The maximum resident set size (KB) = 968288 + 0: The total amount of wall time = 145.302794 + 0: The maximum resident set size (KB) = 964548 -Test 142 datm_cdeps_iau_gefs PASS +Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_stochy_gefs +Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.959031 - 0: The maximum resident set size (KB) = 975052 + 0: The total amount of wall time = 147.000483 + 0: The maximum resident set size (KB) = 963696 -Test 143 datm_cdeps_stochy_gefs PASS +Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_ciceC_cfsr +Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.370660 - 0: The maximum resident set size (KB) = 1079004 + 0: The total amount of wall time = 147.745807 + 0: The maximum resident set size (KB) = 1059500 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_bulk_cfsr +Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.454397 - 0: The maximum resident set size (KB) = 1061872 + 0: The total amount of wall time = 147.586709 + 0: The maximum resident set size (KB) = 1051280 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_bulk_gefs +Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.768702 - 0: The maximum resident set size (KB) = 971708 + 0: The total amount of wall time = 159.541191 + 0: The maximum resident set size (KB) = 952624 -Test 146 datm_cdeps_bulk_gefs PASS +Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_mx025_cfsr +Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4611,15 +4623,15 @@ Checking test 147 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 = 436.299027 - 0: The maximum resident set size (KB) = 878932 + 0: The total amount of wall time = 442.346712 + 0: The maximum resident set size (KB) = 883184 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_mx025_gefs +Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4627,78 +4639,78 @@ Checking test 148 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 = 432.119555 - 0: The maximum resident set size (KB) = 931188 + 0: The total amount of wall time = 440.724492 + 0: The maximum resident set size (KB) = 932448 -Test 148 datm_cdeps_mx025_gefs PASS +Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_multiple_files_cfsr +Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.793966 - 0: The maximum resident set size (KB) = 1065108 + 0: The total amount of wall time = 148.078593 + 0: The maximum resident set size (KB) = 1079540 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_3072x1536_cfsr +Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.155503 - 0: The maximum resident set size (KB) = 2352996 + 0: The total amount of wall time = 199.416741 + 0: The maximum resident set size (KB) = 2358552 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_gfs +Checking test 152 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 210.428488 - 0: The maximum resident set size (KB) = 2366372 + 0: The total amount of wall time = 201.087542 + 0: The maximum resident set size (KB) = 2369672 -Test 151 datm_cdeps_gfs PASS +Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_debug_cfsr +Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 439.878997 - 0: The maximum resident set size (KB) = 997360 + 0: The total amount of wall time = 362.214183 + 0: The maximum resident set size (KB) = 988936 -Test 152 datm_cdeps_debug_cfsr PASS +Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_cfsr_faster -Checking test 153 datm_cdeps_control_cfsr_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_cfsr_faster +Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.538444 - 0: The maximum resident set size (KB) = 1065308 + 0: The total amount of wall time = 143.576844 + 0: The maximum resident set size (KB) = 1071568 -Test 153 datm_cdeps_control_cfsr_faster PASS +Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_lnd_gswp3 -Checking test 154 datm_cdeps_lnd_gswp3 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_lnd_gswp3 +Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4706,15 +4718,15 @@ Checking test 154 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 = 8.035173 - 0: The maximum resident set size (KB) = 264012 + 0: The total amount of wall time = 9.189520 + 0: The maximum resident set size (KB) = 263860 -Test 154 datm_cdeps_lnd_gswp3 PASS +Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_lnd_gswp3_rst -Checking test 155 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_lnd_gswp3_rst +Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4722,15 +4734,15 @@ Checking test 155 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.563053 - 0: The maximum resident set size (KB) = 245008 + 0: The total amount of wall time = 12.990227 + 0: The maximum resident set size (KB) = 261784 -Test 155 datm_cdeps_lnd_gswp3_rst PASS +Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_atmlnd_sbs -Checking test 156 control_p8_atmlnd_sbs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_atmlnd_sbs +Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4814,19 +4826,19 @@ Checking test 156 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 207.992407 - 0: The maximum resident set size (KB) = 1613152 + 0: The total amount of wall time = 207.041953 + 0: The maximum resident set size (KB) = 1578400 -Test 156 control_p8_atmlnd_sbs PASS +Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_atmwav -Checking test 157 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_atmwav +Checking test 158 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4865,19 +4877,19 @@ Checking test 157 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.805567 - 0: The maximum resident set size (KB) = 664532 + 0: The total amount of wall time = 88.533006 + 0: The maximum resident set size (KB) = 669092 -Test 157 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8 -Checking test 158 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8 +Checking test 159 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4916,19 +4928,19 @@ Checking test 158 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 = 242.242097 - 0: The maximum resident set size (KB) = 2977900 + 0: The total amount of wall time = 225.177775 + 0: The maximum resident set size (KB) = 2977980 -Test 158 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8_rad -Checking test 159 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4967,19 +4979,19 @@ Checking test 159 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 = 291.117587 - 0: The maximum resident set size (KB) = 3049748 + 0: The total amount of wall time = 286.173279 + 0: The maximum resident set size (KB) = 3044276 -Test 159 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8_rad_micro -Checking test 160 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -5018,21 +5030,21 @@ Checking test 160 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 = 293.170272 - 0: The maximum resident set size (KB) = 3054616 + 0: The total amount of wall time = 281.847093 + 0: The maximum resident set size (KB) = 3056468 -Test 160 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq -Checking test 161 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq +Checking test 162 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5041,19 +5053,19 @@ Checking test 161 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 = 626.504328 - 0: The maximum resident set size (KB) = 1474504 + 0: The total amount of wall time = 660.137664 + 0: The maximum resident set size (KB) = 1478380 -Test 161 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq_debug -Checking test 162 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq_debug +Checking test 163 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -5062,21 +5074,21 @@ Checking test 162 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 = 1259.295606 - 0: The maximum resident set size (KB) = 1256968 + 0: The total amount of wall time = 1234.167126 + 0: The maximum resident set size (KB) = 1406292 -Test 162 regional_atmaq_debug PASS +Test 163 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq_faster -Checking test 163 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq_faster +Checking test 164 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5085,12 +5097,12 @@ Checking test 163 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 = 546.273887 - 0: The maximum resident set size (KB) = 1478012 + 0: The total amount of wall time = 566.304933 + 0: The maximum resident set size (KB) = 1476176 -Test 163 regional_atmaq_faster PASS +Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 17:06:01 CDT 2023 -Elapsed time: 01h:24m:36s. Have a nice day! +Wed Apr 5 22:13:32 CDT 2023 +Elapsed time: 01h:19m:20s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index a35a27f47e..fe9447cb40 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,35 +1,34 @@ -Mon Mar 27 19:44:52 UTC 2023 +Thu Apr 6 00:42:19 UTC 2023 Start Regression test -Test 009 compile FAIL - -Compile 001 elapsed time 1261 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 632 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 1031 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 539 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 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1127 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 1008 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 741 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 680 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 646 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 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1131 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 762 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 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 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 019 elapsed time 253 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 1376 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 585 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 684 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1381 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 919 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 871 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8_mixedmode +Compile 001 elapsed time 1057 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 584 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1075 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 1342 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1151 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 1148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1262 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 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 999 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 687 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 719 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 1158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 1100 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 361 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 238 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 803 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 917 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 837 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 793 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.576052 -The maximum resident set size (KB) = 2949276 +The total amount of wall time = 336.728650 +The maximum resident set size (KB) = 2950320 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -166,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.756426 -The maximum resident set size (KB) = 2983704 +The total amount of wall time = 385.548641 +The maximum resident set size (KB) = 2987828 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -226,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 251.699068 -The maximum resident set size (KB) = 2869288 +The total amount of wall time = 236.424985 +The maximum resident set size (KB) = 2866300 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -298,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 398.286602 -The maximum resident set size (KB) = 2993684 +The total amount of wall time = 389.655339 +The maximum resident set size (KB) = 2997836 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -358,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 270.556391 -The maximum resident set size (KB) = 2879020 +The total amount of wall time = 234.869457 +The maximum resident set size (KB) = 2881420 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -418,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.241971 -The maximum resident set size (KB) = 3284716 +The total amount of wall time = 368.126057 +The maximum resident set size (KB) = 3285620 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -478,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.106123 -The maximum resident set size (KB) = 2978356 +The total amount of wall time = 381.208124 +The maximum resident set size (KB) = 2979048 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -538,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.879122 -The maximum resident set size (KB) = 2908488 +The total amount of wall time = 322.349790 +The maximum resident set size (KB) = 2911004 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -610,17 +609,17 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 401.183085 -The maximum resident set size (KB) = 2982776 +The total amount of wall time = 386.095867 +The maximum resident set size (KB) = 2985616 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -665,17 +664,17 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 1034.217598 -The maximum resident set size (KB) = 3928900 +The total amount of wall time = 938.785837 +The maximum resident set size (KB) = 3929120 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -720,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 692.067959 -The maximum resident set size (KB) = 3891432 +The total amount of wall time = 655.015200 +The maximum resident set size (KB) = 3891332 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -791,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 303.748309 -The maximum resident set size (KB) = 1576420 +The total amount of wall time = 281.919847 +The maximum resident set size (KB) = 1571520 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -860,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 323.796206 -The maximum resident set size (KB) = 1634116 +The total amount of wall time = 300.371495 +The maximum resident set size (KB) = 1634868 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -929,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 313.446160 -The maximum resident set size (KB) = 1628488 +The total amount of wall time = 312.250586 +The maximum resident set size (KB) = 1627168 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -986,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 450.848792 -The maximum resident set size (KB) = 2632784 +The total amount of wall time = 436.933588 +The maximum resident set size (KB) = 2638128 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1043,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 136.611768 -The maximum resident set size (KB) = 2645764 +The total amount of wall time = 124.442487 +The maximum resident set size (KB) = 2652972 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1100,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 95.600996 -The maximum resident set size (KB) = 2069904 +The total amount of wall time = 69.900784 +The maximum resident set size (KB) = 2075108 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1172,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 399.624125 -The maximum resident set size (KB) = 2982088 +The total amount of wall time = 379.478615 +The maximum resident set size (KB) = 2977240 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1206,55 +1205,55 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 134.111744 -The maximum resident set size (KB) = 518816 +The total amount of wall time = 129.394818 +The maximum resident set size (KB) = 515616 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_latlon Checking test 020 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.943115 -The maximum resident set size (KB) = 519032 +The total amount of wall time = 133.758195 +The maximum resident set size (KB) = 518480 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.497465 -The maximum resident set size (KB) = 518432 +The total amount of wall time = 136.226975 +The maximum resident set size (KB) = 516952 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c48 Checking test 022 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1288,55 +1287,55 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.476361 -The maximum resident set size (KB) = 674516 +The total amount of wall time = 326.555007 +The maximum resident set size (KB) = 677040 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c192 Checking test 023 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 563.714086 -The maximum resident set size (KB) = 616740 +The total amount of wall time = 528.786323 +The maximum resident set size (KB) = 615116 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c384 Checking test 024 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 631.162450 -The maximum resident set size (KB) = 928108 +The total amount of wall time = 565.853566 +The maximum resident set size (KB) = 923108 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c384gdas Checking test 025 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1374,71 +1373,71 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 517.918213 -The maximum resident set size (KB) = 1056048 +The total amount of wall time = 497.510830 +The maximum resident set size (KB) = 1058140 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy Checking test 026 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.634049 -The maximum resident set size (KB) = 522764 +The total amount of wall time = 90.136176 +The maximum resident set size (KB) = 523184 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy_restart Checking test 027 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 56.165182 -The maximum resident set size (KB) = 291392 +The total amount of wall time = 49.535965 +The maximum resident set size (KB) = 292240 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_lndp Checking test 028 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.110461 -The maximum resident set size (KB) = 520676 +The total amount of wall time = 83.302779 +The maximum resident set size (KB) = 520824 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_iovr4 Checking test 029 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1446,21 +1445,21 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.107861 -The maximum resident set size (KB) = 517652 +The total amount of wall time = 136.413403 +The maximum resident set size (KB) = 516840 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_iovr5 Checking test 030 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1468,21 +1467,21 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.888284 -The maximum resident set size (KB) = 518028 +The total amount of wall time = 137.368227 +The maximum resident set size (KB) = 519880 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8 Checking test 031 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1522,17 +1521,17 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.295451 -The maximum resident set size (KB) = 1482352 +The total amount of wall time = 180.529536 +The maximum resident set size (KB) = 1482344 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_restart_p8 Checking test 032 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1568,21 +1567,21 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 114.081492 -The maximum resident set size (KB) = 657232 +The total amount of wall time = 102.092135 +The maximum resident set size (KB) = 654348 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_qr_p8 Checking test 033 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1622,17 +1621,17 @@ Checking test 033 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 191.743479 -The maximum resident set size (KB) = 1493068 +The total amount of wall time = 178.547696 +The maximum resident set size (KB) = 1489152 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1668,19 +1667,19 @@ Checking test 034 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 128.088320 -The maximum resident set size (KB) = 665744 +The total amount of wall time = 103.474910 +The maximum resident set size (KB) = 662984 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_decomp_p8 Checking test 035 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1718,19 +1717,19 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 219.427520 -The maximum resident set size (KB) = 1482736 +The total amount of wall time = 182.521279 +The maximum resident set size (KB) = 1479688 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_2threads_p8 Checking test 036 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1768,23 +1767,23 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.923659 -The maximum resident set size (KB) = 1564036 +The total amount of wall time = 157.635867 +The maximum resident set size (KB) = 1570716 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_lndp Checking test 037 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1794,21 +1793,21 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 334.901589 -The maximum resident set size (KB) = 1489916 +The total amount of wall time = 322.477536 +The maximum resident set size (KB) = 1486080 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1848,21 +1847,21 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.532398 -The maximum resident set size (KB) = 1555356 +The total amount of wall time = 235.121222 +The maximum resident set size (KB) = 1546444 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_mynn Checking test 039 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1902,21 +1901,21 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.848416 -The maximum resident set size (KB) = 1488108 +The total amount of wall time = 181.587118 +The maximum resident set size (KB) = 1496676 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/merra2_thompson Checking test 040 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1956,114 +1955,114 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.462621 -The maximum resident set size (KB) = 1498400 +The total amount of wall time = 204.419087 +The maximum resident set size (KB) = 1494312 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control Checking test 041 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.557436 -The maximum resident set size (KB) = 656052 +The total amount of wall time = 290.429088 +The maximum resident set size (KB) = 651684 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_restart Checking test 042 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.507001 -The maximum resident set size (KB) = 650944 +The total amount of wall time = 157.732425 +The maximum resident set size (KB) = 651880 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control_qr Checking test 043 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.752862 -The maximum resident set size (KB) = 657500 +The total amount of wall time = 289.170969 +The maximum resident set size (KB) = 655852 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_restart_qr Checking test 044 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 204.241115 -The maximum resident set size (KB) = 650996 +The total amount of wall time = 156.769625 +The maximum resident set size (KB) = 652304 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_decomp Checking test 045 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 318.410298 -The maximum resident set size (KB) = 652276 +The total amount of wall time = 306.472941 +The maximum resident set size (KB) = 652172 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_2threads Checking test 046 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 192.240716 -The maximum resident set size (KB) = 700504 +The total amount of wall time = 178.725528 +The maximum resident set size (KB) = 700932 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2071,71 +2070,71 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 325.323979 -The maximum resident set size (KB) = 647264 +The total amount of wall time = 314.490186 +The maximum resident set size (KB) = 645324 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK -The total amount of wall time = 293.095167 -The maximum resident set size (KB) = 652376 +The total amount of wall time = 291.272505 +The maximum resident set size (KB) = 648916 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.132061 -The maximum resident set size (KB) = 655448 +The total amount of wall time = 293.500139 +The maximum resident set size (KB) = 656644 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_wofs Checking test 050 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 379.953703 -The maximum resident set size (KB) = 335812 +The total amount of wall time = 362.082661 +The maximum resident set size (KB) = 339704 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control Checking test 051 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2175,39 +2174,39 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.634146 -The maximum resident set size (KB) = 899304 +The total amount of wall time = 420.013740 +The maximum resident set size (KB) = 893448 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.903768 -The maximum resident set size (KB) = 979948 +The total amount of wall time = 242.850251 +The maximum resident set size (KB) = 991268 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_decomp Checking test 053 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2247,21 +2246,21 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.322660 -The maximum resident set size (KB) = 897048 +The total amount of wall time = 434.735098 +The maximum resident set size (KB) = 894772 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_2threads Checking test 054 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2301,17 +2300,17 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 390.237057 -The maximum resident set size (KB) = 971072 +The total amount of wall time = 387.254254 +The maximum resident set size (KB) = 966500 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_restart Checking test 055 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2347,21 +2346,21 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.917849 -The maximum resident set size (KB) = 649176 +The total amount of wall time = 212.084941 +The maximum resident set size (KB) = 646792 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff Checking test 056 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2401,21 +2400,21 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.069837 -The maximum resident set size (KB) = 899652 +The total amount of wall time = 421.556771 +The maximum resident set size (KB) = 891652 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2455,17 +2454,17 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 442.709733 -The maximum resident set size (KB) = 896852 +The total amount of wall time = 438.998952 +The maximum resident set size (KB) = 896944 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2501,21 +2500,21 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 319.341853 -The maximum resident set size (KB) = 643512 +The total amount of wall time = 309.455117 +The maximum resident set size (KB) = 645776 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control Checking test 059 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2555,21 +2554,21 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.318778 -The maximum resident set size (KB) = 896144 +The total amount of wall time = 406.075247 +The maximum resident set size (KB) = 890956 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2609,21 +2608,21 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.922728 -The maximum resident set size (KB) = 893932 +The total amount of wall time = 422.222274 +The maximum resident set size (KB) = 889636 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2663,17 +2662,17 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 379.924391 -The maximum resident set size (KB) = 964684 +The total amount of wall time = 373.139199 +The maximum resident set size (KB) = 959304 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_restart Checking test 062 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2709,21 +2708,21 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 303.100061 -The maximum resident set size (KB) = 641480 +The total amount of wall time = 299.322521 +The maximum resident set size (KB) = 641024 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1beta Checking test 063 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2763,21 +2762,21 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 423.734504 -The maximum resident set size (KB) = 889048 +The total amount of wall time = 417.676570 +The maximum resident set size (KB) = 891752 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2785,21 +2784,21 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 486.881294 -The maximum resident set size (KB) = 578012 +The total amount of wall time = 483.821681 +The maximum resident set size (KB) = 580344 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2807,97 +2806,163 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 478.696384 -The maximum resident set size (KB) = 573752 +The total amount of wall time = 471.365114 +The maximum resident set size (KB) = 570712 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 152.048124 -The maximum resident set size (KB) = 798520 +The total amount of wall time = 153.277226 +The maximum resident set size (KB) = 803820 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 106.943772 -The maximum resident set size (KB) = 800704 +The total amount of wall time = 108.865101 +The maximum resident set size (KB) = 806048 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 137.889262 -The maximum resident set size (KB) = 780016 +The total amount of wall time = 139.924329 +The maximum resident set size (KB) = 779776 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 153.354325 -The maximum resident set size (KB) = 804960 +The total amount of wall time = 153.276969 +The maximum resident set size (KB) = 810760 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wam -Checking test 073 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 68.069474 +The maximum resident set size (KB) = 762212 + +Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmg +Checking test 071 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 348.330629 +The maximum resident set size (KB) = 587284 + +Test 071 control_csawmg PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmgt +Checking test 072 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 347.866244 +The maximum resident set size (KB) = 588456 + +Test 072 control_csawmgt PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_ras +Checking test 073 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 181.804696 +The maximum resident set size (KB) = 556216 + +Test 073 control_ras PASS -The total amount of wall time = 127.339665 -The maximum resident set size (KB) = 279100 -Test 073 control_wam PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wam +Checking test 074 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK +The total amount of wall time = 118.406801 +The maximum resident set size (KB) = 279172 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_faster -Checking test 074 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +Test 074 control_wam PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_faster +Checking test 075 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2937,75 +3002,75 @@ 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 -The total amount of wall time = 193.723083 -The maximum resident set size (KB) = 1496188 +The total amount of wall time = 175.123273 +The maximum resident set size (KB) = 1485816 -Test 074 control_p8_faster PASS +Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control_faster -Checking test 075 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control_faster +Checking test 076 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.126400 -The maximum resident set size (KB) = 652640 +The total amount of wall time = 282.395317 +The maximum resident set size (KB) = 658536 -Test 075 regional_control_faster PASS +Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 939.758947 -The maximum resident set size (KB) = 831480 +The total amount of wall time = 898.980681 +The maximum resident set size (KB) = 829560 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 568.292951 -The maximum resident set size (KB) = 835084 +The total amount of wall time = 518.790152 +The maximum resident set size (KB) = 836376 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_conus13km_hrrr_warm_debug -Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 866.412453 -The maximum resident set size (KB) = 813552 +The total amount of wall time = 808.289570 +The maximum resident set size (KB) = 804604 -Test 078 rrfs_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_CubedSphereGrid_debug -Checking test 079 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_CubedSphereGrid_debug +Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3031,359 +3096,359 @@ Checking test 079 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 179.273488 -The maximum resident set size (KB) = 677092 +The total amount of wall time = 158.304513 +The maximum resident set size (KB) = 677868 -Test 079 control_CubedSphereGrid_debug PASS +Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wrtGauss_netcdf_parallel_debug -Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wrtGauss_netcdf_parallel_debug +Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 169.833733 -The maximum resident set size (KB) = 680688 +The total amount of wall time = 157.812708 +The maximum resident set size (KB) = 674572 -Test 080 control_wrtGauss_netcdf_parallel_debug PASS +Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy_debug -Checking test 081 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy_debug +Checking test 082 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 186.293965 -The maximum resident set size (KB) = 686524 +The total amount of wall time = 178.512836 +The maximum resident set size (KB) = 683444 -Test 081 control_stochy_debug PASS +Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_lndp_debug -Checking test 082 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_lndp_debug +Checking test 083 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 169.371575 -The maximum resident set size (KB) = 689640 +The total amount of wall time = 171.628039 +The maximum resident set size (KB) = 684232 -Test 082 control_lndp_debug PASS +Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_csawmg_debug -Checking test 083 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmg_debug +Checking test 084 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 265.189655 -The maximum resident set size (KB) = 720152 +The total amount of wall time = 256.184904 +The maximum resident set size (KB) = 717620 -Test 083 control_csawmg_debug PASS +Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_csawmgt_debug -Checking test 084 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmgt_debug +Checking test 085 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 256.319757 -The maximum resident set size (KB) = 720724 +The total amount of wall time = 249.048542 +The maximum resident set size (KB) = 719236 -Test 084 control_csawmgt_debug PASS +Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_ras_debug -Checking test 085 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_ras_debug +Checking test 086 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 166.707845 -The maximum resident set size (KB) = 693092 +The total amount of wall time = 161.184289 +The maximum resident set size (KB) = 689968 -Test 085 control_ras_debug PASS +Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_diag_debug -Checking test 086 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_diag_debug +Checking test 087 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 167.628123 -The maximum resident set size (KB) = 738256 +The total amount of wall time = 162.191288 +The maximum resident set size (KB) = 736064 -Test 086 control_diag_debug PASS +Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_debug_p8 -Checking test 087 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_debug_p8 +Checking test 088 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 194.945749 -The maximum resident set size (KB) = 1507892 +The total amount of wall time = 186.650628 +The maximum resident set size (KB) = 1507560 -Test 087 control_debug_p8 PASS +Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_debug -Checking test 088 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_debug +Checking test 089 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -The total amount of wall time = 1042.630987 -The maximum resident set size (KB) = 678244 +The total amount of wall time = 1047.654003 +The maximum resident set size (KB) = 677760 -Test 088 regional_debug PASS +Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_debug -Checking test 089 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_debug +Checking test 090 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 305.976502 -The maximum resident set size (KB) = 1056572 +The total amount of wall time = 297.791519 +The maximum resident set size (KB) = 1054888 -Test 089 rap_control_debug PASS +Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_debug -Checking test 090 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_debug +Checking test 091 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 297.309110 -The maximum resident set size (KB) = 1051692 +The total amount of wall time = 290.109656 +The maximum resident set size (KB) = 1046884 -Test 090 hrrr_control_debug PASS +Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_unified_drag_suite_debug -Checking test 091 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_unified_drag_suite_debug +Checking test 092 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 301.755737 -The maximum resident set size (KB) = 1059848 +The total amount of wall time = 298.905103 +The maximum resident set size (KB) = 1057952 -Test 091 rap_unified_drag_suite_debug PASS +Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_diag_debug -Checking test 092 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_diag_debug +Checking test 093 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 318.689692 -The maximum resident set size (KB) = 1141856 +The total amount of wall time = 311.216080 +The maximum resident set size (KB) = 1136036 -Test 092 rap_diag_debug PASS +Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_cires_ugwp_debug -Checking test 093 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_cires_ugwp_debug +Checking test 094 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 309.320706 -The maximum resident set size (KB) = 1058176 +The total amount of wall time = 304.383521 +The maximum resident set size (KB) = 1052068 -Test 093 rap_cires_ugwp_debug PASS +Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_unified_ugwp_debug -Checking test 094 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_unified_ugwp_debug +Checking test 095 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 314.820359 -The maximum resident set size (KB) = 1054604 +The total amount of wall time = 303.204708 +The maximum resident set size (KB) = 1054512 -Test 094 rap_unified_ugwp_debug PASS +Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_lndp_debug -Checking test 095 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_lndp_debug +Checking test 096 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 310.720102 -The maximum resident set size (KB) = 1058312 +The total amount of wall time = 301.809692 +The maximum resident set size (KB) = 1056076 -Test 095 rap_lndp_debug PASS +Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_flake_debug -Checking test 096 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_flake_debug +Checking test 097 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 306.923322 -The maximum resident set size (KB) = 1056312 +The total amount of wall time = 298.407637 +The maximum resident set size (KB) = 1053640 -Test 096 rap_flake_debug PASS +Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_progcld_thompson_debug -Checking test 097 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 307.085363 -The maximum resident set size (KB) = 1057220 +The total amount of wall time = 297.035714 +The maximum resident set size (KB) = 1055808 -Test 097 rap_progcld_thompson_debug PASS +Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_noah_debug -Checking test 098 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 303.547878 -The maximum resident set size (KB) = 1054056 +The total amount of wall time = 290.766922 +The maximum resident set size (KB) = 1052284 -Test 098 rap_noah_debug PASS +Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_debug -Checking test 099 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 312.274589 -The maximum resident set size (KB) = 1056608 +The total amount of wall time = 297.807315 +The maximum resident set size (KB) = 1057488 -Test 099 rap_sfcdiff_debug PASS +Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 496.854929 -The maximum resident set size (KB) = 1053472 +The total amount of wall time = 488.568616 +The maximum resident set size (KB) = 1052148 -Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1beta_debug -Checking test 101 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 303.664322 -The maximum resident set size (KB) = 1050844 +The total amount of wall time = 293.703725 +The maximum resident set size (KB) = 1052644 -Test 101 rrfs_v1beta_debug PASS +Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wam_debug -Checking test 102 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wam_debug +Checking test 103 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 298.158036 -The maximum resident set size (KB) = 303580 +The total amount of wall time = 296.527311 +The maximum resident set size (KB) = 301008 -Test 102 control_wam_debug PASS +Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 245.063442 -The maximum resident set size (KB) = 891720 +The total amount of wall time = 233.786797 +The maximum resident set size (KB) = 892668 -Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn32_phy32 -Checking test 104 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn32_phy32 +Checking test 105 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3423,21 +3488,21 @@ Checking test 104 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 = 377.894547 -The maximum resident set size (KB) = 779144 +The total amount of wall time = 351.043936 +The maximum resident set size (KB) = 781568 -Test 104 rap_control_dyn32_phy32 PASS +Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_dyn32_phy32 -Checking test 105 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_dyn32_phy32 +Checking test 106 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3477,21 +3542,21 @@ Checking test 105 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 = 198.217626 -The maximum resident set size (KB) = 776136 +The total amount of wall time = 190.987790 +The maximum resident set size (KB) = 779016 -Test 105 hrrr_control_dyn32_phy32 PASS +Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_2threads_dyn32_phy32 -Checking test 106 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_2threads_dyn32_phy32 +Checking test 107 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3531,21 +3596,21 @@ Checking test 106 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 = 431.520767 -The maximum resident set size (KB) = 840700 +The total amount of wall time = 333.321258 +The maximum resident set size (KB) = 840080 -Test 106 rap_2threads_dyn32_phy32 PASS +Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_2threads_dyn32_phy32 -Checking test 107 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_2threads_dyn32_phy32 +Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3585,21 +3650,21 @@ Checking test 107 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 = 186.238011 -The maximum resident set size (KB) = 826632 +The total amount of wall time = 178.238328 +The maximum resident set size (KB) = 835596 -Test 107 hrrr_control_2threads_dyn32_phy32 PASS +Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_decomp_dyn32_phy32 -Checking test 108 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_decomp_dyn32_phy32 +Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3639,17 +3704,17 @@ Checking test 108 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 = 202.505699 -The maximum resident set size (KB) = 779412 +The total amount of wall time = 194.506192 +The maximum resident set size (KB) = 779860 -Test 108 hrrr_control_decomp_dyn32_phy32 PASS +Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_restart_dyn32_phy32 -Checking test 109 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_restart_dyn32_phy32 +Checking test 110 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3685,17 +3750,17 @@ Checking test 109 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 = 266.036643 -The maximum resident set size (KB) = 618336 +The total amount of wall time = 258.355933 +The maximum resident set size (KB) = 614684 -Test 109 rap_restart_dyn32_phy32 PASS +Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_restart_dyn32_phy32 -Checking test 110 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_restart_dyn32_phy32 +Checking test 111 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3731,21 +3796,21 @@ Checking test 110 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 = 173.963943 -The maximum resident set size (KB) = 610188 +The total amount of wall time = 98.629208 +The maximum resident set size (KB) = 610560 -Test 110 hrrr_control_restart_dyn32_phy32 PASS +Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn64_phy32 -Checking test 111 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn64_phy32 +Checking test 112 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3785,293 +3850,293 @@ Checking test 111 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 = 290.869216 -The maximum resident set size (KB) = 799628 +The total amount of wall time = 233.518293 +The maximum resident set size (KB) = 795556 -Test 111 rap_control_dyn64_phy32 PASS +Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_debug_dyn32_phy32 -Checking test 112 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_debug_dyn32_phy32 +Checking test 113 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 321.842225 -The maximum resident set size (KB) = 942124 +The total amount of wall time = 291.166316 +The maximum resident set size (KB) = 939620 -Test 112 rap_control_debug_dyn32_phy32 PASS +Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_debug_dyn32_phy32 -Checking test 113 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_debug_dyn32_phy32 +Checking test 114 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 334.942000 -The maximum resident set size (KB) = 941068 +The total amount of wall time = 286.838919 +The maximum resident set size (KB) = 936124 -Test 113 hrrr_control_debug_dyn32_phy32 PASS +Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn64_phy32_debug -Checking test 114 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn64_phy32_debug +Checking test 115 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 382.997427 -The maximum resident set size (KB) = 964388 +The total amount of wall time = 294.530748 +The maximum resident set size (KB) = 954648 -Test 114 rap_control_dyn64_phy32_debug PASS +Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm -Checking test 115 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm +Checking test 116 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 318.643347 -The maximum resident set size (KB) = 820140 +The total amount of wall time = 272.951705 +The maximum resident set size (KB) = 820444 -Test 115 hafs_regional_atm PASS +Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_thompson_gfdlsf -Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_thompson_gfdlsf +Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 414.450617 -The maximum resident set size (KB) = 1174032 +The total amount of wall time = 316.640575 +The maximum resident set size (KB) = 1175740 -Test 116 hafs_regional_atm_thompson_gfdlsf PASS +Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_ocn -Checking test 117 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_ocn +Checking test 118 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 414.121244 -The maximum resident set size (KB) = 856284 +The total amount of wall time = 393.659209 +The maximum resident set size (KB) = 856312 -Test 117 hafs_regional_atm_ocn PASS +Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_wav -Checking test 118 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_wav +Checking test 119 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 738.052457 -The maximum resident set size (KB) = 884928 +The total amount of wall time = 707.665131 +The maximum resident set size (KB) = 890280 -Test 118 hafs_regional_atm_wav PASS +Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_ocn_wav -Checking test 119 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_ocn_wav +Checking test 120 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 918.749197 -The maximum resident set size (KB) = 914128 +The total amount of wall time = 906.201459 +The maximum resident set size (KB) = 910684 -Test 119 hafs_regional_atm_ocn_wav PASS +Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_1nest_atm -Checking test 120 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_1nest_atm +Checking test 121 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 457.392533 -The maximum resident set size (KB) = 393452 +The total amount of wall time = 334.261709 +The maximum resident set size (KB) = 393240 -Test 120 hafs_regional_1nest_atm PASS +Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_telescopic_2nests_atm -Checking test 121 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_telescopic_2nests_atm +Checking test 122 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 551.461638 -The maximum resident set size (KB) = 401040 +The total amount of wall time = 404.901220 +The maximum resident set size (KB) = 402044 -Test 121 hafs_regional_telescopic_2nests_atm PASS +Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_1nest_atm -Checking test 122 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_1nest_atm +Checking test 123 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 323.475691 -The maximum resident set size (KB) = 287176 +The total amount of wall time = 175.212235 +The maximum resident set size (KB) = 287572 -Test 122 hafs_global_1nest_atm PASS +Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_multiple_4nests_atm -Checking test 123 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_multiple_4nests_atm +Checking test 124 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 529.672172 -The maximum resident set size (KB) = 345676 +The total amount of wall time = 487.641496 +The maximum resident set size (KB) = 349052 -Test 123 hafs_global_multiple_4nests_atm PASS +Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_specified_moving_1nest_atm -Checking test 124 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_specified_moving_1nest_atm +Checking test 125 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 250.297976 -The maximum resident set size (KB) = 405156 +The total amount of wall time = 219.603381 +The maximum resident set size (KB) = 408240 -Test 124 hafs_regional_specified_moving_1nest_atm PASS +Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm -Checking test 125 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm +Checking test 126 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 221.601086 -The maximum resident set size (KB) = 404732 +The total amount of wall time = 206.404911 +The maximum resident set size (KB) = 407304 -Test 125 hafs_regional_storm_following_1nest_atm PASS +Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 284.775445 -The maximum resident set size (KB) = 466660 +The total amount of wall time = 255.489896 +The maximum resident set size (KB) = 467380 -Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_storm_following_1nest_atm -Checking test 127 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_storm_following_1nest_atm +Checking test 128 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 221.585334 -The maximum resident set size (KB) = 282304 +The total amount of wall time = 88.058309 +The maximum resident set size (KB) = 284040 -Test 127 hafs_global_storm_following_1nest_atm PASS +Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 901.392430 -The maximum resident set size (KB) = 502576 +The total amount of wall time = 807.548133 +The maximum resident set size (KB) = 498656 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 515.695100 -The maximum resident set size (KB) = 522384 +The total amount of wall time = 503.611338 +The maximum resident set size (KB) = 523184 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_atmlnd_sbs -Checking test 130 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_atmlnd_sbs +Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4155,19 +4220,19 @@ Checking test 130 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 = 252.162892 -The maximum resident set size (KB) = 1543304 +The total amount of wall time = 246.928592 +The maximum resident set size (KB) = 1545180 -Test 130 control_p8_atmlnd_sbs PASS +Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8 -Checking test 131 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8 +Checking test 132 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4206,19 +4271,19 @@ Checking test 131 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 = 257.052188 -The maximum resident set size (KB) = 2812092 +The total amount of wall time = 249.392604 +The maximum resident set size (KB) = 2811828 -Test 131 atmaero_control_p8 PASS +Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8_rad -Checking test 132 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8_rad +Checking test 133 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4257,19 +4322,19 @@ Checking test 132 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 = 289.320725 -The maximum resident set size (KB) = 2876868 +The total amount of wall time = 284.789294 +The maximum resident set size (KB) = 2876684 -Test 132 atmaero_control_p8_rad PASS +Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8_rad_micro -Checking test 133 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8_rad_micro +Checking test 134 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4308,21 +4373,21 @@ Checking test 133 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 = 310.459746 -The maximum resident set size (KB) = 2885836 +The total amount of wall time = 290.295771 +The maximum resident set size (KB) = 2889168 -Test 133 atmaero_control_p8_rad_micro PASS +Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq -Checking test 134 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq +Checking test 135 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4331,19 +4396,19 @@ Checking test 134 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 = 735.908499 -The maximum resident set size (KB) = 1266256 +The total amount of wall time = 684.431582 +The maximum resident set size (KB) = 1265464 -Test 134 regional_atmaq PASS +Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq_debug -Checking test 135 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq_debug +Checking test 136 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4352,21 +4417,21 @@ Checking test 135 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 = 1375.523275 -The maximum resident set size (KB) = 1298876 +The total amount of wall time = 1299.507460 +The maximum resident set size (KB) = 1295656 -Test 135 regional_atmaq_debug PASS +Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq_faster -Checking test 136 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq_faster +Checking test 137 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4375,76 +4440,12 @@ Checking test 136 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 = 683.263580 -The maximum resident set size (KB) = 1258628 - -Test 136 regional_atmaq_faster PASS - -FAILED TESTS: -Test compile_009 failed in run_compile failed - -REGRESSION TEST FAILED -Mon Mar 27 21:00:16 UTC 2023 -Elapsed time: 01h:15m:25s. Have a nice day! -Mon Mar 27 22:49:57 UTC 2023 -Start Regression test - -Compile 001 elapsed time 467 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 - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_csawmg -Checking test 001 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 363.003823 -The maximum resident set size (KB) = 590312 - -Test 001 control_csawmg PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_csawmgt -Checking test 002 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 355.147428 -The maximum resident set size (KB) = 592048 - -Test 002 control_csawmgt PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_ras -Checking test 003 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 190.197532 -The maximum resident set size (KB) = 554772 +The total amount of wall time = 638.833184 +The maximum resident set size (KB) = 1260944 -Test 003 control_ras PASS +Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 23:08:23 UTC 2023 -Elapsed time: 00h:18m:27s. Have a nice day! +Thu Apr 6 01:46:54 UTC 2023 +Elapsed time: 01h:04m:35s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index b858a7e0d9..56249c3500 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -63,11 +63,6 @@ else # Load fv3 module module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}" - if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then - if [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] || [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug.lua ]]; then - modulefile="ufs_${MACHINE_ID}_debug" - fi - fi module load $modulefile module list fi @@ -131,18 +126,10 @@ export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; 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 +if [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} else - 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 - fi + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua fi if [ $clean_after = YES ] ; then diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index ffa08d4554..b2fc151041 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -6,7 +6,7 @@ #PBS -A @[ACCNR] #PBS -q @[QUEUE] #PBS -l select=1:ncpus=8:mpiprocs=1:mem=32G -#PBS -l walltime=00:30:00 +#PBS -l walltime=00:45:00 set -eux diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index a6380af5c1..890b10ddab 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -130,7 +130,8 @@ else # WAVE restart file if [[ $CPLWAV == .true. ]]; then - cp ../${DEP_RUN}${SUFFIX}/${RESTART_FILE_PREFIX}.restart.ww3 ./restart.ww3 + RFILE=ufs.cpld.ww3.r.${RESTART_FILE_SUFFIX_SECS} + cp ../${DEP_RUN}${SUFFIX}/${RFILE} . fi else diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 3f4da44a0f..7cce5c1784 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -74,6 +74,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.cpld_esmfthreads.IN b/tests/parm/nems.configure.cpld_esmfthreads.IN index 3f4da44a0f..7cce5c1784 100644 --- a/tests/parm/nems.configure.cpld_esmfthreads.IN +++ b/tests/parm/nems.configure.cpld_esmfthreads.IN @@ -74,6 +74,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.cpld_noaero.IN b/tests/parm/nems.configure.cpld_noaero.IN index d12b8e836d..e3a46f7957 100644 --- a/tests/parm/nems.configure.cpld_noaero.IN +++ b/tests/parm/nems.configure.cpld_noaero.IN @@ -67,6 +67,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.cpld_noaero_outwav.IN b/tests/parm/nems.configure.cpld_noaero_outwav.IN index bd0b82a57f..5b2ab401b6 100644 --- a/tests/parm/nems.configure.cpld_noaero_outwav.IN +++ b/tests/parm/nems.configure.cpld_noaero_outwav.IN @@ -61,6 +61,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN index 1953903040..8785145257 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -86,6 +86,7 @@ WAV_attributes:: merge_import = .true. mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # Run Sequence # diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index dce5544c31..56cc2ac9dd 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -55,6 +55,7 @@ WAV_attributes:: merge_import = .true. mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # Run Sequence # diff --git a/tests/rt.conf b/tests/rt.conf index 3c2ed4bb76..2921b397b5 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -82,10 +82,10 @@ RUN | regional_control_qr RUN | regional_restart_qr | | | regional_control_qr RUN | regional_decomp | | | RUN | regional_2threads | | | -RUN | regional_noquilt | | fv3 | +RUN | regional_noquilt | - jet.intel | fv3 | RUN | regional_netcdf_parallel | - acorn.intel | fv3 | RUN | regional_2dwrtdecomp | | | -RUN | regional_wofs | | fv3 | +RUN | regional_wofs | - jet.intel | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON | + acorn.intel | fv3 | RUN | regional_ifi_control | + acorn.intel | fv3 | @@ -119,6 +119,9 @@ RUN | rrfs_smoke_conus13km_radar_tten_warm #RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | #RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm +# Just to make sure restart doesn't crash again: +RUN | rrfs_conus13km_hrrr_warm_restart_mismatch | | fv3 | rrfs_conus13km_hrrr_warm + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp | | fv3 | RUN | control_csawmg | - gaea.intel | fv3 | RUN | control_csawmgt | | fv3 | @@ -226,7 +229,7 @@ RUN | hafs_regional_storm_following_1nest_atm_ocn_wav COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2.intel | fv3 | RUN | hafs_regional_docn | - wcoss2.intel | fv3 | RUN | hafs_regional_docn_oisst | - wcoss2.intel | fv3 | -RUN | hafs_regional_datm_cdeps | - wcoss2.intel | fv3 | +RUN | hafs_regional_datm_cdeps | - wcoss2.intel -jet.intel | fv3 | ################################################################################################################################################################################### # CDEPS Data Atmosphere tests # @@ -292,9 +295,9 @@ RUN | atmaero_control_p8_rad_micro ################################################################################################################################################################################### COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | | fv3 | -RUN | regional_atmaq | | fv3 | +RUN | regional_atmaq | - jet.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | | fv3 | RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 | -RUN | regional_atmaq_faster | | fv3 | +RUN | regional_atmaq_faster | - jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 7b88a8d220..66081f3752 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230324 +BL_DATE=20230405 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index a0e5bfff58..2ec838b1ab 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -33,6 +33,9 @@ RUN | rrfs_smoke_conus13km_radar_tten_warm #RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | #RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm +# Just to make sure restart doesn't crash again: +RUN | rrfs_conus13km_hrrr_warm_restart_mismatch | | fv3 | rrfs_conus13km_hrrr_warm + ################################################################################################################################################################## # CCPP DEBUG tests # ################################################################################################################################################################## diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 251dbbaba5..9c3f0dfbcc 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -14,7 +14,7 @@ export LIST_FILES="atmf006.nc \ archs.2019_241_06.a \ out_grd.ww3 \ out_pnt.ww3 \ - 20190829.060000.restart.ww3 \ + ufs.hafs.ww3.r.2019-08-29-21600 \ ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 73830aba29..cd1a8d57c5 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -12,7 +12,7 @@ export LIST_FILES="atmf006.nc \ sfcf006.nc \ out_grd.ww3 \ out_pnt.ww3 \ - 20190829.060000.restart.ww3 \ + ufs.hafs.ww3.r.2019-08-29-21600 \ ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch new file mode 100644 index 0000000000..9c31539088 --- /dev/null +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch @@ -0,0 +1,106 @@ +############################################################################### +# +# HRRR physics on 13km domain, control run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control run" + +export CNTL_DIR=rrfs_conus13km_hrrr_warm_restart_mismatch + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export FHROT=1 +export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) +export RRFS_RESTART=YES + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN