From d3ddb946cae39ffcd25773171bd2632fafff4f56 Mon Sep 17 00:00:00 2001 From: cameronbook Date: Wed, 23 Aug 2023 20:33:58 +0000 Subject: [PATCH 01/30] Re-add C5 modulefile. --- modulefiles/ufs_gaea_c5.intel.lua | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 modulefiles/ufs_gaea_c5.intel.lua diff --git a/modulefiles/ufs_gaea_c5.intel.lua b/modulefiles/ufs_gaea_c5.intel.lua new file mode 100644 index 0000000000..250eb9aca5 --- /dev/null +++ b/modulefiles/ufs_gaea_c5.intel.lua @@ -0,0 +1,33 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) + +load("PrgEnv-intel/8.3.3") +load("intel-classic/2023.1.0") +load("cray-mpich/8.1.25") +load("python/3.9.12") + +prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-dev-20230717/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) + +load("ufs_common") + +unload("darshan-runtime") +unload("cray-libsci") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaea_c5.intel") From 0f8d71dbe24a7741aa241083487f03bdbe8ba9e3 Mon Sep 17 00:00:00 2001 From: cameronbook Date: Wed, 23 Aug 2023 20:40:58 +0000 Subject: [PATCH 02/30] Reinstate all the c5 changes that I botched with my git ignorance. --- cmake/configure_gaea_c5.intel.cmake | 4 +++ tests/compile.sh | 4 +-- tests/default_vars.sh | 13 +++++++++ tests/detect_machine.sh | 9 ++++++ tests/fv3_conf/compile_slurm.IN_gaea_c5 | 21 ++++++++++++++ tests/fv3_conf/fv3_slurm.IN_gaea_c5 | 37 +++++++++++++++++++++++++ tests/module-setup.sh | 2 +- tests/rt.sh | 22 ++++++++++++++- tests/rt_utils.sh | 2 +- tests/run_test.sh | 2 +- 10 files changed, 110 insertions(+), 6 deletions(-) create mode 100644 cmake/configure_gaea_c5.intel.cmake create mode 100644 tests/fv3_conf/compile_slurm.IN_gaea_c5 create mode 100644 tests/fv3_conf/fv3_slurm.IN_gaea_c5 diff --git a/cmake/configure_gaea_c5.intel.cmake b/cmake/configure_gaea_c5.intel.cmake new file mode 100644 index 0000000000..6037c6379f --- /dev/null +++ b/cmake/configure_gaea_c5.intel.cmake @@ -0,0 +1,4 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" 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/tests/compile.sh b/tests/compile.sh index 34d9b79d9b..804a728953 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -57,8 +57,8 @@ set +x if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} else - # Activate lua environment for gaea - if [[ $MACHINE_ID == gaea ]]; then + # Activate lua environment for gaea c4 / gaea c5 + if [[ $MACHINE_ID == gaea* ]]; then source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh fi # Load fv3 module diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cf114d876a..68d2d7ab56 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -213,6 +213,19 @@ elif [[ $MACHINE_ID = gaea ]]; then INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=264 +elif [[ $MACHINE_ID = gaea_c5 ]]; then + + TPN=128 + + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=1 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + THRD_cpl_atmw_gdas=3 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=264 + elif [[ $MACHINE_ID = cheyenne ]]; then TPN=36 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 5d3d360b4e..e325691c48 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -43,6 +43,15 @@ case $(hostname -f) in gaea15.ncrc.gov) MACHINE_ID=gaea ;; ### gaea15 gaea16.ncrc.gov) MACHINE_ID=gaea ;; ### gaea16 + gaea51.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea51 + gaea52.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea52 + gaea53.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea53 + gaea54.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea54 + gaea55.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea55 + gaea56.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea56 + gaea57.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea57 + gaea58.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea58 + hfe01) MACHINE_ID=hera ;; ### hera01 hfe02) MACHINE_ID=hera ;; ### hera02 hfe03) MACHINE_ID=hera ;; ### hera03 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea_c5 b/tests/fv3_conf/compile_slurm.IN_gaea_c5 new file mode 100644 index 0000000000..8c942053fc --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_gaea_c5 @@ -0,0 +1,21 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +##SBATCH --qos=@[QUEUE] +#SBATCH --clusters=es +#SBATCH --partition=eslogin_c5 +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --time=180 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea_c5 b/tests/fv3_conf/fv3_slurm.IN_gaea_c5 new file mode 100644 index 0000000000..828dc571e3 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_gaea_c5 @@ -0,0 +1,37 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --job-name="@[JBNME]" +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --clusters=@[PARTITION] +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=gaea_c5 +source ./module-setup.sh +module use --prepend $PWD/modulefiles +module load modules.fv3 +module list +set -x + +echo "Model started: " `date` + +export OMP_NUM_THREADS=@[THRD] +export OMP_STACKSIZE=1024M +export NC_BLKSZ=1M +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +srun --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/module-setup.sh b/tests/module-setup.sh index ed6dacec0d..444cee48a9 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -58,7 +58,7 @@ elif [[ $MACHINE_ID = stampede ]] ; then fi module purge -elif [[ $MACHINE_ID = gaea ]] ; then +elif [[ $MACHINE_ID = gaea* ]] ; then # We are on GAEA. if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA diff --git a/tests/rt.sh b/tests/rt.sh index c05ab0e47a..4e94413808 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -284,6 +284,26 @@ elif [[ $MACHINE_ID = gaea ]]; then SCHEDULER=slurm +elif [[ $MACHINE_ID = gaea_c5 ]]; then + + module load PrgEnv-intel/8.3.3 + module load intel-classic/2022.2.1 + module load cray-mpich/8.1.25 + module load python/3.9.12 + module use /lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles + module load ecflow/5.8.4 + ECFLOW_START=/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c5 + STMP=/lustre/f2/scratch + PTMP=/lustre/f2/scratch + + SCHEDULER=slurm + elif [[ $MACHINE_ID = hera ]]; then module load rocoto @@ -618,7 +638,7 @@ EOF QUEUE=batch elif [[ $MACHINE_ID = s4 ]]; then QUEUE=s4 - elif [[ $MACHINE_ID = gaea ]]; then + elif [[ $MACHINE_ID = gaea* ]]; then QUEUE=normal elif [[ $MACHINE_ID = cheyenne ]]; then QUEUE=regular diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c060cb3da5..17fce75e2f 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -347,7 +347,7 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ " orion hera wcoss2 acorn cheyenne gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then + if [[ " orion hera wcoss2 acorn cheyenne gaea gaea_c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then printf ".......ALT CHECK.." >> ${RT_LOG} printf ".......ALT CHECK.." if [[ $CMP_DATAONLY == false ]]; then diff --git a/tests/run_test.sh b/tests/run_test.sh index 4ddb02db8e..099d5dcfab 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -97,7 +97,7 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. cp ${PATHRT}/module-setup.sh module-setup.sh # load nccmp module -if [[ " hera orion gaea jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then +if [[ " hera orion gaea gaea_c5 jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then module load intel/19.1.3.304 netcdf/4.7.4 fi From b75413f054038377dfbb45a68d1ca3ab8a268fbd Mon Sep 17 00:00:00 2001 From: Cameron Book Date: Thu, 24 Aug 2023 12:34:25 -0400 Subject: [PATCH 03/30] Update ufs_common. Upate c5 modulefile. --- modulefiles/ufs_common.lua | 36 ++++++++++++++++--------------- modulefiles/ufs_gaea_c5.intel.lua | 2 +- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index eda73df6db..5d7ea4ee64 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -3,23 +3,25 @@ whatis("Description: UFS build environment common libraries") help([[Load UFS Model common libraries]]) local ufs_modules = { - {["jasper"] = "2.0.25"}, - {["zlib"] = "1.2.11"}, - {["libpng"] = "1.6.37"}, - {["hdf5"] = "1.14.0"}, - {["netcdf"] = "4.9.2"}, - {["pio"] = "2.5.10"}, - {["esmf"] = "8.4.2"}, - {["fms"] = "2023.01"}, - {["bacio"] = "2.4.1"}, - {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, - {["ip"] = "3.3.3"}, - {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, - {["gftl-shared"] = "v1.5.0"}, - {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["jasper"] = "2.0.32"}, + {["zlib"] = "1.2.13"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf-c"] = "4.9.2"}, + {["netcdf-fortran"] = "4.6.0"}, + {["parallelio"] = "2.5.10"}, + {["esmf"] = "8.4.2"}, + {["fms"] = "2023.01"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "1.5.0"}, + {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["scotch"] = "7.0.3"}, } for i = 1, #ufs_modules do diff --git a/modulefiles/ufs_gaea_c5.intel.lua b/modulefiles/ufs_gaea_c5.intel.lua index 250eb9aca5..a056cf960d 100644 --- a/modulefiles/ufs_gaea_c5.intel.lua +++ b/modulefiles/ufs_gaea_c5.intel.lua @@ -10,7 +10,7 @@ load("intel-classic/2023.1.0") load("cray-mpich/8.1.25") load("python/3.9.12") -prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-dev-20230717/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-dev-20230717/envs/ufs-pio-2.5.10/install/modulefiles/Core") prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" From 37015ed93ad0f6726d57558fee1dad5e5454e643 Mon Sep 17 00:00:00 2001 From: Cameron Book Date: Fri, 25 Aug 2023 00:44:54 -0400 Subject: [PATCH 04/30] TPN adjustments for C5 regional_atmaq tests. --- tests/tests/regional_atmaq | 2 +- tests/tests/regional_atmaq_debug | 2 +- tests/tests/regional_atmaq_faster | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 502530fbca..3d67d65bde 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -100,6 +100,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = cheyenne || $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = cheyenne || $MACHINE_ID = gaea* ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 3f743135b9..7e67ba31d3 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -98,6 +98,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = cheyenne ]]; then +elif [[ $MACHINE_ID = cheyenne || $MACHINE_ID = gaea* ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 246b5226d5..c8ba890a55 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -102,6 +102,6 @@ if [[ $MACHINE_ID = hera ]]; then TPN=30 elif [[ $MACHINE_ID = cheyenne ]]; then TPN=16 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaea* ]]; then TPN=18 fi From 8567959bece0cdbbeb879c2308b581f7afd83624 Mon Sep 17 00:00:00 2001 From: Cameron Book Date: Wed, 13 Sep 2023 15:57:35 -0400 Subject: [PATCH 05/30] Update. --- tests/compile.sh | 7 +++++-- tests/module-setup.sh | 14 +++++++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/tests/compile.sh b/tests/compile.sh index 804a728953..dc6a646812 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -57,9 +57,12 @@ set +x if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} else - # Activate lua environment for gaea c4 / gaea c5 - if [[ $MACHINE_ID == gaea* ]]; then + # Activate lua environment for gaea c4 + if [[ $MACHINE_ID == gaea ]]; then source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh + # Activate lua environment for gaea c5 + elif [[ $MACHINE_ID == gaea_c5 ]]; then + source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh fi # Load fv3 module module use $PATHTR/modulefiles diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 444cee48a9..d4e6645427 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -58,7 +58,7 @@ elif [[ $MACHINE_ID = stampede ]] ; then fi module purge -elif [[ $MACHINE_ID = gaea* ]] ; then +elif [[ $MACHINE_ID = gaea ]] ; then # We are on GAEA. if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA @@ -70,6 +70,18 @@ elif [[ $MACHINE_ID = gaea* ]] ; then fi source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh +elif [[ $MACHINE_ID = gaea_c5 ]] ; then + # We are on GAEA C5 + if ( ! eval module help > /dev/null 2>&1 ) ; then + # We cannot simply load the module command. The GAEA + # /etc/profile modifies a number of module-related variables + # before loading the module command. Without those variables, + # the module command fails. Hence we actually have to source + # /etc/profile here. + source /etc/profile + fi + source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh + elif [[ $MACHINE_ID = expanse ]]; then # We are on SDSC Expanse if ( ! eval module help > /dev/null 2>&1 ) ; then From 15041873dbfbebe39fe9bb79dd06dd91812b1cdd Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Thu, 5 Oct 2023 11:28:01 -0700 Subject: [PATCH 06/30] Remove set -eu from module-setup.sh based on https://github.com/ufs-community/ufs-weather-model/pull/1784#issuecomment-1749432763 --- tests/module-setup.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 612675b0e6..b9c02ad926 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -eu if [[ $MACHINE_ID = jet ]] ; then # We are on NOAA Jet From 3670a93d7ac886975a116c2a4546366300bb151f Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Mon, 16 Oct 2023 10:49:58 -0700 Subject: [PATCH 07/30] Reinstate "set -eu" in module-setup.sh --- tests/module-setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/module-setup.sh b/tests/module-setup.sh index b9c02ad926..612675b0e6 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -eu if [[ $MACHINE_ID = jet ]] ; then # We are on NOAA Jet From d2f86ce8904e49a1c21779ff41a867409fb6cf7a Mon Sep 17 00:00:00 2001 From: Cameron Book Date: Mon, 23 Oct 2023 13:35:09 -0400 Subject: [PATCH 08/30] Update c5 & ufs_common modulefiles; cherry-pick GOCART hash update from PR 1920. --- GOCART | 2 +- modulefiles/ufs_common.lua | 6 +++--- modulefiles/ufs_gaea_c5.intel.lua | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/GOCART b/GOCART index 6ea78fd790..041422934c 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 +Subproject commit 041422934cae1570f2f0e67239d5d89f11c6e1b7 diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index 5d7ea4ee64..ae96ff930e 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -16,12 +16,12 @@ local ufs_modules = { {["crtm"] = "2.4.0"}, {["g2"] = "3.4.5"}, {["g2tmpl"] = "1.10.2"}, - {["ip"] = "3.3.3"}, + {["ip"] = "4.3.0"}, {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, + {["w3emc"] = "2.10.0"}, {["gftl-shared"] = "1.5.0"}, {["mapl"] = "2.35.2-esmf-8.4.2"}, - {["scotch"] = "7.0.3"}, + {["scotch"] = "7.0.4"}, } for i = 1, #ufs_modules do diff --git a/modulefiles/ufs_gaea_c5.intel.lua b/modulefiles/ufs_gaea_c5.intel.lua index a056cf960d..b870aa5be3 100644 --- a/modulefiles/ufs_gaea_c5.intel.lua +++ b/modulefiles/ufs_gaea_c5.intel.lua @@ -3,14 +3,14 @@ help([[ on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5 ]===]) load("PrgEnv-intel/8.3.3") load("intel-classic/2023.1.0") load("cray-mpich/8.1.25") load("python/3.9.12") -prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-dev-20230717/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" @@ -19,7 +19,7 @@ load(pathJoin("stack-intel", stack_intel_ver)) stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) -stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +stack_python_ver=os.getenv("stack_python_ver") or "3.10.8" load(pathJoin("stack-python", stack_python_ver)) load("ufs_common") From 27ad0002bbf4de9c50ab39fd5032244b17134e9b Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:31:48 -0500 Subject: [PATCH 09/30] Update rt.sh adding new DISKNM for Gaea_C5 --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index c928db29b7..eaf2d04e1d 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -338,7 +338,7 @@ elif [[ $MACHINE_ID = gaea_c5 ]]; then ECFLOW_START=/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT + DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT QUEUE=normal COMPILE_QUEUE=normal PARTITION=c5 From 7dcc5514d9047b4fb3dad6bca2fe78e6fe3fc520 Mon Sep 17 00:00:00 2001 From: Jili Dong Date: Tue, 14 Nov 2023 19:08:26 +0000 Subject: [PATCH 10/30] FV3 switched to personal fork --- .gitmodules | 6 ++++-- FV3 | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index a3775fc12d..ad0bcef771 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop +## url = https://github.com/NOAA-EMC/fv3atm +## branch = develop + url = https://github.com/JiliDong-NOAA/fv3atm + branch = rrfsens_v0.2.0 [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index bdee71e042..5d813a2158 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bdee71e04223bb2c397597fe088cff2d40fa49b1 +Subproject commit 5d813a21586f24c6436af0e6b6ea68d84715d9d2 From 7dedc6fd5a58205b9f68266d92e8fa69e0db6351 Mon Sep 17 00:00:00 2001 From: Natalie Perlin Date: Wed, 15 Nov 2023 07:40:26 -0500 Subject: [PATCH 11/30] updates for gaea-c5 modulefiles, scripts --- cmake/configure_gaea-c5.intel.cmake | 4 + ...aea_c5.intel.lua => ufs_gaea-c5.intel.lua} | 3 +- tests/compile.sh | 2 +- tests/default_vars.sh | 2 +- tests/detect_machine.sh | 16 +- ...rm.IN_gaea_c5 => compile_slurm.IN_gaea-c5} | 0 ..._slurm.IN_gaea_c5 => fv3_slurm.IN_gaea-c5} | 5 +- tests/logs/RegressionTests_gaea-c5.log | 3745 +++++++++++++++++ tests/module-setup.sh | 2 +- tests/rt.sh | 17 +- tests/rt_utils.sh | 18 +- tests/run_test.sh | 4 +- 12 files changed, 3797 insertions(+), 21 deletions(-) create mode 100644 cmake/configure_gaea-c5.intel.cmake rename modulefiles/{ufs_gaea_c5.intel.lua => ufs_gaea-c5.intel.lua} (94%) rename tests/fv3_conf/{compile_slurm.IN_gaea_c5 => compile_slurm.IN_gaea-c5} (100%) rename tests/fv3_conf/{fv3_slurm.IN_gaea_c5 => fv3_slurm.IN_gaea-c5} (91%) create mode 100644 tests/logs/RegressionTests_gaea-c5.log diff --git a/cmake/configure_gaea-c5.intel.cmake b/cmake/configure_gaea-c5.intel.cmake new file mode 100644 index 0000000000..6037c6379f --- /dev/null +++ b/cmake/configure_gaea-c5.intel.cmake @@ -0,0 +1,4 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" 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/modulefiles/ufs_gaea_c5.intel.lua b/modulefiles/ufs_gaea-c5.intel.lua similarity index 94% rename from modulefiles/ufs_gaea_c5.intel.lua rename to modulefiles/ufs_gaea-c5.intel.lua index b870aa5be3..5ebd4b06a0 100644 --- a/modulefiles/ufs_gaea_c5.intel.lua +++ b/modulefiles/ufs_gaea-c5.intel.lua @@ -25,9 +25,8 @@ load(pathJoin("stack-python", stack_python_ver)) load("ufs_common") unload("darshan-runtime") -unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea_c5.intel") +setenv("CMAKE_Platform","gaea-c5.intel") diff --git a/tests/compile.sh b/tests/compile.sh index dc6a646812..d183a30b22 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -61,7 +61,7 @@ else if [[ $MACHINE_ID == gaea ]]; then source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh # Activate lua environment for gaea c5 - elif [[ $MACHINE_ID == gaea_c5 ]]; then + elif [[ $MACHINE_ID == gaea-c5 ]]; then source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh fi # Load fv3 module diff --git a/tests/default_vars.sh b/tests/default_vars.sh index c930ae0555..8246164fd8 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -227,7 +227,7 @@ elif [[ $MACHINE_ID = gaea ]]; then INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=264 -elif [[ $MACHINE_ID = gaea_c5 ]]; then +elif [[ $MACHINE_ID = gaea-c5 ]]; then TPN=128 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 7d6f630067..a1b450fded 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -43,14 +43,14 @@ case $(hostname -f) in gaea15.ncrc.gov) MACHINE_ID=gaea ;; ### gaea15 gaea16.ncrc.gov) MACHINE_ID=gaea ;; ### gaea16 - gaea51.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea51 - gaea52.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea52 - gaea53.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea53 - gaea54.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea54 - gaea55.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea55 - gaea56.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea56 - gaea57.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea57 - gaea58.ncrc.gov) MACHINE_ID=gaea_c5 ;; ### gaea58 + gaea51.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea51 + gaea52.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea52 + gaea53.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea53 + gaea54.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea54 + gaea55.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea55 + gaea56.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea56 + gaea57.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea57 + gaea58.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea58 hfe01) MACHINE_ID=hera ;; ### hera01 hfe02) MACHINE_ID=hera ;; ### hera02 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea_c5 b/tests/fv3_conf/compile_slurm.IN_gaea-c5 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea_c5 rename to tests/fv3_conf/compile_slurm.IN_gaea-c5 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea_c5 b/tests/fv3_conf/fv3_slurm.IN_gaea-c5 similarity index 91% rename from tests/fv3_conf/fv3_slurm.IN_gaea_c5 rename to tests/fv3_conf/fv3_slurm.IN_gaea-c5 index 828dc571e3..1d703cb712 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea_c5 +++ b/tests/fv3_conf/fv3_slurm.IN_gaea-c5 @@ -4,7 +4,8 @@ #SBATCH --job-name="@[JBNME]" #SBATCH --account=@[ACCNR] #SBATCH --qos=@[QUEUE] -#SBATCH --clusters=@[PARTITION] +#SBATCH --clusters=c5 +#SBATCH --partition=batch #SBATCH --nodes=@[NODES] #SBATCH --ntasks-per-node=@[TPN] #SBATCH --time=@[WLCLK] @@ -13,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x -MACHINE_ID=gaea_c5 +MACHINE_ID=gaea-c5 source ./module-setup.sh module use --prepend $PWD/modulefiles module load modules.fv3 diff --git a/tests/logs/RegressionTests_gaea-c5.log b/tests/logs/RegressionTests_gaea-c5.log new file mode 100644 index 0000000000..360f02253e --- /dev/null +++ b/tests/logs/RegressionTests_gaea-c5.log @@ -0,0 +1,3745 @@ +Tue 14 Nov 2023 07:20:25 AM EST +Start Regression test + +Testing UFSWM Hash: a0707e9e504ece93aff8f4a913e617caf8d8395b +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) + e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 36500b6084014eb862176c810914206d2ddf2170 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9803-g02d4dc455) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 606 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 399 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 805 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 600 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 493 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 611 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 632 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 658 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 312 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 383 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 388 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 152 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 711 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 443 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 689 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 726 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 766 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 748 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 896 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 587 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1101 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 879 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 539 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 819 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_p8_mixedmode_intel +Checking test 001 cpld_control_p8_mixedmode_intel results .... +Moving baseline 001 cpld_control_p8_mixedmode_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 303.613774 + 0: The maximum resident set size (KB) = 3045044 + +Test 001 cpld_control_p8_mixedmode_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_p8_intel +Checking test 002 cpld_control_p8_intel results .... +Moving baseline 002 cpld_control_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 348.896166 + 0: The maximum resident set size (KB) = 3070608 + +Test 002 cpld_control_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_ciceC_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_ciceC_p8_intel +Checking test 003 cpld_control_ciceC_p8_intel results .... +Moving baseline 003 cpld_control_ciceC_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 350.361497 + 0: The maximum resident set size (KB) = 3072296 + +Test 003 cpld_control_ciceC_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_c192_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_c192_p8_intel +Checking test 004 cpld_control_c192_p8_intel results .... +Moving baseline 004 cpld_control_c192_p8_intel files .... + Moving sfcf030.tile1.nc .........OK + Moving sfcf030.tile2.nc .........OK + Moving sfcf030.tile3.nc .........OK + Moving sfcf030.tile4.nc .........OK + Moving sfcf030.tile5.nc .........OK + Moving sfcf030.tile6.nc .........OK + Moving atmf030.tile1.nc .........OK + Moving atmf030.tile2.nc .........OK + Moving atmf030.tile3.nc .........OK + Moving atmf030.tile4.nc .........OK + Moving atmf030.tile5.nc .........OK + Moving atmf030.tile6.nc .........OK + Moving gocart.inst_aod.20210323_1200z.nc4 .........OK + Moving RESTART/20210323.120000.coupler.res .........OK + Moving RESTART/20210323.120000.fv_core.res.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.120000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-43200.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Moving 20210323.120000.out_grd.ww3 .........OK + Moving 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 594.808545 + 0: The maximum resident set size (KB) = 3255244 + +Test 004 cpld_control_c192_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_bmark_p8_intel +Checking test 005 cpld_bmark_p8_intel results .... +Moving baseline 005 cpld_bmark_p8_intel files .... + Moving sfcf006.nc .........OK + Moving atmf006.nc .........OK + Moving GFSFLX.GrbF06 .........OK + Moving GFSPRS.GrbF06 .........OK + Moving gocart.inst_aod.20130401_0600z.nc4 .........OK + Moving RESTART/20130401.060000.coupler.res .........OK + Moving RESTART/20130401.060000.fv_core.res.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile1.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile2.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile3.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile4.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile5.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile6.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20130401.060000.MOM.res.nc .........OK + Moving RESTART/20130401.060000.MOM.res_1.nc .........OK + Moving RESTART/20130401.060000.MOM.res_2.nc .........OK + Moving RESTART/20130401.060000.MOM.res_3.nc .........OK + Moving RESTART/iced.2013-04-01-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Moving 20130401.060000.out_pnt.ww3 .........OK + Moving 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 753.438685 + 0: The maximum resident set size (KB) = 4020296 + +Test 005 cpld_bmark_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_noaero_p8_intel +Checking test 006 cpld_control_noaero_p8_intel results .... +Moving baseline 006 cpld_control_noaero_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 258.106472 + 0: The maximum resident set size (KB) = 1657592 + +Test 006 cpld_control_noaero_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_nowave_noaero_p8_intel +Checking test 007 cpld_control_nowave_noaero_p8_intel results .... +Moving baseline 007 cpld_control_nowave_noaero_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 263.423103 + 0: The maximum resident set size (KB) = 1718916 + +Test 007 cpld_control_nowave_noaero_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_debug_p8_intel +Checking test 008 cpld_debug_p8_intel results .... +Moving baseline 008 cpld_debug_p8_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 488.911757 + 0: The maximum resident set size (KB) = 3085556 + +Test 008 cpld_debug_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_debug_noaero_p8_intel +Checking test 009 cpld_debug_noaero_p8_intel results .... +Moving baseline 009 cpld_debug_noaero_p8_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 322.775138 + 0: The maximum resident set size (KB) = 1659460 + +Test 009 cpld_debug_noaero_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_noaero_p8_agrid_intel +Checking test 010 cpld_control_noaero_p8_agrid_intel results .... +Moving baseline 010 cpld_control_noaero_p8_agrid_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 267.374451 + 0: The maximum resident set size (KB) = 1715328 + +Test 010 cpld_control_noaero_p8_agrid_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_c48_intel +Checking test 011 cpld_control_c48_intel results .... +Moving baseline 011 cpld_control_c48_intel files .... + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 407.359359 + 0: The maximum resident set size (KB) = 2642412 + +Test 011 cpld_control_c48_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_p8_faster_intel +Checking test 012 cpld_control_p8_faster_intel results .... +Moving baseline 012 cpld_control_p8_faster_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 346.552872 + 0: The maximum resident set size (KB) = 3072280 + +Test 012 cpld_control_p8_faster_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_flake_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_flake_intel +Checking test 013 control_flake_intel results .... +Moving baseline 013 control_flake_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 194.671876 + 0: The maximum resident set size (KB) = 651340 + +Test 013 control_flake_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_CubedSphereGrid_intel +Checking test 014 control_CubedSphereGrid_intel results .... +Moving baseline 014 control_CubedSphereGrid_intel files .... + Moving sfcf000.tile1.nc .........OK + Moving sfcf000.tile2.nc .........OK + Moving sfcf000.tile3.nc .........OK + Moving sfcf000.tile4.nc .........OK + Moving sfcf000.tile5.nc .........OK + Moving sfcf000.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf000.tile1.nc .........OK + Moving atmf000.tile2.nc .........OK + Moving atmf000.tile3.nc .........OK + Moving atmf000.tile4.nc .........OK + Moving atmf000.tile5.nc .........OK + Moving atmf000.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 122.748210 + 0: The maximum resident set size (KB) = 602964 + +Test 014 control_CubedSphereGrid_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_CubedSphereGrid_parallel_intel +Checking test 015 control_CubedSphereGrid_parallel_intel results .... +Moving baseline 015 control_CubedSphereGrid_parallel_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving cubed_sphere_grid_sfcf000.nc .........OK + Moving cubed_sphere_grid_sfcf024.nc .........OK + Moving cubed_sphere_grid_atmf000.nc .........OK + Moving cubed_sphere_grid_atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 133.010294 + 0: The maximum resident set size (KB) = 610508 + +Test 015 control_CubedSphereGrid_parallel_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_latlon_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_latlon_intel +Checking test 016 control_latlon_intel results .... +Moving baseline 016 control_latlon_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 122.408922 + 0: The maximum resident set size (KB) = 610308 + +Test 016 control_latlon_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wrtGauss_netcdf_parallel_intel +Checking test 017 control_wrtGauss_netcdf_parallel_intel results .... +Moving baseline 017 control_wrtGauss_netcdf_parallel_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 126.092182 + 0: The maximum resident set size (KB) = 606676 + +Test 017 control_wrtGauss_netcdf_parallel_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c48_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c48_intel +Checking test 018 control_c48_intel results .... +Moving baseline 018 control_c48_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 334.581142 +0: The maximum resident set size (KB) = 680916 + +Test 018 control_c48_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c192_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c192_intel +Checking test 019 control_c192_intel results .... +Moving baseline 019 control_c192_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 499.231788 + 0: The maximum resident set size (KB) = 705256 + +Test 019 control_c192_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c384_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c384_intel +Checking test 020 control_c384_intel results .... +Moving baseline 020 control_c384_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 954.278228 + 0: The maximum resident set size (KB) = 1105504 + +Test 020 control_c384_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c384gdas_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c384gdas_intel +Checking test 021 control_c384gdas_intel results .... +Moving baseline 021 control_c384gdas_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf006.nc .........OK + Moving atmf000.nc .........OK + Moving atmf006.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF06 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF06 .........OK + Moving RESTART/20210322.060000.coupler.res .........OK + Moving RESTART/20210322.060000.fv_core.res.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 812.448838 + 0: The maximum resident set size (KB) = 1239568 + +Test 021 control_c384gdas_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_stochy_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_stochy_intel +Checking test 022 control_stochy_intel results .... +Moving baseline 022 control_stochy_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 83.372298 + 0: The maximum resident set size (KB) = 609984 + +Test 022 control_stochy_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_lndp_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_lndp_intel +Checking test 023 control_lndp_intel results .... +Moving baseline 023 control_lndp_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 75.966999 + 0: The maximum resident set size (KB) = 609956 + +Test 023 control_lndp_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_iovr4_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_iovr4_intel +Checking test 024 control_iovr4_intel results .... +Moving baseline 024 control_iovr4_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 125.324964 + 0: The maximum resident set size (KB) = 597916 + +Test 024 control_iovr4_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_iovr5_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_iovr5_intel +Checking test 025 control_iovr5_intel results .... +Moving baseline 025 control_iovr5_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 123.728136 + 0: The maximum resident set size (KB) = 607672 + +Test 025 control_iovr5_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_intel +Checking test 026 control_p8_intel results .... +Moving baseline 026 control_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 152.929828 + 0: The maximum resident set size (KB) = 1578236 + +Test 026 control_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_ugwpv1_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_ugwpv1_intel +Checking test 027 control_p8_ugwpv1_intel results .... +Moving baseline 027 control_p8_ugwpv1_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 147.523264 + 0: The maximum resident set size (KB) = 1577300 + +Test 027 control_p8_ugwpv1_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_lndp_intel +Checking test 028 control_p8_lndp_intel results .... +Moving baseline 028 control_p8_lndp_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving sfcf048.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving atmf048.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSFLX.GrbF48 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 271.012782 + 0: The maximum resident set size (KB) = 1580632 + +Test 028 control_p8_lndp_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_rrtmgp_intel +Checking test 029 control_p8_rrtmgp_intel results .... +Moving baseline 029 control_p8_rrtmgp_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 202.489100 + 0: The maximum resident set size (KB) = 1628316 + +Test 029 control_p8_rrtmgp_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_mynn_intel +Checking test 030 control_p8_mynn_intel results .... +Moving baseline 030 control_p8_mynn_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 151.110627 + 0: The maximum resident set size (KB) = 1587148 + +Test 030 control_p8_mynn_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/merra2_thompson_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/merra2_thompson_intel +Checking test 031 merra2_thompson_intel results .... +Moving baseline 031 merra2_thompson_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 182.919615 + 0: The maximum resident set size (KB) = 1575596 + +Test 031 merra2_thompson_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_control_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_control_intel +Checking test 032 regional_control_intel results .... +Moving baseline 032 regional_control_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 261.229216 + 0: The maximum resident set size (KB) = 867000 + +Test 032 regional_control_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_noquilt_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_noquilt_intel +Checking test 033 regional_noquilt_intel results .... +Moving baseline 033 regional_noquilt_intel files .... + Moving atmos_4xdaily.nc .........OK + Moving fv3_history2d.nc .........OK + Moving fv3_history.nc .........OK + Moving RESTART/fv_core.res.tile1_new.nc .........OK + Moving RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 256.017355 + 0: The maximum resident set size (KB) = 1151660 + +Test 033 regional_noquilt_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_netcdf_parallel_intel +Checking test 034 regional_netcdf_parallel_intel results .... +Moving baseline 034 regional_netcdf_parallel_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + + 0: The total amount of wall time = 257.822253 + 0: The maximum resident set size (KB) = 861752 + +Test 034 regional_netcdf_parallel_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_wofs_intel +Checking test 035 regional_wofs_intel results .... +Moving baseline 035 regional_wofs_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 339.679929 + 0: The maximum resident set size (KB) = 1897452 + +Test 035 regional_wofs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_intel +Checking test 036 rap_control_intel results .... +Moving baseline 036 rap_control_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 371.878050 + 0: The maximum resident set size (KB) = 985392 + +Test 036 rap_control_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_spp_sppt_shum_skeb_intel +Checking test 037 regional_spp_sppt_shum_skeb_intel results .... +Moving baseline 037 regional_spp_sppt_shum_skeb_intel files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF01 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 222.341726 + 0: The maximum resident set size (KB) = 1088716 + +Test 037 regional_spp_sppt_shum_skeb_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_sfcdiff_intel +Checking test 038 rap_sfcdiff_intel results .... +Moving baseline 038 rap_sfcdiff_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 370.911939 + 0: The maximum resident set size (KB) = 983348 + +Test 038 rap_sfcdiff_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_intel +Checking test 039 hrrr_control_intel results .... +Moving baseline 039 hrrr_control_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.120000.coupler.res .........OK + Moving RESTART/20210322.120000.fv_core.res.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 193.282165 + 0: The maximum resident set size (KB) = 980964 + +Test 039 hrrr_control_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1beta_intel +Checking test 040 rrfs_v1beta_intel results .... +Moving baseline 040 rrfs_v1beta_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 372.640434 + 0: The maximum resident set size (KB) = 982848 + +Test 040 rrfs_v1beta_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1nssl_intel +Checking test 041 rrfs_v1nssl_intel results .... +Moving baseline 041 rrfs_v1nssl_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 441.830233 + 0: The maximum resident set size (KB) = 1946748 + +Test 041 rrfs_v1nssl_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1nssl_nohailnoccn_intel +Checking test 042 rrfs_v1nssl_nohailnoccn_intel results .... +Moving baseline 042 rrfs_v1nssl_nohailnoccn_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 436.416275 + 0: The maximum resident set size (KB) = 1932372 + +Test 042 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmg_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmg_intel +Checking test 043 control_csawmg_intel results .... +Moving baseline 043 control_csawmg_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 318.870381 + 0: The maximum resident set size (KB) = 670184 + +Test 043 control_csawmg_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmgt_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmgt_intel +Checking test 044 control_csawmgt_intel results .... +Moving baseline 044 control_csawmgt_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 316.508576 + 0: The maximum resident set size (KB) = 675832 + +Test 044 control_csawmgt_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_ras_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_ras_intel +Checking test 045 control_ras_intel results .... +Moving baseline 045 control_ras_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 174.588049 + 0: The maximum resident set size (KB) = 633248 + +Test 045 control_ras_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wam_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wam_intel +Checking test 046 control_wam_intel results .... +Moving baseline 046 control_wam_intel files .... + Moving sfcf024.nc .........OK + Moving atmf024.nc .........OK + + 0: The total amount of wall time = 114.657899 + 0: The maximum resident set size (KB) = 422232 + +Test 046 control_wam_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_faster_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_faster_intel +Checking test 047 control_p8_faster_intel results .... +Moving baseline 047 control_p8_faster_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 146.672810 + 0: The maximum resident set size (KB) = 1579664 + +Test 047 control_p8_faster_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_control_faster_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_control_faster_intel +Checking test 048 regional_control_faster_intel results .... +Moving baseline 048 regional_control_faster_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 248.663713 + 0: The maximum resident set size (KB) = 860408 + +Test 048 regional_control_faster_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_CubedSphereGrid_debug_intel +Checking test 049 control_CubedSphereGrid_debug_intel results .... +Moving baseline 049 control_CubedSphereGrid_debug_intel files .... + Moving sfcf000.tile1.nc .........OK + Moving sfcf000.tile2.nc .........OK + Moving sfcf000.tile3.nc .........OK + Moving sfcf000.tile4.nc .........OK + Moving sfcf000.tile5.nc .........OK + Moving sfcf000.tile6.nc .........OK + Moving sfcf001.tile1.nc .........OK + Moving sfcf001.tile2.nc .........OK + Moving sfcf001.tile3.nc .........OK + Moving sfcf001.tile4.nc .........OK + Moving sfcf001.tile5.nc .........OK + Moving sfcf001.tile6.nc .........OK + Moving atmf000.tile1.nc .........OK + Moving atmf000.tile2.nc .........OK + Moving atmf000.tile3.nc .........OK + Moving atmf000.tile4.nc .........OK + Moving atmf000.tile5.nc .........OK + Moving atmf000.tile6.nc .........OK + Moving atmf001.tile1.nc .........OK + Moving atmf001.tile2.nc .........OK + Moving atmf001.tile3.nc .........OK + Moving atmf001.tile4.nc .........OK + Moving atmf001.tile5.nc .........OK + Moving atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 147.414170 + 0: The maximum resident set size (KB) = 755572 + +Test 049 control_CubedSphereGrid_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 050 control_wrtGauss_netcdf_parallel_debug_intel results .... +Moving baseline 050 control_wrtGauss_netcdf_parallel_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 151.690428 + 0: The maximum resident set size (KB) = 753996 + +Test 050 control_wrtGauss_netcdf_parallel_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_stochy_debug_intel +Checking test 051 control_stochy_debug_intel results .... +Moving baseline 051 control_stochy_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 163.081869 + 0: The maximum resident set size (KB) = 758500 + +Test 051 control_stochy_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_lndp_debug_intel +Checking test 052 control_lndp_debug_intel results .... +Moving baseline 052 control_lndp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 148.051702 + 0: The maximum resident set size (KB) = 762888 + +Test 052 control_lndp_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmg_debug_intel +Checking test 053 control_csawmg_debug_intel results .... +Moving baseline 053 control_csawmg_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 231.041517 + 0: The maximum resident set size (KB) = 779488 + +Test 053 control_csawmg_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmgt_debug_intel +Checking test 054 control_csawmgt_debug_intel results .... +Moving baseline 054 control_csawmgt_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 229.065619 + 0: The maximum resident set size (KB) = 797244 + +Test 054 control_csawmgt_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_ras_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_ras_debug_intel +Checking test 055 control_ras_debug_intel results .... +Moving baseline 055 control_ras_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 149.895120 + 0: The maximum resident set size (KB) = 771016 + +Test 055 control_ras_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_diag_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_diag_debug_intel +Checking test 056 control_diag_debug_intel results .... +Moving baseline 056 control_diag_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 150.834168 + 0: The maximum resident set size (KB) = 815812 + +Test 056 control_diag_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_debug_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_debug_p8_intel +Checking test 057 control_debug_p8_intel results .... +Moving baseline 057 control_debug_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 151.358733 + 0: The maximum resident set size (KB) = 1570416 + +Test 057 control_debug_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_debug_intel +Checking test 058 regional_debug_intel results .... +Moving baseline 058 regional_debug_intel files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + + 0: The total amount of wall time = 943.785323 + 0: The maximum resident set size (KB) = 881860 + +Test 058 regional_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_debug_intel +Checking test 059 rap_control_debug_intel results .... +Moving baseline 059 rap_control_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 275.776938 + 0: The maximum resident set size (KB) = 1128696 + +Test 059 rap_control_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_debug_intel +Checking test 060 hrrr_control_debug_intel results .... +Moving baseline 060 hrrr_control_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 271.672844 + 0: The maximum resident set size (KB) = 1126632 + +Test 060 hrrr_control_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_gf_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_gf_debug_intel +Checking test 061 hrrr_gf_debug_intel results .... +Moving baseline 061 hrrr_gf_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 279.733330 + 0: The maximum resident set size (KB) = 1120844 + +Test 061 hrrr_gf_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_c3_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_c3_debug_intel +Checking test 062 hrrr_c3_debug_intel results .... +Moving baseline 062 hrrr_c3_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 279.641216 + 0: The maximum resident set size (KB) = 1134992 + +Test 062 hrrr_c3_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_diag_debug_intel +Checking test 063 rap_diag_debug_intel results .... +Moving baseline 063 rap_diag_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 290.902090 + 0: The maximum resident set size (KB) = 1218400 + +Test 063 rap_diag_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_cires_ugwp_debug_intel +Checking test 064 rap_cires_ugwp_debug_intel results .... +Moving baseline 064 rap_cires_ugwp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 280.992966 + 0: The maximum resident set size (KB) = 1132100 + +Test 064 rap_cires_ugwp_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_lndp_debug_intel +Checking test 065 rap_lndp_debug_intel results .... +Moving baseline 065 rap_lndp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 276.424055 + 0: The maximum resident set size (KB) = 1118840 + +Test 065 rap_lndp_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_progcld_thompson_debug_intel +Checking test 066 rap_progcld_thompson_debug_intel results .... +Moving baseline 066 rap_progcld_thompson_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 276.825644 + 0: The maximum resident set size (KB) = 1130660 + +Test 066 rap_progcld_thompson_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_noah_debug_intel +Checking test 067 rap_noah_debug_intel results .... +Moving baseline 067 rap_noah_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 268.328950 + 0: The maximum resident set size (KB) = 1128440 + +Test 067 rap_noah_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_sfcdiff_debug_intel +Checking test 068 rap_sfcdiff_debug_intel results .... +Moving baseline 068 rap_sfcdiff_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 270.935257 + 0: The maximum resident set size (KB) = 1132428 + +Test 068 rap_sfcdiff_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 069 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +Moving baseline 069 rap_noah_sfcdiff_cires_ugwp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 447.053241 + 0: The maximum resident set size (KB) = 1133164 + +Test 069 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1beta_debug_intel +Checking test 070 rrfs_v1beta_debug_intel results .... +Moving baseline 070 rrfs_v1beta_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 269.772884 + 0: The maximum resident set size (KB) = 1127868 + +Test 070 rrfs_v1beta_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_clm_lake_debug_intel +Checking test 071 rap_clm_lake_debug_intel results .... +Moving baseline 071 rap_clm_lake_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 327.670065 + 0: The maximum resident set size (KB) = 1133212 + +Test 071 rap_clm_lake_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_flake_debug_intel +Checking test 072 rap_flake_debug_intel results .... +Moving baseline 072 rap_flake_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 271.696727 + 0: The maximum resident set size (KB) = 1132148 + +Test 072 rap_flake_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wam_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wam_debug_intel +Checking test 073 control_wam_debug_intel results .... +Moving baseline 073 control_wam_debug_intel files .... + Moving sfcf019.nc .........OK + Moving atmf019.nc .........OK + + 0: The total amount of wall time = 283.694343 + 0: The maximum resident set size (KB) = 440108 + +Test 073 control_wam_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +Moving baseline 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF01 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 210.963429 + 0: The maximum resident set size (KB) = 984956 + +Test 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_dyn32_phy32_intel +Checking test 075 rap_control_dyn32_phy32_intel results .... +Moving baseline 075 rap_control_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 308.059016 + 0: The maximum resident set size (KB) = 867160 + +Test 075 rap_control_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_dyn32_phy32_intel +Checking test 076 hrrr_control_dyn32_phy32_intel results .... +Moving baseline 076 hrrr_control_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.120000.coupler.res .........OK + Moving RESTART/20210322.120000.fv_core.res.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 165.660354 + 0: The maximum resident set size (KB) = 866020 + +Test 076 hrrr_control_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_control_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_control_intel +Checking test 077 conus13km_control_intel results .... +Moving baseline 077 conus13km_control_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK + Moving RESTART/20210512.170000.coupler.res .........OK + Moving RESTART/20210512.170000.fv_core.res.nc .........OK + Moving RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210512.170000.phy_data.nc .........OK + Moving RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 106.130806 + 0: The maximum resident set size (KB) = 1140700 + +Test 077 conus13km_control_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_restart_mismatch_intel +Checking test 078 conus13km_restart_mismatch_intel results .... +Moving baseline 078 conus13km_restart_mismatch_intel files .... + Moving sfcf002.nc .........OK + Moving atmf002.nc .........OK + + 0: The total amount of wall time = 63.791744 + 0: The maximum resident set size (KB) = 1037896 + +Test 078 conus13km_restart_mismatch_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_dyn64_phy32_intel +Checking test 079 rap_control_dyn64_phy32_intel results .... +Moving baseline 079 rap_control_dyn64_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 215.347471 + 0: The maximum resident set size (KB) = 895744 + +Test 079 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_debug_dyn32_phy32_intel +Checking test 080 rap_control_debug_dyn32_phy32_intel results .... +Moving baseline 080 rap_control_debug_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 262.598944 + 0: The maximum resident set size (KB) = 1016068 + +Test 080 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_debug_dyn32_phy32_intel +Checking test 081 hrrr_control_debug_dyn32_phy32_intel results .... +Moving baseline 081 hrrr_control_debug_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 273.871873 + 0: The maximum resident set size (KB) = 1011524 + +Test 081 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_debug_intel +Checking test 082 conus13km_debug_intel results .... +Moving baseline 082 conus13km_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving RESTART/20210512.170000.coupler.res .........OK + Moving RESTART/20210512.170000.fv_core.res.nc .........OK + Moving RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210512.170000.phy_data.nc .........OK + Moving RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 799.053443 + 0: The maximum resident set size (KB) = 1163952 + +Test 082 conus13km_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_radar_tten_debug_intel +Checking test 083 conus13km_radar_tten_debug_intel results .... +Moving baseline 083 conus13km_radar_tten_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 816.283533 + 0: The maximum resident set size (KB) = 1235844 + +Test 083 conus13km_radar_tten_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_dyn64_phy32_debug_intel +Checking test 084 rap_control_dyn64_phy32_debug_intel results .... +Moving baseline 084 rap_control_dyn64_phy32_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + + 0: The total amount of wall time = 271.296556 + 0: The maximum resident set size (KB) = 1039748 + +Test 084 rap_control_dyn64_phy32_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_intel +Checking test 085 hafs_regional_atm_intel results .... +Moving baseline 085 hafs_regional_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving HURPRS.GrbF06 .........OK + + 0: The total amount of wall time = 237.406329 + 0: The maximum resident set size (KB) = 1061364 + +Test 085 hafs_regional_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 086 hafs_regional_atm_thompson_gfdlsf_intel results .... +Moving baseline 086 hafs_regional_atm_thompson_gfdlsf_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + + 0: The total amount of wall time = 300.711296 + 0: The maximum resident set size (KB) = 1398208 + +Test 086 hafs_regional_atm_thompson_gfdlsf_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_ocn_intel +Checking test 087 hafs_regional_atm_ocn_intel results .... +Moving baseline 087 hafs_regional_atm_ocn_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving archv.2019_241_06.a .........OK + Moving archs.2019_241_06.a .........OK + Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 417.950762 + 0: The maximum resident set size (KB) = 1102596 + +Test 087 hafs_regional_atm_ocn_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_wav_intel +Checking test 088 hafs_regional_atm_wav_intel results .... +Moving baseline 088 hafs_regional_atm_wav_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving 20190829.060000.out_grd.ww3 .........OK + Moving 20190829.060000.out_pnt.ww3 .........OK + Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 667.647878 + 0: The maximum resident set size (KB) = 1125364 + +Test 088 hafs_regional_atm_wav_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_ocn_wav_intel +Checking test 089 hafs_regional_atm_ocn_wav_intel results .... +Moving baseline 089 hafs_regional_atm_ocn_wav_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving archv.2019_241_06.a .........OK + Moving archs.2019_241_06.a .........OK + Moving 20190829.060000.out_grd.ww3 .........OK + Moving 20190829.060000.out_pnt.ww3 .........OK + Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 753.431383 + 0: The maximum resident set size (KB) = 1158464 + +Test 089 hafs_regional_atm_ocn_wav_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_1nest_atm_intel +Checking test 090 hafs_regional_1nest_atm_intel results .... +Moving baseline 090 hafs_regional_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 294.388594 + 0: The maximum resident set size (KB) = 613540 + +Test 090 hafs_regional_1nest_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_telescopic_2nests_atm_intel +Checking test 091 hafs_regional_telescopic_2nests_atm_intel results .... +Moving baseline 091 hafs_regional_telescopic_2nests_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving atm.nest03.f006.nc .........OK + Moving sfc.nest03.f006.nc .........OK + + 0: The total amount of wall time = 356.947558 + 0: The maximum resident set size (KB) = 622000 + +Test 091 hafs_regional_telescopic_2nests_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_global_1nest_atm_intel +Checking test 092 hafs_global_1nest_atm_intel results .... +Moving baseline 092 hafs_global_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile2.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile3.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile4.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile5.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile6.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 154.093465 + 0: The maximum resident set size (KB) = 372604 + +Test 092 hafs_global_1nest_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_global_multiple_4nests_atm_intel +Checking test 093 hafs_global_multiple_4nests_atm_intel results .... +Moving baseline 093 hafs_global_multiple_4nests_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving atm.nest03.f006.nc .........OK + Moving sfc.nest03.f006.nc .........OK + Moving atm.nest04.f006.nc .........OK + Moving sfc.nest04.f006.nc .........OK + Moving atm.nest05.f006.nc .........OK + Moving sfc.nest05.f006.nc .........OK + Moving HURPRS.GrbF06 .........OK + Moving HURPRS.GrbF06.nest02 .........OK + Moving HURPRS.GrbF06.nest03 .........OK + Moving HURPRS.GrbF06.nest04 .........OK + Moving HURPRS.GrbF06.nest05 .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile2.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile3.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile4.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile5.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile6.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_ne.res.nest03.nc .........OK + Moving RESTART/fv_BC_ne.res.nest04.nc .........OK + Moving RESTART/fv_BC_ne.res.nest05.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest03.nc .........OK + Moving RESTART/fv_BC_sw.res.nest04.nc .........OK + Moving RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 442.431833 + 0: The maximum resident set size (KB) = 429416 + +Test 093 hafs_global_multiple_4nests_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_specified_moving_1nest_atm_intel +Checking test 094 hafs_regional_specified_moving_1nest_atm_intel results .... +Moving baseline 094 hafs_regional_specified_moving_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving HURPRS.GrbF06 .........OK + Moving HURPRS.GrbF06.nest02 .........OK + + 0: The total amount of wall time = 198.685537 + 0: The maximum resident set size (KB) = 625824 + +Test 094 hafs_regional_specified_moving_1nest_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_intel +Checking test 095 hafs_regional_storm_following_1nest_atm_intel results .... +Moving baseline 095 hafs_regional_storm_following_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 182.977163 + 0: The maximum resident set size (KB) = 625888 + +Test 095 hafs_regional_storm_following_1nest_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 096 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +Moving baseline 096 hafs_regional_storm_following_1nest_atm_ocn_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving archv.2020_238_18.a .........OK + Moving archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 255.297187 + 0: The maximum resident set size (KB) = 672172 + +Test 096 hafs_regional_storm_following_1nest_atm_ocn_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_global_storm_following_1nest_atm_intel +Checking test 097 hafs_global_storm_following_1nest_atm_intel results .... +Moving baseline 097 hafs_global_storm_following_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 80.217297 + 0: The maximum resident set size (KB) = 405456 + +Test 097 hafs_global_storm_following_1nest_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 098 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +Moving baseline 098 hafs_regional_storm_following_1nest_atm_ocn_debug_intel files .... + Moving atmf001.nc .........OK + Moving sfcf001.nc .........OK + Moving atm.nest02.f001.nc .........OK + Moving sfc.nest02.f001.nc .........OK + + 0: The total amount of wall time = 742.266006 + 0: The maximum resident set size (KB) = 691468 + +Test 098 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +Moving baseline 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving archv.2020_238_18.a .........OK + Moving archs.2020_238_18.a .........OK + Moving 20200825.180000.out_grd.ww3 .........OK + Moving 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 430.849834 + 0: The maximum resident set size (KB) = 726708 + +Test 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_docn_intel +Checking test 100 hafs_regional_docn_intel results .... +Moving baseline 100 hafs_regional_docn_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 322.881311 + 0: The maximum resident set size (KB) = 1092896 + +Test 100 hafs_regional_docn_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_docn_oisst_intel +Checking test 101 hafs_regional_docn_oisst_intel results .... +Moving baseline 101 hafs_regional_docn_oisst_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 325.710661 + 0: The maximum resident set size (KB) = 1073412 + +Test 101 hafs_regional_docn_oisst_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_datm_cdeps_intel +Checking test 102 hafs_regional_datm_cdeps_intel results .... +Moving baseline 102 hafs_regional_datm_cdeps_intel files .... + Moving ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Moving ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 1185.997766 + 0: The maximum resident set size (KB) = 820576 + +Test 102 hafs_regional_datm_cdeps_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_control_cfsr_intel +Checking test 103 datm_cdeps_control_cfsr_intel results .... +Moving baseline 103 datm_cdeps_control_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 147.537902 + 0: The maximum resident set size (KB) = 745948 + +Test 103 datm_cdeps_control_cfsr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_control_gefs_intel +Checking test 104 datm_cdeps_control_gefs_intel results .... +Moving baseline 104 datm_cdeps_control_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 141.487957 + 0: The maximum resident set size (KB) = 626324 + +Test 104 datm_cdeps_control_gefs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_iau_gefs_intel +Checking test 105 datm_cdeps_iau_gefs_intel results .... +Moving baseline 105 datm_cdeps_iau_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 141.048339 + 0: The maximum resident set size (KB) = 622156 + +Test 105 datm_cdeps_iau_gefs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_stochy_gefs_intel +Checking test 106 datm_cdeps_stochy_gefs_intel results .... +Moving baseline 106 datm_cdeps_stochy_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 142.455987 + 0: The maximum resident set size (KB) = 625760 + +Test 106 datm_cdeps_stochy_gefs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_ciceC_cfsr_intel +Checking test 107 datm_cdeps_ciceC_cfsr_intel results .... +Moving baseline 107 datm_cdeps_ciceC_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 148.216801 + 0: The maximum resident set size (KB) = 747588 + +Test 107 datm_cdeps_ciceC_cfsr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_bulk_cfsr_intel +Checking test 108 datm_cdeps_bulk_cfsr_intel results .... +Moving baseline 108 datm_cdeps_bulk_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 148.479320 + 0: The maximum resident set size (KB) = 733648 + +Test 108 datm_cdeps_bulk_cfsr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_bulk_gefs_intel +Checking test 109 datm_cdeps_bulk_gefs_intel results .... +Moving baseline 109 datm_cdeps_bulk_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 140.482375 + 0: The maximum resident set size (KB) = 627388 + +Test 109 datm_cdeps_bulk_gefs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_mx025_cfsr_intel +Checking test 110 datm_cdeps_mx025_cfsr_intel results .... +Moving baseline 110 datm_cdeps_mx025_cfsr_intel files .... + Moving RESTART/20111001.120000.MOM.res.nc .........OK + Moving RESTART/20111001.120000.MOM.res_1.nc .........OK + Moving RESTART/20111001.120000.MOM.res_2.nc .........OK + Moving RESTART/20111001.120000.MOM.res_3.nc .........OK + Moving RESTART/iced.2011-10-01-43200.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 373.470375 + 0: The maximum resident set size (KB) = 674684 + +Test 110 datm_cdeps_mx025_cfsr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_mx025_gefs_intel +Checking test 111 datm_cdeps_mx025_gefs_intel results .... +Moving baseline 111 datm_cdeps_mx025_gefs_intel files .... + Moving RESTART/20111001.120000.MOM.res.nc .........OK + Moving RESTART/20111001.120000.MOM.res_1.nc .........OK + Moving RESTART/20111001.120000.MOM.res_2.nc .........OK + Moving RESTART/20111001.120000.MOM.res_3.nc .........OK + Moving RESTART/iced.2011-10-01-43200.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 366.024060 + 0: The maximum resident set size (KB) = 656188 + +Test 111 datm_cdeps_mx025_gefs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_3072x1536_cfsr_intel +Checking test 112 datm_cdeps_3072x1536_cfsr_intel results .... +Moving baseline 112 datm_cdeps_3072x1536_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 278.481397 + 0: The maximum resident set size (KB) = 1988516 + +Test 112 datm_cdeps_3072x1536_cfsr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_gfs_intel +Checking test 113 datm_cdeps_gfs_intel results .... +Moving baseline 113 datm_cdeps_gfs_intel files .... + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 279.504448 + 0: The maximum resident set size (KB) = 1987960 + +Test 113 datm_cdeps_gfs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_debug_cfsr_intel +Checking test 114 datm_cdeps_debug_cfsr_intel results .... +Moving baseline 114 datm_cdeps_debug_cfsr_intel files .... + Moving RESTART/20111001.060000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-01-21600.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK + + 0: The total amount of wall time = 312.640245 + 0: The maximum resident set size (KB) = 736464 + +Test 114 datm_cdeps_debug_cfsr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_control_cfsr_faster_intel +Checking test 115 datm_cdeps_control_cfsr_faster_intel results .... +Moving baseline 115 datm_cdeps_control_cfsr_faster_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 149.871131 + 0: The maximum resident set size (KB) = 745848 + +Test 115 datm_cdeps_control_cfsr_faster_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_lnd_gswp3_intel +Checking test 116 datm_cdeps_lnd_gswp3_intel results .... +Moving baseline 116 datm_cdeps_lnd_gswp3_intel files .... + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 22.480832 + 0: The maximum resident set size (KB) = 316076 + +Test 116 datm_cdeps_lnd_gswp3_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_atmlnd_sbs_intel +Checking test 117 control_p8_atmlnd_sbs_intel results .... +Moving baseline 117 control_p8_atmlnd_sbs_intel files .... + Moving sfcf000.tile1.nc .........OK + Moving sfcf000.tile2.nc .........OK + Moving sfcf000.tile3.nc .........OK + Moving sfcf000.tile4.nc .........OK + Moving sfcf000.tile5.nc .........OK + Moving sfcf000.tile6.nc .........OK + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf000.tile1.nc .........OK + Moving atmf000.tile2.nc .........OK + Moving atmf000.tile3.nc .........OK + Moving atmf000.tile4.nc .........OK + Moving atmf000.tile5.nc .........OK + Moving atmf000.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Moving ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 208.526991 + 0: The maximum resident set size (KB) = 1624312 + +Test 117 control_p8_atmlnd_sbs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmwav_control_noaero_p8_intel +Checking test 118 atmwav_control_noaero_p8_intel results .... +Moving baseline 118 atmwav_control_noaero_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Moving 20210322.180000.out_pnt.ww3 .........OK + Moving 20210322.180000.out_grd.ww3 .........OK + Moving ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 90.680721 + 0: The maximum resident set size (KB) = 1614944 + +Test 118 atmwav_control_noaero_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_atmwav_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_atmwav_intel +Checking test 119 control_atmwav_intel results .... +Moving baseline 119 control_atmwav_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Moving 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 85.493004 + 0: The maximum resident set size (KB) = 622432 + +Test 119 control_atmwav_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmaero_control_p8_intel +Checking test 120 atmaero_control_p8_intel results .... +Moving baseline 120 atmaero_control_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 231.011647 + 0: The maximum resident set size (KB) = 2908988 + +Test 120 atmaero_control_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmaero_control_p8_rad_intel +Checking test 121 atmaero_control_p8_rad_intel results .... +Moving baseline 121 atmaero_control_p8_rad_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 263.448151 + 0: The maximum resident set size (KB) = 2969220 + +Test 121 atmaero_control_p8_rad_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmaero_control_p8_rad_micro_intel +Checking test 122 atmaero_control_p8_rad_micro_intel results .... +Moving baseline 122 atmaero_control_p8_rad_micro_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 275.254453 + 0: The maximum resident set size (KB) = 2980284 + +Test 122 atmaero_control_p8_rad_micro_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_atmaq_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_atmaq_intel +Checking test 123 regional_atmaq_intel results .... +Moving baseline 123 regional_atmaq_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf003.nc .........OK + Moving sfcf006.nc .........OK + Moving atmf000.nc .........OK + Moving atmf003.nc .........OK + Moving atmf006.nc .........OK + Moving RESTART/20190801.180000.coupler.res .........OK + Moving RESTART/20190801.180000.fv_core.res.nc .........OK + Moving RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20190801.180000.phy_data.nc .........OK + Moving RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1187.945263 + 0: The maximum resident set size (KB) = 5355848 + +Test 123 regional_atmaq_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_atmaq_debug_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_atmaq_debug_intel +Checking test 124 regional_atmaq_debug_intel results .... +Moving baseline 124 regional_atmaq_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving RESTART/20190801.130000.coupler.res .........OK + Moving RESTART/20190801.130000.fv_core.res.nc .........OK + Moving RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Moving RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20190801.130000.phy_data.nc .........OK + Moving RESTART/20190801.130000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1615.538500 + 0: The maximum resident set size (KB) = 4790820 + +Test 124 regional_atmaq_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_atmaq_faster_intel +Checking test 125 regional_atmaq_faster_intel results .... +Moving baseline 125 regional_atmaq_faster_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf003.nc .........OK + Moving sfcf006.nc .........OK + Moving atmf000.nc .........OK + Moving atmf003.nc .........OK + Moving atmf006.nc .........OK + Moving RESTART/20190801.180000.coupler.res .........OK + Moving RESTART/20190801.180000.fv_core.res.nc .........OK + Moving RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20190801.180000.phy_data.nc .........OK + Moving RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1348.453835 + 0: The maximum resident set size (KB) = 5352344 + +Test 125 regional_atmaq_faster_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Tue 14 Nov 2023 08:51:30 AM EST +Elapsed time: 01h:31m:10s. Have a nice day! diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 612675b0e6..8736966804 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -77,7 +77,7 @@ elif [[ $MACHINE_ID = gaea ]] ; then fi source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh -elif [[ $MACHINE_ID = gaea_c5 ]] ; then +elif [[ $MACHINE_ID = gaea-c5 ]] ; then # We are on GAEA C5 if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA diff --git a/tests/rt.sh b/tests/rt.sh index eaf2d04e1d..587be67d4c 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -306,7 +306,7 @@ elif [[ $MACHINE_ID = acorn ]]; then elif [[ $MACHINE_ID = gaea ]]; then - module use /lustre/f2/dev/Samuel.Trahan/hafs/modulefiles/ + module use /lustre/f2/dev/role.epic/contrib/rocoto/modulefiles module load rocoto ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) @@ -327,10 +327,17 @@ elif [[ $MACHINE_ID = gaea ]]; then SCHEDULER=slurm -elif [[ $MACHINE_ID = gaea_c5 ]]; then +elif [[ $MACHINE_ID = gaea-c5 ]]; then + + module use /lustre/f2/dev/role.epic/contrib/C5/rocoto/modulefiles + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm module load PrgEnv-intel/8.3.3 - module load intel-classic/2022.2.1 + module load intel-classic/2023.1.0 module load cray-mpich/8.1.25 module load python/3.9.12 module use /lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles @@ -676,6 +683,10 @@ if [[ $ROCOTO == true ]]; then QUEUE=normal COMPILE_QUEUE=normal ROCOTO_SCHEDULER=slurm + elif [[ $MACHINE_ID = gaea-c5 ]]; then + QUEUE=normal + COMPILE_QUEUE=normal + ROCOTO_SCHEDULER=slurm else die "Rocoto is not supported on this machine $MACHINE_ID" fi diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 1c286f9468..fec27a0d50 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -347,7 +347,7 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ " orion hercules hera wcoss2 acorn cheyenne gaea gaea_c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then + if [[ " orion hercules hera wcoss2 acorn cheyenne gaea gaea-c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then printf ".......ALT CHECK.." >> ${RT_LOG} printf ".......ALT CHECK.." if [[ $CMP_DATAONLY == false ]]; then @@ -472,6 +472,10 @@ rocoto_create_compile_task() { if [[ $MACHINE_ID == gaea ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ $MACHINE_ID == gaea-c5 ]]; then + BUILD_WALLTIME="01:00:00" + fi + cat << EOF >> $ROCOTO_XML @@ -487,6 +491,12 @@ EOF eslogin --exclude=gaea9 EOF + + elif [[ "$MACHINE_ID" == gaea-c5 ]] ; then + cat << EOF >> $ROCOTO_XML + --clusters=es + eslogin_c5 +EOF else cat << EOF >> $ROCOTO_XML ${PARTITION} @@ -530,6 +540,12 @@ EOF cat << EOF >> $ROCOTO_XML --clusters=${PARTITION} EOF + + elif [[ "$MACHINE_ID" == gaea-c5 ]] ; then + cat << EOF >> $ROCOTO_XML + --clusters=${PARTITION} + --partition=batch +EOF else cat << EOF >> $ROCOTO_XML ${QUEUE} diff --git a/tests/run_test.sh b/tests/run_test.sh index 2e8e3d9b05..8266306647 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -97,7 +97,7 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. cp ${PATHRT}/module-setup.sh module-setup.sh # load nccmp module -if [[ " s4 hera orion hercules gaea gaea_c5 jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then +if [[ " s4 hera orion hercules gaea gaea-c5 jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then module load intel/19.1.3.304 netcdf/4.7.4 module load nccmp @@ -106,7 +106,7 @@ if [[ " s4 hera orion hercules gaea gaea_c5 jet cheyenne acorn wcoss2 " =~ " $MA module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0 module load miniconda/3.9.12 module load nccmp/1.9.0.1 - elif [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then + elif [[ " hera orion hercules gaea gaea-c5 jet " =~ " ${MACHINE_ID} " ]] ; then module use modulefiles module load modules.fv3 else From 1c04238a21df0b2dfdbeb2c526e6b257b6ae0a7c Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Tue, 28 Nov 2023 09:51:04 -0500 Subject: [PATCH 12/30] Update rt.conf fix gaea machine name --- tests/rt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.conf b/tests/rt.conf index c83c4b0e96..8049dcc89c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -139,7 +139,7 @@ RUN | rrfs_v1nssl | RUN | rrfs_v1nssl_nohailnoccn | | baseline | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | -RUN | control_csawmg | - gaea.intel noaacloud | baseline | +RUN | control_csawmg | - gaea noaacloud | baseline | RUN | control_csawmgt | - noaacloud | baseline | RUN | control_ras | - noaacloud acorn | baseline | From c59c4ba92993d5fafdbfea5d09584106d8df786e Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Tue, 28 Nov 2023 09:52:22 -0500 Subject: [PATCH 13/30] Update rt.conf fix column alignment --- tests/rt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.conf b/tests/rt.conf index 8049dcc89c..55e0829320 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -139,7 +139,7 @@ RUN | rrfs_v1nssl | RUN | rrfs_v1nssl_nohailnoccn | | baseline | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | -RUN | control_csawmg | - gaea noaacloud | baseline | +RUN | control_csawmg | - gaea noaacloud | baseline | RUN | control_csawmgt | - noaacloud | baseline | RUN | control_ras | - noaacloud acorn | baseline | From cc66dcdf6c8355caa9e210c1650eaf8077762f4f Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Tue, 28 Nov 2023 10:26:31 -0500 Subject: [PATCH 14/30] Delete cmake/configure_gaea_c5.intel.cmake --- cmake/configure_gaea_c5.intel.cmake | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 cmake/configure_gaea_c5.intel.cmake diff --git a/cmake/configure_gaea_c5.intel.cmake b/cmake/configure_gaea_c5.intel.cmake deleted file mode 100644 index 6037c6379f..0000000000 --- a/cmake/configure_gaea_c5.intel.cmake +++ /dev/null @@ -1,4 +0,0 @@ -set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" 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 From 47614fc826c26a4b2fd2f1f262761bba92e401db Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Tue, 28 Nov 2023 10:30:14 -0500 Subject: [PATCH 15/30] Update ufs_gaea-c5.intel.lua unload cray-libsci --- modulefiles/ufs_gaea-c5.intel.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modulefiles/ufs_gaea-c5.intel.lua b/modulefiles/ufs_gaea-c5.intel.lua index 5ebd4b06a0..c0c2f78def 100644 --- a/modulefiles/ufs_gaea-c5.intel.lua +++ b/modulefiles/ufs_gaea-c5.intel.lua @@ -25,6 +25,7 @@ load(pathJoin("stack-python", stack_python_ver)) load("ufs_common") unload("darshan-runtime") +unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") From 71e9323d91406cf2c971ed216c9c813667bf6da5 Mon Sep 17 00:00:00 2001 From: Jili Dong Date: Fri, 1 Dec 2023 00:32:32 +0000 Subject: [PATCH 16/30] add ocean variable tob in diag_table to address issue #2019 --- tests/parm/diag_table/diag_table_cpld_template | 1 + tests/parm/diag_table/diag_table_cpld_template_iau | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/parm/diag_table/diag_table_cpld_template b/tests/parm/diag_table/diag_table_cpld_template index 609f806054..5383132b1c 100644 --- a/tests/parm/diag_table/diag_table_cpld_template +++ b/tests/parm/diag_table/diag_table_cpld_template @@ -35,6 +35,7 @@ "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tob", "tob", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 # save daily SST "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_cpld_template_iau b/tests/parm/diag_table/diag_table_cpld_template_iau index ae3146372f..cc461ee9da 100644 --- a/tests/parm/diag_table/diag_table_cpld_template_iau +++ b/tests/parm/diag_table/diag_table_cpld_template_iau @@ -35,6 +35,7 @@ "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tob", "tob", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 # save daily SST "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 From 85950d0dcfcfa895c3259cdf6473835c257c9a5b Mon Sep 17 00:00:00 2001 From: Cameron Book Date: Fri, 1 Dec 2023 13:36:41 -0600 Subject: [PATCH 17/30] Update fv3 hash to jili's c9d4928. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 1f7af4b8ab..c9d49288f5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1f7af4b8abc69d6f8c9a435804ea55ba18d18df2 +Subproject commit c9d49288f5572e905f44f5c9d112feb6f4d80921 From 8b507f19bd3f12589b87577267b77cb4711fe28c Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Sat, 2 Dec 2023 03:29:26 +0000 Subject: [PATCH 18/30] Acorn RT Log --- tests/logs/RegressionTests_acorn.log | 1086 +++++++++++++------------- 1 file changed, 543 insertions(+), 543 deletions(-) diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 1c7a2c93ed..b9df208ce2 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,60 +1,60 @@ -Thu Nov 30 21:06:59 UTC 2023 +Fri Dec 1 23:52:49 UTC 2023 Start Regression test -Testing UFSWM Hash: 691fdcb760b87a37e01b81115eadf641107b3509 +Testing UFSWM Hash: a592791359b83c8998f4f516e4f8769efaf3e96b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/HEAD-7-gc9d4928) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atmaero_intel elapsed time 489 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 505 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 488 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 502 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 477 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_faster_dyn32_intel elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 490 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 489 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 487 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 174 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 171 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 516 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 atml_intel elapsed time 500 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 501 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 498 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 176 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 174 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 515 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafsw_debug_intel elapsed time 190 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 526 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 530 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 538 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 533 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile ifi_intel elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_debug_intel elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile rrfs_dyn32_phy32_faster_intel elapsed time 597 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 532 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 592 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 243 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 946 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 864 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 585 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 563 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 226 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 924 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile rrfs_dyn32_phy32_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 534 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 584 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 222 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 936 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 909 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 578 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 559 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 206 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 888 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile wam_debug_intel elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.634702 -The maximum resident set size (KB) = 2970068 +The total amount of wall time = 322.899600 +The maximum resident set size (KB) = 2966460 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 908.502415 -The maximum resident set size (KB) = 1600776 +The total amount of wall time = 908.019089 +The maximum resident set size (KB) = 1593984 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK -The total amount of wall time = 615.917079 -The maximum resident set size (KB) = 851932 +The total amount of wall time = 619.320521 +The maximum resident set size (KB) = 851720 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -266,14 +266,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 452.637672 -The maximum resident set size (KB) = 843664 +The total amount of wall time = 458.273896 +The maximum resident set size (KB) = 844568 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -337,14 +337,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1056.038357 -The maximum resident set size (KB) = 1573304 +The total amount of wall time = 1060.784931 +The maximum resident set size (KB) = 1585024 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -396,14 +396,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1205.507198 -The maximum resident set size (KB) = 1622364 +The total amount of wall time = 1200.652157 +The maximum resident set size (KB) = 1615740 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.298280 -The maximum resident set size (KB) = 2997792 +The total amount of wall time = 364.338417 +The maximum resident set size (KB) = 2997952 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.000874 -The maximum resident set size (KB) = 3055508 +The total amount of wall time = 215.212775 +The maximum resident set size (KB) = 3056696 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -600,14 +600,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.268391 -The maximum resident set size (KB) = 3020256 +The total amount of wall time = 365.197140 +The maximum resident set size (KB) = 3025608 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -660,14 +660,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 219.622088 -The maximum resident set size (KB) = 2908796 +The total amount of wall time = 219.240745 +The maximum resident set size (KB) = 2911368 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 327.356352 -The maximum resident set size (KB) = 3301872 +The total amount of wall time = 325.664155 +The maximum resident set size (KB) = 3304968 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.460369 -The maximum resident set size (KB) = 2992792 +The total amount of wall time = 357.618460 +The maximum resident set size (KB) = 2996568 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 302.139719 -The maximum resident set size (KB) = 2921560 +The total amount of wall time = 302.873688 +The maximum resident set size (KB) = 2929380 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -912,14 +912,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.938311 -The maximum resident set size (KB) = 2994616 +The total amount of wall time = 363.372652 +The maximum resident set size (KB) = 2997308 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -983,14 +983,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 270.464813 -The maximum resident set size (KB) = 1579560 +The total amount of wall time = 268.553374 +The maximum resident set size (KB) = 1594112 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1052,14 +1052,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 277.481724 -The maximum resident set size (KB) = 1636260 +The total amount of wall time = 274.847903 +The maximum resident set size (KB) = 1632948 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_noaero_p8_agrid_intel Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1121,14 +1121,14 @@ Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 276.163902 -The maximum resident set size (KB) = 1636260 +The total amount of wall time = 274.631858 +The maximum resident set size (KB) = 1636340 Test 017 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 412.372071 -The maximum resident set size (KB) = 2656780 +The total amount of wall time = 408.630012 +The maximum resident set size (KB) = 2649312 Test 018 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_p8_faster_intel Checking test 019 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 355.514777 -The maximum resident set size (KB) = 2996288 +The total amount of wall time = 355.573783 +The maximum resident set size (KB) = 2998692 Test 019 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_control_pdlib_p8_intel Checking test 020 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 934.629206 -The maximum resident set size (KB) = 1603916 +The total amount of wall time = 936.665543 +The maximum resident set size (KB) = 1611284 Test 020 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_restart_pdlib_p8_intel Checking test 021 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1380,14 +1380,14 @@ Checking test 021 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 460.177125 -The maximum resident set size (KB) = 882444 +The total amount of wall time = 468.274271 +The maximum resident set size (KB) = 884360 Test 021 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_mpi_pdlib_p8_intel Checking test 022 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1093.504300 -The maximum resident set size (KB) = 1590012 +The total amount of wall time = 1098.367154 +The maximum resident set size (KB) = 1599252 Test 022 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/cpld_debug_pdlib_p8_intel Checking test 023 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1510,14 +1510,14 @@ Checking test 023 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1471.497471 -The maximum resident set size (KB) = 1630444 +The total amount of wall time = 1467.068365 +The maximum resident set size (KB) = 1621972 Test 023 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_flake_intel Checking test 024 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1528,14 +1528,14 @@ Checking test 024 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.971093 -The maximum resident set size (KB) = 578080 +The total amount of wall time = 213.214381 +The maximum resident set size (KB) = 579956 Test 024 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_CubedSphereGrid_intel Checking test 025 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1562,14 +1562,14 @@ Checking test 025 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.045836 -The maximum resident set size (KB) = 530504 +The total amount of wall time = 131.213125 +The maximum resident set size (KB) = 527928 Test 025 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_CubedSphereGrid_parallel_intel Checking test 026 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 026 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.076400 -The maximum resident set size (KB) = 537068 +The total amount of wall time = 136.403352 +The maximum resident set size (KB) = 535572 Test 026 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_latlon_intel Checking test 027 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1602,14 +1602,14 @@ Checking test 027 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.794003 -The maximum resident set size (KB) = 530004 +The total amount of wall time = 133.673255 +The maximum resident set size (KB) = 534340 Test 027 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel_intel Checking test 028 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.925099 -The maximum resident set size (KB) = 531488 +The total amount of wall time = 135.455883 +The maximum resident set size (KB) = 530824 Test 028 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_c48_intel Checking test 029 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1666,14 +1666,14 @@ Checking test 029 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.223307 -The maximum resident set size (KB) = 717672 +The total amount of wall time = 330.544330 +The maximum resident set size (KB) = 715588 Test 029 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_c192_intel Checking test 030 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 030 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.597851 -The maximum resident set size (KB) = 642828 +The total amount of wall time = 528.121096 +The maximum resident set size (KB) = 644628 Test 030 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_c384_intel Checking test 031 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1702,14 +1702,14 @@ Checking test 031 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 578.247300 -The maximum resident set size (KB) = 964320 +The total amount of wall time = 578.367333 +The maximum resident set size (KB) = 961344 Test 031 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_c384gdas_intel Checking test 032 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1752,14 +1752,14 @@ Checking test 032 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 510.971887 -The maximum resident set size (KB) = 1103892 +The total amount of wall time = 511.036944 +The maximum resident set size (KB) = 1098832 Test 032 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_stochy_intel Checking test 033 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1770,28 +1770,28 @@ Checking test 033 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.698232 -The maximum resident set size (KB) = 534024 +The total amount of wall time = 88.747971 +The maximum resident set size (KB) = 535652 Test 033 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_stochy_restart_intel Checking test 034 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.815376 -The maximum resident set size (KB) = 313480 +The total amount of wall time = 50.051306 +The maximum resident set size (KB) = 312760 Test 034 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_lndp_intel Checking test 035 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 035 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.441795 -The maximum resident set size (KB) = 535640 +The total amount of wall time = 84.342082 +The maximum resident set size (KB) = 536580 Test 035 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_iovr4_intel Checking test 036 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1824,14 +1824,14 @@ Checking test 036 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.399239 -The maximum resident set size (KB) = 531064 +The total amount of wall time = 134.715192 +The maximum resident set size (KB) = 530828 Test 036 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_iovr5_intel Checking test 037 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1846,14 +1846,14 @@ Checking test 037 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.293203 -The maximum resident set size (KB) = 530216 +The total amount of wall time = 133.317274 +The maximum resident set size (KB) = 535036 Test 037 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_intel Checking test 038 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.845671 -The maximum resident set size (KB) = 1513720 +The total amount of wall time = 164.509403 +The maximum resident set size (KB) = 1513292 Test 038 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_ugwpv1_intel Checking test 039 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.581939 -The maximum resident set size (KB) = 1510904 +The total amount of wall time = 160.955734 +The maximum resident set size (KB) = 1516440 Test 039 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_restart_p8_intel Checking test 040 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 90.207269 -The maximum resident set size (KB) = 671864 +The total amount of wall time = 90.692815 +The maximum resident set size (KB) = 672088 Test 040 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_noqr_p8_intel Checking test 041 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2054,14 +2054,14 @@ Checking test 041 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 162.381590 -The maximum resident set size (KB) = 1491996 +The total amount of wall time = 163.621982 +The maximum resident set size (KB) = 1495936 Test 041 control_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_restart_noqr_p8_intel Checking test 042 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 88.735184 -The maximum resident set size (KB) = 704752 +The total amount of wall time = 89.594573 +The maximum resident set size (KB) = 706316 Test 042 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_decomp_p8_intel Checking test 043 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2150,14 +2150,14 @@ Checking test 043 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.472610 -The maximum resident set size (KB) = 1510068 +The total amount of wall time = 167.480551 +The maximum resident set size (KB) = 1498368 Test 043 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_2threads_p8_intel Checking test 044 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 044 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.920178 -The maximum resident set size (KB) = 1594032 +The total amount of wall time = 144.269555 +The maximum resident set size (KB) = 1595924 Test 044 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_lndp_intel Checking test 045 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2226,14 +2226,14 @@ Checking test 045 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 294.469260 -The maximum resident set size (KB) = 1507068 +The total amount of wall time = 295.502559 +The maximum resident set size (KB) = 1508660 Test 045 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_rrtmgp_intel Checking test 046 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 046 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.089988 -The maximum resident set size (KB) = 1561140 +The total amount of wall time = 221.653313 +The maximum resident set size (KB) = 1571136 Test 046 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_mynn_intel Checking test 047 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2334,14 +2334,14 @@ Checking test 047 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.447072 -The maximum resident set size (KB) = 1509592 +The total amount of wall time = 166.953884 +The maximum resident set size (KB) = 1517032 Test 047 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/merra2_thompson_intel Checking test 048 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 048 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 197.703055 -The maximum resident set size (KB) = 1516388 +The total amount of wall time = 198.379367 +The maximum resident set size (KB) = 1511708 Test 048 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_control_intel Checking test 049 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,28 +2406,28 @@ Checking test 049 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.408817 -The maximum resident set size (KB) = 606544 +The total amount of wall time = 286.376213 +The maximum resident set size (KB) = 607700 Test 049 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_restart_intel Checking test 050 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.867944 -The maximum resident set size (KB) = 612800 +The total amount of wall time = 152.770522 +The maximum resident set size (KB) = 614244 Test 050 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.491465 -The maximum resident set size (KB) = 612260 +The total amount of wall time = 302.110059 +The maximum resident set size (KB) = 613956 Test 051 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2456,14 +2456,14 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.799009 -The maximum resident set size (KB) = 665680 +The total amount of wall time = 170.222400 +The maximum resident set size (KB) = 665488 Test 052 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 053 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 280.749025 -The maximum resident set size (KB) = 1144020 +The total amount of wall time = 280.700602 +The maximum resident set size (KB) = 1148492 Test 053 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2489,14 +2489,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.543502 -The maximum resident set size (KB) = 614276 +The total amount of wall time = 283.629858 +The maximum resident set size (KB) = 606468 Test 054 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 368.765202 -The maximum resident set size (KB) = 1582504 +The total amount of wall time = 367.257004 +The maximum resident set size (KB) = 1585364 Test 055 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_ifi_control_intel Checking test 056 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 056 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 313.556172 -The maximum resident set size (KB) = 604548 +The total amount of wall time = 315.444536 +The maximum resident set size (KB) = 609716 Test 056 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_ifi_decomp_intel Checking test 057 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 057 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 329.462435 -The maximum resident set size (KB) = 609276 +The total amount of wall time = 330.843301 +The maximum resident set size (KB) = 610828 Test 057 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_ifi_2threads_intel Checking test 058 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2561,14 +2561,14 @@ Checking test 058 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 191.206593 -The maximum resident set size (KB) = 665580 +The total amount of wall time = 191.502227 +The maximum resident set size (KB) = 666912 Test 058 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_control_intel Checking test 059 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2615,14 +2615,14 @@ Checking test 059 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.492238 -The maximum resident set size (KB) = 913724 +The total amount of wall time = 408.118196 +The maximum resident set size (KB) = 914628 Test 059 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb_intel Checking test 060 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 238.345386 -The maximum resident set size (KB) = 1087460 +The total amount of wall time = 240.875485 +The maximum resident set size (KB) = 1088352 Test 060 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_decomp_intel Checking test 061 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2687,14 +2687,14 @@ Checking test 061 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.189788 -The maximum resident set size (KB) = 918364 +The total amount of wall time = 421.955654 +The maximum resident set size (KB) = 921996 Test 061 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_2threads_intel Checking test 062 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2741,14 +2741,14 @@ Checking test 062 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.513264 -The maximum resident set size (KB) = 1005964 +The total amount of wall time = 371.350794 +The maximum resident set size (KB) = 998464 Test 062 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_restart_intel Checking test 063 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.202642 -The maximum resident set size (KB) = 679836 +The total amount of wall time = 210.375503 +The maximum resident set size (KB) = 678592 Test 063 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_sfcdiff_intel Checking test 064 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2841,14 +2841,14 @@ Checking test 064 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.578958 -The maximum resident set size (KB) = 913476 +The total amount of wall time = 407.380928 +The maximum resident set size (KB) = 913764 Test 064 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_sfcdiff_decomp_intel Checking test 065 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2895,14 +2895,14 @@ Checking test 065 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.853588 -The maximum resident set size (KB) = 913576 +The total amount of wall time = 423.667813 +The maximum resident set size (KB) = 914848 Test 065 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_sfcdiff_restart_intel Checking test 066 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 304.408774 -The maximum resident set size (KB) = 684204 +The total amount of wall time = 305.203928 +The maximum resident set size (KB) = 682656 Test 066 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_intel Checking test 067 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.351101 -The maximum resident set size (KB) = 911132 +The total amount of wall time = 208.775789 +The maximum resident set size (KB) = 912340 Test 067 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_decomp_intel Checking test 068 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3049,14 +3049,14 @@ Checking test 068 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.146847 -The maximum resident set size (KB) = 910944 +The total amount of wall time = 213.009991 +The maximum resident set size (KB) = 909744 Test 068 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_2threads_intel Checking test 069 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 069 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.831852 -The maximum resident set size (KB) = 989612 +The total amount of wall time = 187.011157 +The maximum resident set size (KB) = 988104 Test 069 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_restart_intel Checking test 070 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.863647 -The maximum resident set size (KB) = 662696 +The total amount of wall time = 110.796997 +The maximum resident set size (KB) = 662180 Test 070 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 071 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 398.043641 -The maximum resident set size (KB) = 910324 +The total amount of wall time = 399.067431 +The maximum resident set size (KB) = 911872 Test 071 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3193,14 +3193,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 489.825798 -The maximum resident set size (KB) = 1874632 +The total amount of wall time = 489.524878 +The maximum resident set size (KB) = 1871444 Test 072 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3215,14 +3215,14 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.903044 -The maximum resident set size (KB) = 1861600 +The total amount of wall time = 472.966191 +The maximum resident set size (KB) = 1861284 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.702232 -The maximum resident set size (KB) = 607364 +The total amount of wall time = 335.991415 +The maximum resident set size (KB) = 604252 Test 074 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,26 +3251,26 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.662888 -The maximum resident set size (KB) = 603072 +The total amount of wall time = 334.430694 +The maximum resident set size (KB) = 602044 Test 075 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_wam_intel Checking test 076 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.245481 -The maximum resident set size (KB) = 280772 +The total amount of wall time = 119.321893 +The maximum resident set size (KB) = 277520 Test 076 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_faster_intel Checking test 077 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3317,14 +3317,14 @@ Checking test 077 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.257272 -The maximum resident set size (KB) = 1504204 +The total amount of wall time = 157.968979 +The maximum resident set size (KB) = 1502792 Test 077 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_control_faster_intel Checking test 078 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 272.574937 -The maximum resident set size (KB) = 610584 +The total amount of wall time = 275.822429 +The maximum resident set size (KB) = 603744 Test 078 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3369,364 +3369,364 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 160.102629 -The maximum resident set size (KB) = 689900 +The total amount of wall time = 160.056365 +The maximum resident set size (KB) = 686320 Test 079 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.485858 -The maximum resident set size (KB) = 688668 +The total amount of wall time = 157.966875 +The maximum resident set size (KB) = 689556 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_stochy_debug_intel Checking test 081 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.525779 -The maximum resident set size (KB) = 697132 +The total amount of wall time = 179.242740 +The maximum resident set size (KB) = 695984 Test 081 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_lndp_debug_intel Checking test 082 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.889386 -The maximum resident set size (KB) = 695992 +The total amount of wall time = 161.627574 +The maximum resident set size (KB) = 696440 Test 082 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_csawmg_debug_intel Checking test 083 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.948538 -The maximum resident set size (KB) = 729436 +The total amount of wall time = 249.694127 +The maximum resident set size (KB) = 731768 Test 083 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_csawmgt_debug_intel Checking test 084 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.298710 -The maximum resident set size (KB) = 732768 +The total amount of wall time = 245.245139 +The maximum resident set size (KB) = 731080 Test 084 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_ras_debug_intel Checking test 085 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.321880 -The maximum resident set size (KB) = 702784 +The total amount of wall time = 162.846167 +The maximum resident set size (KB) = 701080 Test 085 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_diag_debug_intel Checking test 086 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.996581 -The maximum resident set size (KB) = 749664 +The total amount of wall time = 164.845145 +The maximum resident set size (KB) = 749108 Test 086 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_debug_p8_intel Checking test 087 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.771509 -The maximum resident set size (KB) = 1520072 +The total amount of wall time = 165.535822 +The maximum resident set size (KB) = 1524200 Test 087 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_debug_intel Checking test 088 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1045.995188 -The maximum resident set size (KB) = 626072 +The total amount of wall time = 1049.655795 +The maximum resident set size (KB) = 625576 Test 088 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_control_debug_intel Checking test 089 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.580388 -The maximum resident set size (KB) = 1077232 +The total amount of wall time = 298.974304 +The maximum resident set size (KB) = 1073196 Test 089 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_debug_intel Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.824861 -The maximum resident set size (KB) = 1070048 +The total amount of wall time = 292.804858 +The maximum resident set size (KB) = 1069120 Test 090 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_gf_debug_intel Checking test 091 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.183037 -The maximum resident set size (KB) = 1074256 +The total amount of wall time = 298.112808 +The maximum resident set size (KB) = 1071884 Test 091 hrrr_gf_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_c3_debug_intel Checking test 092 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.526998 -The maximum resident set size (KB) = 1073564 +The total amount of wall time = 299.959634 +The maximum resident set size (KB) = 1075392 Test 092 hrrr_c3_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.374176 -The maximum resident set size (KB) = 1074620 +The total amount of wall time = 299.116472 +The maximum resident set size (KB) = 1075052 Test 093 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.517079 -The maximum resident set size (KB) = 1156692 +The total amount of wall time = 309.762376 +The maximum resident set size (KB) = 1159392 Test 094 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.550211 -The maximum resident set size (KB) = 1077184 +The total amount of wall time = 305.615739 +The maximum resident set size (KB) = 1077976 Test 095 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.286928 -The maximum resident set size (KB) = 1077912 +The total amount of wall time = 306.197401 +The maximum resident set size (KB) = 1077312 Test 096 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.536269 -The maximum resident set size (KB) = 1073820 +The total amount of wall time = 301.563844 +The maximum resident set size (KB) = 1076332 Test 097 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.560680 -The maximum resident set size (KB) = 1078468 +The total amount of wall time = 300.395043 +The maximum resident set size (KB) = 1077688 Test 098 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.502919 -The maximum resident set size (KB) = 1076932 +The total amount of wall time = 293.550083 +The maximum resident set size (KB) = 1072192 Test 099 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.547869 -The maximum resident set size (KB) = 1075652 +The total amount of wall time = 299.065961 +The maximum resident set size (KB) = 1076744 Test 100 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.892201 -The maximum resident set size (KB) = 1075300 +The total amount of wall time = 490.645628 +The maximum resident set size (KB) = 1072068 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.784771 -The maximum resident set size (KB) = 1065860 +The total amount of wall time = 295.291327 +The maximum resident set size (KB) = 1065464 Test 102 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 354.043545 -The maximum resident set size (KB) = 1074932 +The total amount of wall time = 355.806050 +The maximum resident set size (KB) = 1077652 Test 103 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.386523 -The maximum resident set size (KB) = 1077704 +The total amount of wall time = 299.207063 +The maximum resident set size (KB) = 1077288 Test 104 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/gnv1_c96_no_nest_debug_intel Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3767,26 +3767,26 @@ Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 522.984624 -The maximum resident set size (KB) = 1083188 +The total amount of wall time = 522.746309 +The maximum resident set size (KB) = 1083536 Test 105 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_wam_debug_intel Checking test 106 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.580995 -The maximum resident set size (KB) = 306904 +The total amount of wall time = 300.538798 +The maximum resident set size (KB) = 307872 Test 106 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3797,14 +3797,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.427694 -The maximum resident set size (KB) = 953316 +The total amount of wall time = 227.220043 +The maximum resident set size (KB) = 954368 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_control_dyn32_phy32_intel Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3851,14 +3851,14 @@ Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.937343 -The maximum resident set size (KB) = 791476 +The total amount of wall time = 335.844040 +The maximum resident set size (KB) = 793136 Test 108 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_dyn32_phy32_intel Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3905,14 +3905,14 @@ Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.785230 -The maximum resident set size (KB) = 794176 +The total amount of wall time = 176.521359 +The maximum resident set size (KB) = 793068 Test 109 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_2threads_dyn32_phy32_intel Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3959,14 +3959,14 @@ Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.137772 -The maximum resident set size (KB) = 858204 +The total amount of wall time = 307.086207 +The maximum resident set size (KB) = 855612 Test 110 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_2threads_dyn32_phy32_intel Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.651584 -The maximum resident set size (KB) = 846432 +The total amount of wall time = 159.695890 +The maximum resident set size (KB) = 848052 Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.194317 -The maximum resident set size (KB) = 791384 +The total amount of wall time = 183.852907 +The maximum resident set size (KB) = 795228 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4113,28 +4113,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.966588 -The maximum resident set size (KB) = 650208 +The total amount of wall time = 252.415092 +The maximum resident set size (KB) = 649492 Test 113 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_restart_dyn32_phy32_intel Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.236751 -The maximum resident set size (KB) = 635016 +The total amount of wall time = 93.950219 +The maximum resident set size (KB) = 633392 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4150,40 +4150,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 115.861733 -The maximum resident set size (KB) = 1060284 +The total amount of wall time = 116.020005 +The maximum resident set size (KB) = 1061620 Test 115 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 57.529194 -The maximum resident set size (KB) = 1064892 +The total amount of wall time = 57.301199 +The maximum resident set size (KB) = 1070100 Test 116 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.579048 -The maximum resident set size (KB) = 957928 +The total amount of wall time = 69.238170 +The maximum resident set size (KB) = 954592 Test 117 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4230,42 +4230,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.299168 -The maximum resident set size (KB) = 815504 +The total amount of wall time = 230.706337 +The maximum resident set size (KB) = 818384 Test 118 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.829455 -The maximum resident set size (KB) = 955116 +The total amount of wall time = 293.793126 +The maximum resident set size (KB) = 954148 Test 119 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.890405 -The maximum resident set size (KB) = 953052 +The total amount of wall time = 285.550191 +The maximum resident set size (KB) = 952616 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4279,14 +4279,14 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 886.295938 -The maximum resident set size (KB) = 1090672 +The total amount of wall time = 896.649458 +The maximum resident set size (KB) = 1090840 Test 121 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_debug_qr_intel Checking test 122 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4300,81 +4300,81 @@ Checking test 122 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 901.309060 -The maximum resident set size (KB) = 714860 +The total amount of wall time = 904.520054 +The maximum resident set size (KB) = 714776 Test 122 conus13km_debug_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_debug_2threads_intel Checking test 123 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 507.780574 -The maximum resident set size (KB) = 1091312 +The total amount of wall time = 511.733878 +The maximum resident set size (KB) = 1092592 Test 123 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/conus13km_radar_tten_debug_intel Checking test 124 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 890.701462 -The maximum resident set size (KB) = 1157200 +The total amount of wall time = 902.279432 +The maximum resident set size (KB) = 1158756 Test 124 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/rap_control_dyn64_phy32_debug_intel Checking test 125 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.014271 -The maximum resident set size (KB) = 978940 +The total amount of wall time = 295.212814 +The maximum resident set size (KB) = 976032 Test 125 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 334.798035 -The maximum resident set size (KB) = 617532 +The total amount of wall time = 342.074156 +The maximum resident set size (KB) = 617768 Test 126 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 305.966189 -The maximum resident set size (KB) = 983028 +The total amount of wall time = 312.047985 +The maximum resident set size (KB) = 976080 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4383,14 +4383,14 @@ Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 421.120654 -The maximum resident set size (KB) = 666660 +The total amount of wall time = 428.309960 +The maximum resident set size (KB) = 667880 Test 128 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4399,14 +4399,14 @@ Checking test 129 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 754.856492 -The maximum resident set size (KB) = 705512 +The total amount of wall time = 756.942688 +The maximum resident set size (KB) = 705248 Test 129 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4417,14 +4417,14 @@ Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 937.975886 -The maximum resident set size (KB) = 723740 +The total amount of wall time = 948.392752 +The maximum resident set size (KB) = 724892 Test 130 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_1nest_atm_intel Checking test 131 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4446,14 +4446,14 @@ Checking test 131 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 328.253927 -The maximum resident set size (KB) = 387124 +The total amount of wall time = 330.696804 +The maximum resident set size (KB) = 387068 Test 131 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_telescopic_2nests_atm_intel Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4462,14 +4462,14 @@ Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -The total amount of wall time = 423.709729 -The maximum resident set size (KB) = 410192 +The total amount of wall time = 429.507757 +The maximum resident set size (KB) = 408148 Test 132 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_global_1nest_atm_intel Checking test 133 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4516,14 +4516,14 @@ Checking test 133 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 169.839613 -The maximum resident set size (KB) = 290900 +The total amount of wall time = 171.560141 +The maximum resident set size (KB) = 290480 Test 133 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_global_multiple_4nests_atm_intel Checking test 134 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4605,14 +4605,14 @@ Checking test 134 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 497.902710 -The maximum resident set size (KB) = 383800 +The total amount of wall time = 508.010301 +The maximum resident set size (KB) = 390540 Test 134 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_specified_moving_1nest_atm_intel Checking test 135 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4621,14 +4621,14 @@ Checking test 135 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 230.419461 -The maximum resident set size (KB) = 423488 +The total amount of wall time = 230.762319 +The maximum resident set size (KB) = 421828 Test 135 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_intel Checking test 136 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4650,14 +4650,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 218.059889 -The maximum resident set size (KB) = 421048 +The total amount of wall time = 217.664257 +The maximum resident set size (KB) = 425968 Test 136 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4666,28 +4666,28 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 274.719656 -The maximum resident set size (KB) = 489940 +The total amount of wall time = 278.279844 +The maximum resident set size (KB) = 493880 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel 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 -The total amount of wall time = 90.607589 -The maximum resident set size (KB) = 319116 +The total amount of wall time = 92.171397 +The maximum resident set size (KB) = 318524 Test 138 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/gnv1_nested_intel Checking test 139 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4734,28 +4734,28 @@ Checking test 139 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 237.490624 -The maximum resident set size (KB) = 681124 +The total amount of wall time = 240.133423 +The maximum resident set size (KB) = 683272 Test 139 gnv1_nested_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc ............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 -The total amount of wall time = 827.162549 -The maximum resident set size (KB) = 503656 +The total amount of wall time = 827.565876 +The maximum resident set size (KB) = 508672 Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4766,14 +4766,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 525.855485 -The maximum resident set size (KB) = 546680 +The total amount of wall time = 529.174476 +The maximum resident set size (KB) = 543176 Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_docn_intel Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4781,14 +4781,14 @@ Checking test 142 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.789748 -The maximum resident set size (KB) = 671892 +The total amount of wall time = 398.420088 +The maximum resident set size (KB) = 668192 Test 142 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_docn_oisst_intel Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4796,131 +4796,131 @@ Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 397.066469 -The maximum resident set size (KB) = 653108 +The total amount of wall time = 403.435614 +The maximum resident set size (KB) = 652548 Test 143 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/hafs_regional_datm_cdeps_intel Checking test 144 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 949.390567 -The maximum resident set size (KB) = 822332 +The total amount of wall time = 945.479746 +The maximum resident set size (KB) = 885884 Test 144 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_control_cfsr_intel Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.123431 -The maximum resident set size (KB) = 739544 +The total amount of wall time = 144.542493 +The maximum resident set size (KB) = 740668 Test 145 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_restart_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_restart_cfsr_intel Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 90.441697 -The maximum resident set size (KB) = 715176 +The total amount of wall time = 90.912570 +The maximum resident set size (KB) = 728580 Test 146 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_control_gefs_intel Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.020453 -The maximum resident set size (KB) = 627616 +The total amount of wall time = 135.529879 +The maximum resident set size (KB) = 617184 Test 147 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_iau_gefs_intel Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.522384 -The maximum resident set size (KB) = 620416 +The total amount of wall time = 139.332202 +The maximum resident set size (KB) = 625608 Test 148 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_stochy_gefs_intel Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.159666 -The maximum resident set size (KB) = 620740 +The total amount of wall time = 138.594191 +The maximum resident set size (KB) = 623256 Test 149 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_ciceC_cfsr_intel Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.758772 -The maximum resident set size (KB) = 741164 +The total amount of wall time = 144.662368 +The maximum resident set size (KB) = 740400 Test 150 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_bulk_cfsr_intel Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.406102 -The maximum resident set size (KB) = 739868 +The total amount of wall time = 144.952491 +The maximum resident set size (KB) = 740852 Test 151 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_bulk_gefs_intel Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.681623 -The maximum resident set size (KB) = 620108 +The total amount of wall time = 136.020368 +The maximum resident set size (KB) = 618744 Test 152 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_mx025_cfsr_intel Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4929,14 +4929,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 431.048997 -The maximum resident set size (KB) = 583552 +The total amount of wall time = 432.211954 +The maximum resident set size (KB) = 589652 Test 153 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_mx025_gefs_intel Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4945,64 +4945,64 @@ Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 431.187178 -The maximum resident set size (KB) = 570792 +The total amount of wall time = 430.232119 +The maximum resident set size (KB) = 568728 Test 154 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_multiple_files_cfsr_intel Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.048088 -The maximum resident set size (KB) = 739556 +The total amount of wall time = 144.541823 +The maximum resident set size (KB) = 741268 Test 155 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_3072x1536_cfsr_intel Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 259.271876 -The maximum resident set size (KB) = 1983860 +The total amount of wall time = 263.523770 +The maximum resident set size (KB) = 1986208 Test 156 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_gfs_intel Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 260.081772 -The maximum resident set size (KB) = 1982940 +The total amount of wall time = 262.215949 +The maximum resident set size (KB) = 1985116 Test 157 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_control_cfsr_faster_intel Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.284995 -The maximum resident set size (KB) = 742688 +The total amount of wall time = 144.702979 +The maximum resident set size (KB) = 741196 Test 158 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3_intel Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5011,14 +5011,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.777089 -The maximum resident set size (KB) = 225152 +The total amount of wall time = 23.622944 +The maximum resident set size (KB) = 225740 Test 159 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3_rst_intel Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5027,14 +5027,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 28.239493 -The maximum resident set size (KB) = 217076 +The total amount of wall time = 26.838526 +The maximum resident set size (KB) = 226260 Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_p8_atmlnd_sbs_intel Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5119,14 +5119,14 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 215.208199 -The maximum resident set size (KB) = 1566680 +The total amount of wall time = 217.976517 +The maximum resident set size (KB) = 1567736 Test 161 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/atmwav_control_noaero_p8_intel Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5169,14 +5169,14 @@ Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 101.429181 +The total amount of wall time = 101.501662 The maximum resident set size (KB) = 1546456 Test 162 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/control_atmwav_intel Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5220,14 +5220,14 @@ Checking test 163 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.964325 -The maximum resident set size (KB) = 559148 +The total amount of wall time = 91.702755 +The maximum resident set size (KB) = 556716 Test 163 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/atmaero_control_p8_intel Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5271,14 +5271,14 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 240.908311 -The maximum resident set size (KB) = 2841400 +The total amount of wall time = 238.702681 +The maximum resident set size (KB) = 2843952 Test 164 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/atmaero_control_p8_rad_intel Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5322,14 +5322,14 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 275.526631 -The maximum resident set size (KB) = 2901516 +The total amount of wall time = 278.049065 +The maximum resident set size (KB) = 2901520 Test 165 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/atmaero_control_p8_rad_micro_intel Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5373,14 +5373,14 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 291.785089 -The maximum resident set size (KB) = 2918232 +The total amount of wall time = 293.306627 +The maximum resident set size (KB) = 2916384 Test 166 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_atmaq_intel Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5396,14 +5396,14 @@ Checking test 167 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 688.120585 -The maximum resident set size (KB) = 5011092 +The total amount of wall time = 708.014864 +The maximum resident set size (KB) = 5009948 Test 167 regional_atmaq_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_atmaq_debug_intel Checking test 168 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5417,14 +5417,14 @@ Checking test 168 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1313.440294 -The maximum resident set size (KB) = 4442624 +The total amount of wall time = 1326.065729 +The maximum resident set size (KB) = 4434136 Test 168 regional_atmaq_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40282/regional_atmaq_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9941/regional_atmaq_faster_intel Checking test 169 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5440,12 +5440,12 @@ Checking test 169 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 907.585997 -The maximum resident set size (KB) = 5005532 +The total amount of wall time = 907.225744 +The maximum resident set size (KB) = 5011864 Test 169 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 30 22:47:43 UTC 2023 -Elapsed time: 01h:40m:45s. Have a nice day! +Sat Dec 2 02:47:18 UTC 2023 +Elapsed time: 02h:54m:31s. Have a nice day! From 29aa3bcd27bc0b1f1633c659fcfd81be157b29df Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Sat, 2 Dec 2023 03:29:53 +0000 Subject: [PATCH 19/30] WCOSS2 RT Log --- tests/logs/RegressionTests_wcoss2.log | 984 +++++++++++++------------- 1 file changed, 492 insertions(+), 492 deletions(-) diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 6d22d57253..6ce32359b0 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Thu Nov 30 21:07:13 UTC 2023 +Fri Dec 1 23:57:08 UTC 2023 Start Regression test -Testing UFSWM Hash: 691fdcb760b87a37e01b81115eadf641107b3509 +Testing UFSWM Hash: a592791359b83c8998f4f516e4f8769efaf3e96b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/HEAD-7-gc9d4928) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atmaero_intel elapsed time 973 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 267 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 683 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 749 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 820 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1361 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 618 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1143 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 538 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 796 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 593 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 709 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 985 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 867 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 1004 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 878 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 660 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 255 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 686 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1402 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 652 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1253 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 707 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 917 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 775 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 732 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 704 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 784 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 784 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1330 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 622 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 907 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 1141 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 592 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1307 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1009 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1037 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1267 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 854 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 724 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 1301 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 711 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 2270 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 669 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1321 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 210 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 716 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 324 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 335.856166 -The maximum resident set size (KB) = 2966280 +The total amount of wall time = 337.830923 +The maximum resident set size (KB) = 2965444 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 925.629693 -The maximum resident set size (KB) = 1592084 +The total amount of wall time = 919.523026 +The maximum resident set size (KB) = 1593540 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -200,14 +200,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK -The total amount of wall time = 623.768707 -The maximum resident set size (KB) = 848100 +The total amount of wall time = 641.495555 +The maximum resident set size (KB) = 851224 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -260,14 +260,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 462.682598 -The maximum resident set size (KB) = 839492 +The total amount of wall time = 463.028996 +The maximum resident set size (KB) = 835452 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -331,14 +331,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1074.678665 -The maximum resident set size (KB) = 1580544 +The total amount of wall time = 1065.795384 +The maximum resident set size (KB) = 1582312 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1211.207240 -The maximum resident set size (KB) = 1612236 +The total amount of wall time = 1211.483064 +The maximum resident set size (KB) = 1609972 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -462,14 +462,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.550649 -The maximum resident set size (KB) = 2992096 +The total amount of wall time = 379.887484 +The maximum resident set size (KB) = 2991464 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -522,14 +522,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.079836 -The maximum resident set size (KB) = 3054604 +The total amount of wall time = 230.965116 +The maximum resident set size (KB) = 3051428 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -594,14 +594,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.465948 -The maximum resident set size (KB) = 3016412 +The total amount of wall time = 383.264736 +The maximum resident set size (KB) = 3018344 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -654,14 +654,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.121047 -The maximum resident set size (KB) = 2902432 +The total amount of wall time = 237.750570 +The maximum resident set size (KB) = 2903768 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -714,14 +714,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 339.395549 -The maximum resident set size (KB) = 3298000 +The total amount of wall time = 336.497718 +The maximum resident set size (KB) = 3296328 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -774,14 +774,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.284766 -The maximum resident set size (KB) = 2985180 +The total amount of wall time = 377.109029 +The maximum resident set size (KB) = 2985036 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -834,14 +834,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.864150 -The maximum resident set size (KB) = 2922312 +The total amount of wall time = 318.088635 +The maximum resident set size (KB) = 2920560 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -906,14 +906,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.810125 -The maximum resident set size (KB) = 2992868 +The total amount of wall time = 380.718140 +The maximum resident set size (KB) = 2991044 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_bmark_p8_intel Checking test 015 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -961,14 +961,14 @@ Checking test 015 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 775.897931 -The maximum resident set size (KB) = 3954472 +The total amount of wall time = 766.205336 +The maximum resident set size (KB) = 3954092 Test 015 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_restart_bmark_p8_intel Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1016,14 +1016,14 @@ Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 636.397720 -The maximum resident set size (KB) = 4249424 +The total amount of wall time = 581.073190 +The maximum resident set size (KB) = 4246420 Test 016 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1087,14 +1087,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 283.507109 -The maximum resident set size (KB) = 1577808 +The total amount of wall time = 279.438686 +The maximum resident set size (KB) = 1581564 Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 293.498023 -The maximum resident set size (KB) = 1630324 +The total amount of wall time = 289.324353 +The maximum resident set size (KB) = 1638564 Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1225,14 +1225,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 288.554555 -The maximum resident set size (KB) = 1628808 +The total amount of wall time = 289.706719 +The maximum resident set size (KB) = 1635896 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 422.173431 -The maximum resident set size (KB) = 2651100 +The total amount of wall time = 418.245674 +The maximum resident set size (KB) = 2649500 Test 020 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.541992 -The maximum resident set size (KB) = 2993564 +The total amount of wall time = 369.505392 +The maximum resident set size (KB) = 2991832 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1425,14 +1425,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 943.200179 -The maximum resident set size (KB) = 1597024 +The total amount of wall time = 943.944339 +The maximum resident set size (KB) = 1594400 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1484,14 +1484,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 467.666896 -The maximum resident set size (KB) = 874064 +The total amount of wall time = 472.945997 +The maximum resident set size (KB) = 876980 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1555,14 +1555,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1103.419747 -The maximum resident set size (KB) = 1586352 +The total amount of wall time = 1117.474401 +The maximum resident set size (KB) = 1580008 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1614,14 +1614,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1492.175062 -The maximum resident set size (KB) = 1622192 +The total amount of wall time = 1580.770412 +The maximum resident set size (KB) = 1615208 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1632,14 +1632,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.324195 -The maximum resident set size (KB) = 572088 +The total amount of wall time = 217.798114 +The maximum resident set size (KB) = 570280 Test 026 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1666,14 +1666,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 134.969983 -The maximum resident set size (KB) = 524832 +The total amount of wall time = 133.445283 +The maximum resident set size (KB) = 521664 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.229214 -The maximum resident set size (KB) = 532588 +The total amount of wall time = 143.556739 +The maximum resident set size (KB) = 527364 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.581551 -The maximum resident set size (KB) = 526644 +The total amount of wall time = 134.572242 +The maximum resident set size (KB) = 524536 Test 029 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.147294 -The maximum resident set size (KB) = 526544 +The total amount of wall time = 138.127432 +The maximum resident set size (KB) = 525036 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.803830 -The maximum resident set size (KB) = 715900 +The total amount of wall time = 331.568949 +The maximum resident set size (KB) = 710184 Test 031 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1788,14 +1788,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 535.651247 -The maximum resident set size (KB) = 635204 +The total amount of wall time = 533.287780 +The maximum resident set size (KB) = 636108 Test 032 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1806,14 +1806,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 593.759671 -The maximum resident set size (KB) = 951884 +The total amount of wall time = 587.068073 +The maximum resident set size (KB) = 951248 Test 033 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 527.374380 -The maximum resident set size (KB) = 1088816 +The total amount of wall time = 528.885050 +The maximum resident set size (KB) = 1093320 Test 034 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1874,28 +1874,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.246634 -The maximum resident set size (KB) = 530108 +The total amount of wall time = 90.095709 +The maximum resident set size (KB) = 531692 Test 035 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 52.264183 -The maximum resident set size (KB) = 300000 +The total amount of wall time = 55.554130 +The maximum resident set size (KB) = 303124 Test 036 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1906,14 +1906,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.104165 -The maximum resident set size (KB) = 524056 +The total amount of wall time = 85.883338 +The maximum resident set size (KB) = 524864 Test 037 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.033791 -The maximum resident set size (KB) = 522856 +The total amount of wall time = 136.903849 +The maximum resident set size (KB) = 523328 Test 038 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.509537 -The maximum resident set size (KB) = 523312 +The total amount of wall time = 137.338459 +The maximum resident set size (KB) = 524112 Test 039 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.430386 -The maximum resident set size (KB) = 1499568 +The total amount of wall time = 178.863522 +The maximum resident set size (KB) = 1497660 Test 040 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_ugwpv1_intel Checking test 041 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 041 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.720936 -The maximum resident set size (KB) = 1501500 +The total amount of wall time = 172.973356 +The maximum resident set size (KB) = 1506048 Test 041 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_restart_p8_intel Checking test 042 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 042 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 102.174723 -The maximum resident set size (KB) = 659720 +The total amount of wall time = 101.300172 +The maximum resident set size (KB) = 661324 Test 042 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_noqr_p8_intel Checking test 043 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2158,14 +2158,14 @@ Checking test 043 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 184.309282 -The maximum resident set size (KB) = 1491076 +The total amount of wall time = 176.262954 +The maximum resident set size (KB) = 1490132 Test 043 control_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_restart_noqr_p8_intel Checking test 044 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2204,14 +2204,14 @@ Checking test 044 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 103.400938 -The maximum resident set size (KB) = 698864 +The total amount of wall time = 98.178183 +The maximum resident set size (KB) = 699000 Test 044 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_decomp_p8_intel Checking test 045 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2254,14 +2254,14 @@ Checking test 045 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.144899 -The maximum resident set size (KB) = 1502620 +The total amount of wall time = 180.278097 +The maximum resident set size (KB) = 1488756 Test 045 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_2threads_p8_intel Checking test 046 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2304,14 +2304,14 @@ Checking test 046 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.437723 -The maximum resident set size (KB) = 1592284 +The total amount of wall time = 155.358972 +The maximum resident set size (KB) = 1593788 Test 046 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_lndp_intel Checking test 047 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 047 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.390265 -The maximum resident set size (KB) = 1499484 +The total amount of wall time = 304.485076 +The maximum resident set size (KB) = 1500292 Test 047 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_rrtmgp_intel Checking test 048 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2384,14 +2384,14 @@ Checking test 048 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 240.044124 -The maximum resident set size (KB) = 1553380 +The total amount of wall time = 229.906374 +The maximum resident set size (KB) = 1559336 Test 048 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_mynn_intel Checking test 049 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 049 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.433943 -The maximum resident set size (KB) = 1506460 +The total amount of wall time = 176.955475 +The maximum resident set size (KB) = 1502196 Test 049 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/merra2_thompson_intel Checking test 050 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 050 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 221.107771 -The maximum resident set size (KB) = 1500836 +The total amount of wall time = 209.176276 +The maximum resident set size (KB) = 1507792 Test 050 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_control_intel Checking test 051 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2510,28 +2510,28 @@ Checking test 051 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.770971 -The maximum resident set size (KB) = 600608 +The total amount of wall time = 289.624818 +The maximum resident set size (KB) = 601484 Test 051 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_restart_intel Checking test 052 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 167.350332 -The maximum resident set size (KB) = 601736 +The total amount of wall time = 158.898567 +The maximum resident set size (KB) = 601484 Test 052 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_decomp_intel Checking test 053 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2542,14 +2542,14 @@ Checking test 053 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 320.933480 -The maximum resident set size (KB) = 604808 +The total amount of wall time = 309.645416 +The maximum resident set size (KB) = 601132 Test 053 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_2threads_intel Checking test 054 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2560,14 +2560,14 @@ Checking test 054 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 191.313961 -The maximum resident set size (KB) = 660316 +The total amount of wall time = 187.408763 +The maximum resident set size (KB) = 655916 Test 054 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_noquilt_intel Checking test 055 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2575,28 +2575,28 @@ Checking test 055 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 286.722352 -The maximum resident set size (KB) = 1137956 +The total amount of wall time = 289.032822 +The maximum resident set size (KB) = 1136340 Test 055 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_netcdf_parallel_intel Checking test 056 regional_netcdf_parallel_intel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -The total amount of wall time = 295.799765 -The maximum resident set size (KB) = 606080 +The total amount of wall time = 292.995168 +The maximum resident set size (KB) = 605728 Test 056 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_2dwrtdecomp_intel Checking test 057 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2607,14 +2607,14 @@ Checking test 057 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.696263 -The maximum resident set size (KB) = 601936 +The total amount of wall time = 291.547432 +The maximum resident set size (KB) = 601788 Test 057 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_wofs_intel Checking test 058 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2625,14 +2625,14 @@ Checking test 058 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 396.267888 -The maximum resident set size (KB) = 1578344 +The total amount of wall time = 381.976746 +The maximum resident set size (KB) = 1576324 Test 058 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_control_intel Checking test 059 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 059 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.196479 -The maximum resident set size (KB) = 911656 +The total amount of wall time = 410.102808 +The maximum resident set size (KB) = 911676 Test 059 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_spp_sppt_shum_skeb_intel Checking test 060 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 060 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 250.911254 -The maximum resident set size (KB) = 1084324 +The total amount of wall time = 253.408622 +The maximum resident set size (KB) = 1085212 Test 060 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_decomp_intel Checking test 061 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 061 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.601595 -The maximum resident set size (KB) = 914512 +The total amount of wall time = 427.325066 +The maximum resident set size (KB) = 912480 Test 061 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_2threads_intel Checking test 062 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 062 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 377.312968 -The maximum resident set size (KB) = 1004124 +The total amount of wall time = 375.718459 +The maximum resident set size (KB) = 1002172 Test 062 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_restart_intel Checking test 063 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 063 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.085085 -The maximum resident set size (KB) = 675712 +The total amount of wall time = 213.110481 +The maximum resident set size (KB) = 672628 Test 063 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_sfcdiff_intel Checking test 064 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 064 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.848036 -The maximum resident set size (KB) = 908772 +The total amount of wall time = 408.552631 +The maximum resident set size (KB) = 911660 Test 064 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_sfcdiff_decomp_intel Checking test 065 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 065 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.386000 -The maximum resident set size (KB) = 907640 +The total amount of wall time = 424.467486 +The maximum resident set size (KB) = 909356 Test 065 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_sfcdiff_restart_intel Checking test 066 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3005,14 +3005,14 @@ Checking test 066 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 306.148576 -The maximum resident set size (KB) = 679812 +The total amount of wall time = 306.308817 +The maximum resident set size (KB) = 677584 Test 066 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_intel Checking test 067 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3059,14 +3059,14 @@ Checking test 067 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 216.275799 -The maximum resident set size (KB) = 904612 +The total amount of wall time = 211.520588 +The maximum resident set size (KB) = 906568 Test 067 hrrr_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_decomp_intel Checking test 068 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3113,14 +3113,14 @@ Checking test 068 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.995469 -The maximum resident set size (KB) = 907984 +The total amount of wall time = 216.358821 +The maximum resident set size (KB) = 903356 Test 068 hrrr_control_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_2threads_intel Checking test 069 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3167,28 +3167,28 @@ Checking test 069 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 196.858862 -The maximum resident set size (KB) = 985932 +The total amount of wall time = 187.781829 +The maximum resident set size (KB) = 990640 Test 069 hrrr_control_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_restart_intel Checking test 070 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 114.161759 -The maximum resident set size (KB) = 657644 +The total amount of wall time = 111.166892 +The maximum resident set size (KB) = 656268 Test 070 hrrr_control_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3235,14 +3235,14 @@ Checking test 071 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.497495 -The maximum resident set size (KB) = 907176 +The total amount of wall time = 401.214812 +The maximum resident set size (KB) = 908140 Test 071 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3257,14 +3257,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 491.316676 -The maximum resident set size (KB) = 1873212 +The total amount of wall time = 493.518686 +The maximum resident set size (KB) = 1873816 Test 072 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 476.014264 -The maximum resident set size (KB) = 1860772 +The total amount of wall time = 473.925359 +The maximum resident set size (KB) = 1860548 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3297,14 +3297,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.853056 -The maximum resident set size (KB) = 597508 +The total amount of wall time = 349.503457 +The maximum resident set size (KB) = 598020 Test 074 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3315,14 +3315,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.038763 -The maximum resident set size (KB) = 597392 +The total amount of wall time = 344.040385 +The maximum resident set size (KB) = 600344 Test 075 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3333,26 +3333,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 187.345106 -The maximum resident set size (KB) = 560924 +The total amount of wall time = 185.914325 +The maximum resident set size (KB) = 559556 Test 076 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.826284 -The maximum resident set size (KB) = 271008 +The total amount of wall time = 119.647542 +The maximum resident set size (KB) = 273428 Test 077 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3399,14 +3399,14 @@ Checking test 078 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.971967 -The maximum resident set size (KB) = 1504628 +The total amount of wall time = 171.169322 +The maximum resident set size (KB) = 1500756 Test 078 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3417,14 +3417,14 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.514853 -The maximum resident set size (KB) = 600204 +The total amount of wall time = 283.341337 +The maximum resident set size (KB) = 606148 Test 079 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_CubedSphereGrid_debug_intel Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3451,364 +3451,364 @@ Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.737758 -The maximum resident set size (KB) = 683468 +The total amount of wall time = 161.911138 +The maximum resident set size (KB) = 683588 Test 080 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_wrtGauss_netcdf_parallel_debug_intel Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.798324 -The maximum resident set size (KB) = 684660 +The total amount of wall time = 160.126764 +The maximum resident set size (KB) = 688680 Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_stochy_debug_intel Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.530494 -The maximum resident set size (KB) = 692168 +The total amount of wall time = 182.198046 +The maximum resident set size (KB) = 691344 Test 082 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_lndp_debug_intel Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.037817 -The maximum resident set size (KB) = 690816 +The total amount of wall time = 165.138668 +The maximum resident set size (KB) = 687352 Test 083 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_csawmg_debug_intel Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 263.415482 -The maximum resident set size (KB) = 731552 +The total amount of wall time = 256.728366 +The maximum resident set size (KB) = 731744 Test 084 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_csawmgt_debug_intel Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.424918 -The maximum resident set size (KB) = 729884 +The total amount of wall time = 254.699016 +The maximum resident set size (KB) = 730900 Test 085 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_ras_debug_intel Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.548372 -The maximum resident set size (KB) = 700408 +The total amount of wall time = 165.224213 +The maximum resident set size (KB) = 697776 Test 086 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_diag_debug_intel Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 176.429915 -The maximum resident set size (KB) = 743812 +The total amount of wall time = 168.808204 +The maximum resident set size (KB) = 744592 Test 087 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_debug_p8_intel Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 174.222870 -The maximum resident set size (KB) = 1519780 +The total amount of wall time = 173.006841 +The maximum resident set size (KB) = 1516700 Test 088 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_debug_intel Checking test 089 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1059.703758 -The maximum resident set size (KB) = 624784 +The total amount of wall time = 1159.320826 +The maximum resident set size (KB) = 631304 Test 089 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_control_debug_intel Checking test 090 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.845780 -The maximum resident set size (KB) = 1076712 +The total amount of wall time = 300.467674 +The maximum resident set size (KB) = 1072940 Test 090 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_debug_intel Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.890050 -The maximum resident set size (KB) = 1064812 +The total amount of wall time = 295.751565 +The maximum resident set size (KB) = 1068888 Test 091 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_gf_debug_intel Checking test 092 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.909937 -The maximum resident set size (KB) = 1071644 +The total amount of wall time = 300.919254 +The maximum resident set size (KB) = 1072212 Test 092 hrrr_gf_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_c3_debug_intel Checking test 093 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.628656 -The maximum resident set size (KB) = 1071564 +The total amount of wall time = 302.432655 +The maximum resident set size (KB) = 1070768 Test 093 hrrr_c3_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_unified_drag_suite_debug_intel Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.554507 -The maximum resident set size (KB) = 1075780 +The total amount of wall time = 302.048505 +The maximum resident set size (KB) = 1076092 Test 094 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_diag_debug_intel Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 324.636486 -The maximum resident set size (KB) = 1153792 +The total amount of wall time = 315.096998 +The maximum resident set size (KB) = 1159312 Test 095 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_cires_ugwp_debug_intel Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.168147 -The maximum resident set size (KB) = 1071232 +The total amount of wall time = 316.650751 +The maximum resident set size (KB) = 1077120 Test 096 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_unified_ugwp_debug_intel Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.963845 -The maximum resident set size (KB) = 1077232 +The total amount of wall time = 310.734617 +The maximum resident set size (KB) = 1074144 Test 097 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_lndp_debug_intel Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.709945 -The maximum resident set size (KB) = 1075688 +The total amount of wall time = 306.696758 +The maximum resident set size (KB) = 1074868 Test 098 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_progcld_thompson_debug_intel Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.065910 -The maximum resident set size (KB) = 1075900 +The total amount of wall time = 304.608766 +The maximum resident set size (KB) = 1078220 Test 099 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_noah_debug_intel Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.410799 -The maximum resident set size (KB) = 1071720 +The total amount of wall time = 299.270898 +The maximum resident set size (KB) = 1069780 Test 100 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_sfcdiff_debug_intel Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.120721 -The maximum resident set size (KB) = 1074068 +The total amount of wall time = 302.949639 +The maximum resident set size (KB) = 1073932 Test 101 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 498.130585 -The maximum resident set size (KB) = 1074524 +The total amount of wall time = 497.310272 +The maximum resident set size (KB) = 1073668 Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rrfs_v1beta_debug_intel Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.800567 -The maximum resident set size (KB) = 1069544 +The total amount of wall time = 298.270535 +The maximum resident set size (KB) = 1069812 Test 103 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_clm_lake_debug_intel Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 362.203875 -The maximum resident set size (KB) = 1070816 +The total amount of wall time = 359.604134 +The maximum resident set size (KB) = 1074976 Test 104 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_flake_debug_intel Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.588856 -The maximum resident set size (KB) = 1075680 +The total amount of wall time = 302.227469 +The maximum resident set size (KB) = 1077112 Test 105 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/gnv1_c96_no_nest_debug_intel Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3849,26 +3849,26 @@ Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 526.135243 -The maximum resident set size (KB) = 1075252 +The total amount of wall time = 528.286675 +The maximum resident set size (KB) = 1077372 Test 106 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.380131 -The maximum resident set size (KB) = 336236 +The total amount of wall time = 301.417224 +The maximum resident set size (KB) = 299816 Test 107 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3879,14 +3879,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 240.489132 -The maximum resident set size (KB) = 951420 +The total amount of wall time = 239.927303 +The maximum resident set size (KB) = 953248 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 340.530892 -The maximum resident set size (KB) = 789020 +The total amount of wall time = 357.027278 +The maximum resident set size (KB) = 792188 Test 109 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3987,14 +3987,14 @@ Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.243512 -The maximum resident set size (KB) = 784360 +The total amount of wall time = 183.528301 +The maximum resident set size (KB) = 786336 Test 110 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_2threads_dyn32_phy32_intel Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4041,14 +4041,14 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 322.410136 -The maximum resident set size (KB) = 858700 +The total amount of wall time = 391.668346 +The maximum resident set size (KB) = 849284 Test 111 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_2threads_dyn32_phy32_intel Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4095,14 +4095,14 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 171.047149 -The maximum resident set size (KB) = 836388 +The total amount of wall time = 171.554671 +The maximum resident set size (KB) = 840600 Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_decomp_dyn32_phy32_intel Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.134466 -The maximum resident set size (KB) = 789392 +The total amount of wall time = 199.085296 +The maximum resident set size (KB) = 789844 Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_restart_dyn32_phy32_intel Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4195,28 +4195,28 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 253.378571 -The maximum resident set size (KB) = 647292 +The total amount of wall time = 319.984864 +The maximum resident set size (KB) = 647196 Test 114 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_restart_dyn32_phy32_intel Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.867948 -The maximum resident set size (KB) = 628948 +The total amount of wall time = 218.459435 +The maximum resident set size (KB) = 629812 Test 115 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_control_intel Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4232,40 +4232,40 @@ Checking test 116 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 144.073653 -The maximum resident set size (KB) = 1055708 +The total amount of wall time = 132.373246 +The maximum resident set size (KB) = 1053348 Test 116 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_2threads_intel Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 69.275194 -The maximum resident set size (KB) = 1058056 +The total amount of wall time = 365.750421 +The maximum resident set size (KB) = 1057680 Test 117 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_restart_mismatch_intel Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 98.643927 -The maximum resident set size (KB) = 949324 +The total amount of wall time = 123.908868 +The maximum resident set size (KB) = 950028 Test 118 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_control_dyn64_phy32_intel Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4312,42 +4312,42 @@ Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 233.532504 -The maximum resident set size (KB) = 813352 +The total amount of wall time = 291.221260 +The maximum resident set size (KB) = 812328 Test 119 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_control_debug_dyn32_phy32_intel Checking test 120 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.727203 -The maximum resident set size (KB) = 951844 +The total amount of wall time = 300.566109 +The maximum resident set size (KB) = 950972 Test 120 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hrrr_control_debug_dyn32_phy32_intel Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.534863 -The maximum resident set size (KB) = 951848 +The total amount of wall time = 293.787934 +The maximum resident set size (KB) = 951040 Test 121 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_debug_intel Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4361,14 +4361,14 @@ Checking test 122 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 909.057502 -The maximum resident set size (KB) = 1088928 +The total amount of wall time = 892.384389 +The maximum resident set size (KB) = 1083952 Test 122 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_debug_qr_intel Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4382,81 +4382,81 @@ Checking test 123 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 907.297786 -The maximum resident set size (KB) = 709676 +The total amount of wall time = 905.809565 +The maximum resident set size (KB) = 707000 Test 123 conus13km_debug_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_debug_2threads_intel Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 522.494578 -The maximum resident set size (KB) = 1085652 +The total amount of wall time = 660.719148 +The maximum resident set size (KB) = 1090460 Test 124 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/conus13km_radar_tten_debug_intel Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 896.314639 -The maximum resident set size (KB) = 1153808 +The total amount of wall time = 893.245688 +The maximum resident set size (KB) = 1153004 Test 125 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/rap_control_dyn64_phy32_debug_intel Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.605478 -The maximum resident set size (KB) = 972976 +The total amount of wall time = 304.672111 +The maximum resident set size (KB) = 977100 Test 126 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_atm_intel Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 357.642091 -The maximum resident set size (KB) = 608004 +The total amount of wall time = 486.751140 +The maximum resident set size (KB) = 616368 Test 127 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_atm_thompson_gfdlsf_intel Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 331.682299 -The maximum resident set size (KB) = 969972 +The total amount of wall time = 793.262815 +The maximum resident set size (KB) = 969132 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4465,14 +4465,14 @@ Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 438.915811 -The maximum resident set size (KB) = 665136 +The total amount of wall time = 565.874113 +The maximum resident set size (KB) = 664784 Test 129 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4481,14 +4481,14 @@ Checking test 130 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 762.688794 -The maximum resident set size (KB) = 694992 +The total amount of wall time = 824.555805 +The maximum resident set size (KB) = 691820 Test 130 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4499,14 +4499,14 @@ Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 965.694353 -The maximum resident set size (KB) = 717924 +The total amount of wall time = 1075.347588 +The maximum resident set size (KB) = 719384 Test 131 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4528,14 +4528,14 @@ Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 344.684735 -The maximum resident set size (KB) = 386256 +The total amount of wall time = 649.136325 +The maximum resident set size (KB) = 386092 Test 132 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_telescopic_2nests_atm_intel Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4544,14 +4544,14 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -The total amount of wall time = 446.340965 -The maximum resident set size (KB) = 415440 +The total amount of wall time = 630.379811 +The maximum resident set size (KB) = 408644 Test 133 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_global_1nest_atm_intel Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4598,14 +4598,14 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 178.002163 -The maximum resident set size (KB) = 294488 +The total amount of wall time = 389.005079 +The maximum resident set size (KB) = 283440 Test 134 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4687,14 +4687,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 532.915885 -The maximum resident set size (KB) = 412964 +The total amount of wall time = 705.620822 +The maximum resident set size (KB) = 385584 Test 135 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_specified_moving_1nest_atm_intel Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4703,14 +4703,14 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 247.430902 -The maximum resident set size (KB) = 420444 +The total amount of wall time = 427.564404 +The maximum resident set size (KB) = 423400 Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_storm_following_1nest_atm_intel Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4732,14 +4732,14 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 230.734566 -The maximum resident set size (KB) = 414104 +The total amount of wall time = 466.330435 +The maximum resident set size (KB) = 509428 Test 137 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4748,28 +4748,28 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 296.123658 -The maximum resident set size (KB) = 496140 +The total amount of wall time = 452.706636 +The maximum resident set size (KB) = 494984 Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_global_storm_following_1nest_atm_intel Checking test 139 hafs_global_storm_following_1nest_atm_intel 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 -The total amount of wall time = 97.434170 -The maximum resident set size (KB) = 325932 +The total amount of wall time = 387.165697 +The maximum resident set size (KB) = 318108 Test 139 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/gnv1_nested_intel Checking test 140 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4816,28 +4816,28 @@ Checking test 140 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 252.871017 -The maximum resident set size (KB) = 679328 +The total amount of wall time = 419.153671 +The maximum resident set size (KB) = 677928 Test 140 gnv1_nested_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc ............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 -The total amount of wall time = 845.979024 -The maximum resident set size (KB) = 504000 +The total amount of wall time = 866.419731 +The maximum resident set size (KB) = 500656 Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4848,14 +4848,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 539.694826 -The maximum resident set size (KB) = 546756 +The total amount of wall time = 597.496666 +The maximum resident set size (KB) = 546616 Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_docn_intel Checking test 143 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4863,14 +4863,14 @@ Checking test 143 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 404.630925 -The maximum resident set size (KB) = 648540 +The total amount of wall time = 554.056229 +The maximum resident set size (KB) = 643864 Test 143 hafs_regional_docn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_docn_oisst_intel Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4878,27 +4878,27 @@ Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 409.027830 -The maximum resident set size (KB) = 631016 +The total amount of wall time = 536.205646 +The maximum resident set size (KB) = 632512 Test 144 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/hafs_regional_datm_cdeps_intel Checking test 145 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 972.088949 -The maximum resident set size (KB) = 881308 +The total amount of wall time = 985.182799 +The maximum resident set size (KB) = 818268 Test 145 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/control_p8_atmlnd_sbs_intel Checking test 146 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4983,14 +4983,14 @@ Checking test 146 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 234.251030 -The maximum resident set size (KB) = 1562324 +The total amount of wall time = 283.592727 +The maximum resident set size (KB) = 1563608 Test 146 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/atmaero_control_p8_intel Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5034,14 +5034,14 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.718321 -The maximum resident set size (KB) = 2838452 +The total amount of wall time = 443.634542 +The maximum resident set size (KB) = 2835724 Test 147 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/atmaero_control_p8_rad_intel Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5085,14 +5085,14 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 280.314747 -The maximum resident set size (KB) = 2900968 +The total amount of wall time = 439.478994 +The maximum resident set size (KB) = 2900692 Test 148 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/atmaero_control_p8_rad_micro_intel Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5136,14 +5136,14 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 296.373713 -The maximum resident set size (KB) = 2913780 +The total amount of wall time = 457.450992 +The maximum resident set size (KB) = 2913752 Test 149 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_atmaq_intel Checking test 150 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5159,14 +5159,14 @@ Checking test 150 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 767.247628 -The maximum resident set size (KB) = 5022300 +The total amount of wall time = 721.246409 +The maximum resident set size (KB) = 5015608 Test 150 regional_atmaq_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_atmaq_debug_intel Checking test 151 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5180,14 +5180,14 @@ Checking test 151 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1370.208142 -The maximum resident set size (KB) = 4443664 +The total amount of wall time = 1377.600626 +The maximum resident set size (KB) = 4444104 Test 151 regional_atmaq_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237941/regional_atmaq_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_247488/regional_atmaq_faster_intel Checking test 152 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5203,12 +5203,12 @@ Checking test 152 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 959.690620 -The maximum resident set size (KB) = 4988208 +The total amount of wall time = 945.744421 +The maximum resident set size (KB) = 4996676 Test 152 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 30 22:31:37 UTC 2023 -Elapsed time: 01h:24m:27s. Have a nice day! +Sat Dec 2 01:26:19 UTC 2023 +Elapsed time: 01h:29m:12s. Have a nice day! From f2843167357c61ff3415145ebd2e9777c6be1ed6 Mon Sep 17 00:00:00 2001 From: Jong Kim Date: Mon, 4 Dec 2023 13:18:04 +0000 Subject: [PATCH 20/30] add hera RT log: passed --- tests/logs/RegressionTests_hera.log | 1594 +++++++++++++-------------- 1 file changed, 797 insertions(+), 797 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 31d4aec6e5..b5640d8aef 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,14 +1,14 @@ -Thu Nov 30 15:16:18 UTC 2023 +Fri Dec 1 20:55:08 UTC 2023 Start Regression test -Testing UFSWM Hash: 2da35b78e361e5e57a993cd4b7a2575942e8abd6 +Testing UFSWM Hash: a592791359b83c8998f4f516e4f8769efaf3e96b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-1406-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) @@ -16,61 +16,61 @@ Testing With Submodule Hashes: 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) Compile atm_debug_dyn32_intel elapsed time 246 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 177 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 190 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 186 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 279 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 554 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 532 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 548 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_debug_gnu elapsed time 205 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 195 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 299 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 551 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 197 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 561 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 543 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atmw_intel elapsed time 566 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 591 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmwm_intel elapsed time 565 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 526 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 118 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 204 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_intel elapsed time 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 584 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 datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 581 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafsw_debug_intel elapsed time 206 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 587 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 590 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 645 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 234 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 583 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 251 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 633 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 123 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 248 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 885 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 685 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile hafsw_faster_intel elapsed time 594 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 597 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 636 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 244 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 607 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 236 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 224 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 250 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 889 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 682 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_32bit_pdlib_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 918 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 240 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 971 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 662 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_32bit_pdlib_intel elapsed time 920 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 246 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 960 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 259 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 98 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.001890 - 0: The maximum resident set size (KB) = 3134700 + 0: The total amount of wall time = 305.812965 + 0: The maximum resident set size (KB) = 3150452 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 945.214150 - 0: The maximum resident set size (KB) = 1721720 + 0: The total amount of wall time = 941.498224 + 0: The maximum resident set size (KB) = 1696224 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -222,14 +222,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 624.385652 - 0: The maximum resident set size (KB) = 1124604 + 0: The total amount of wall time = 622.799700 + 0: The maximum resident set size (KB) = 1118528 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -282,14 +282,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.897938 - 0: The maximum resident set size (KB) = 1080956 + 0: The total amount of wall time = 445.807023 + 0: The maximum resident set size (KB) = 1101716 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,14 +353,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1059.926580 - 0: The maximum resident set size (KB) = 1632956 + 0: The total amount of wall time = 1066.523219 + 0: The maximum resident set size (KB) = 1631372 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -412,14 +412,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1173.740729 - 0: The maximum resident set size (KB) = 1675096 + 0: The total amount of wall time = 1155.635177 + 0: The maximum resident set size (KB) = 1673452 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.379922 - 0: The maximum resident set size (KB) = 3180972 + 0: The total amount of wall time = 334.902868 + 0: The maximum resident set size (KB) = 3189888 Test 007 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -544,14 +544,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 191.857363 - 0: The maximum resident set size (KB) = 3246116 + 0: The total amount of wall time = 190.530264 + 0: The maximum resident set size (KB) = 3253088 Test 008 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.632243 - 0: The maximum resident set size (KB) = 3155256 + 0: The total amount of wall time = 333.203873 + 0: The maximum resident set size (KB) = 3178572 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.711228 - 0: The maximum resident set size (KB) = 3102176 + 0: The total amount of wall time = 192.701284 + 0: The maximum resident set size (KB) = 3095112 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -736,14 +736,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.852608 - 0: The maximum resident set size (KB) = 3533292 + 0: The total amount of wall time = 315.904110 + 0: The maximum resident set size (KB) = 3483644 Test 011 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.442331 - 0: The maximum resident set size (KB) = 3179676 + 0: The total amount of wall time = 330.617698 + 0: The maximum resident set size (KB) = 3185056 Test 012 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -856,14 +856,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.333509 - 0: The maximum resident set size (KB) = 3046052 + 0: The total amount of wall time = 268.313173 + 0: The maximum resident set size (KB) = 3040128 Test 013 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.802882 - 0: The maximum resident set size (KB) = 3177028 + 0: The total amount of wall time = 332.935942 + 0: The maximum resident set size (KB) = 3194268 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -988,14 +988,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 569.831900 - 0: The maximum resident set size (KB) = 3329300 + 0: The total amount of wall time = 570.986017 + 0: The maximum resident set size (KB) = 3316900 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1048,14 +1048,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 361.243257 - 0: The maximum resident set size (KB) = 3610332 + 0: The total amount of wall time = 362.968929 + 0: The maximum resident set size (KB) = 3615164 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1103,14 +1103,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 609.885317 - 0: The maximum resident set size (KB) = 4096784 + 0: The total amount of wall time = 630.007900 + 0: The maximum resident set size (KB) = 4092836 Test 017 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1158,14 +1158,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 468.287522 - 0: The maximum resident set size (KB) = 4354404 + 0: The total amount of wall time = 452.477389 + 0: The maximum resident set size (KB) = 4361468 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1229,14 +1229,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.636810 - 0: The maximum resident set size (KB) = 1724456 + 0: The total amount of wall time = 264.214425 + 0: The maximum resident set size (KB) = 1713880 Test 019 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 251.579520 - 0: The maximum resident set size (KB) = 1771784 + 0: The total amount of wall time = 251.768381 + 0: The maximum resident set size (KB) = 1771660 Test 020 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_debug_p8_intel Checking test 021 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1358,14 +1358,14 @@ Checking test 021 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 481.983828 - 0: The maximum resident set size (KB) = 3204848 + 0: The total amount of wall time = 486.597901 + 0: The maximum resident set size (KB) = 3189332 Test 021 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_debug_noaero_p8_intel Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.854581 - 0: The maximum resident set size (KB) = 1740484 + 0: The total amount of wall time = 331.167016 + 0: The maximum resident set size (KB) = 1735740 Test 022 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_noaero_p8_agrid_intel Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1486,14 +1486,14 @@ Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 250.453370 - 0: The maximum resident set size (KB) = 1757292 + 0: The total amount of wall time = 253.135555 + 0: The maximum resident set size (KB) = 1725708 Test 023 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_c48_intel Checking test 024 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1543,14 +1543,14 @@ Checking test 024 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 562.728043 - 0: The maximum resident set size (KB) = 2824492 + 0: The total amount of wall time = 558.734140 + 0: The maximum resident set size (KB) = 2819436 Test 024 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_p8_faster_intel Checking test 025 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 025 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.316206 - 0: The maximum resident set size (KB) = 3187976 + 0: The total amount of wall time = 318.972011 + 0: The maximum resident set size (KB) = 3180536 Test 025 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_pdlib_p8_intel Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1686,14 +1686,14 @@ Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 955.632533 - 0: The maximum resident set size (KB) = 1761440 + 0: The total amount of wall time = 959.975703 + 0: The maximum resident set size (KB) = 1757692 Test 026 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_restart_pdlib_p8_intel Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.127335 - 0: The maximum resident set size (KB) = 1137236 + 0: The total amount of wall time = 446.994207 + 0: The maximum resident set size (KB) = 1117788 Test 027 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_mpi_pdlib_p8_intel Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1816,14 +1816,14 @@ Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1115.234840 - 0: The maximum resident set size (KB) = 1662224 + 0: The total amount of wall time = 1105.620481 + 0: The maximum resident set size (KB) = 1661780 Test 028 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_debug_pdlib_p8_intel Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1875,14 +1875,14 @@ Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1463.002738 - 0: The maximum resident set size (KB) = 1701812 + 0: The total amount of wall time = 1465.039148 + 0: The maximum resident set size (KB) = 1704600 Test 029 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_flake_intel Checking test 030 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 030 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.468390 - 0: The maximum resident set size (KB) = 698448 + 0: The total amount of wall time = 187.452858 + 0: The maximum resident set size (KB) = 692832 Test 030 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_CubedSphereGrid_intel Checking test 031 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1927,14 +1927,14 @@ Checking test 031 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.477381 - 0: The maximum resident set size (KB) = 645316 + 0: The total amount of wall time = 133.813675 + 0: The maximum resident set size (KB) = 618220 Test 031 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_CubedSphereGrid_parallel_intel Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1942,21 +1942,21 @@ Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.332604 - 0: The maximum resident set size (KB) = 651868 + 0: The total amount of wall time = 139.978221 + 0: The maximum resident set size (KB) = 652872 Test 032 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_latlon_intel Checking test 033 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 033 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.245744 - 0: The maximum resident set size (KB) = 648864 + 0: The total amount of wall time = 134.872493 + 0: The maximum resident set size (KB) = 640912 Test 033 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_wrtGauss_netcdf_parallel_intel Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1985,14 +1985,14 @@ Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.875740 - 0: The maximum resident set size (KB) = 645024 + 0: The total amount of wall time = 137.978501 + 0: The maximum resident set size (KB) = 647420 Test 034 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_c48_intel Checking test 035 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2031,14 +2031,14 @@ Checking test 035 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 367.962707 -0: The maximum resident set size (KB) = 871772 +0: The total amount of wall time = 371.535612 +0: The maximum resident set size (KB) = 871140 Test 035 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_c192_intel Checking test 036 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 036 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 533.545620 - 0: The maximum resident set size (KB) = 847444 + 0: The total amount of wall time = 525.563659 + 0: The maximum resident set size (KB) = 850696 Test 036 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_c384_intel Checking test 037 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 037 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.689208 - 0: The maximum resident set size (KB) = 1275044 + 0: The total amount of wall time = 530.429729 + 0: The maximum resident set size (KB) = 1274972 Test 037 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_c384gdas_intel Checking test 038 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2087,15 +2087,15 @@ Checking test 038 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2108,23 +2108,23 @@ Checking test 038 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.421223 - 0: The maximum resident set size (KB) = 1399624 + 0: The total amount of wall time = 468.163058 + 0: The maximum resident set size (KB) = 1381248 Test 038 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_stochy_intel Checking test 039 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2135,28 +2135,28 @@ Checking test 039 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.405448 - 0: The maximum resident set size (KB) = 661484 + 0: The total amount of wall time = 87.665764 + 0: The maximum resident set size (KB) = 648300 Test 039 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_stochy_restart_intel Checking test 040 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.874164 - 0: The maximum resident set size (KB) = 466364 + 0: The total amount of wall time = 49.274429 + 0: The maximum resident set size (KB) = 443244 Test 040 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_lndp_intel Checking test 041 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2167,14 +2167,14 @@ Checking test 041 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.360687 - 0: The maximum resident set size (KB) = 644340 + 0: The total amount of wall time = 83.181380 + 0: The maximum resident set size (KB) = 649756 Test 041 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_iovr4_intel Checking test 042 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 042 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.926929 - 0: The maximum resident set size (KB) = 653548 + 0: The total amount of wall time = 135.033298 + 0: The maximum resident set size (KB) = 649700 Test 042 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_iovr5_intel Checking test 043 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2211,14 +2211,14 @@ Checking test 043 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.876422 - 0: The maximum resident set size (KB) = 645476 + 0: The total amount of wall time = 135.758460 + 0: The maximum resident set size (KB) = 649420 Test 043 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_intel Checking test 044 control_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2265,14 +2265,14 @@ Checking test 044 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.957163 - 0: The maximum resident set size (KB) = 1616764 + 0: The total amount of wall time = 169.245698 + 0: The maximum resident set size (KB) = 1595816 Test 044 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2319,14 +2319,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.235847 - 0: The maximum resident set size (KB) = 1617260 + 0: The total amount of wall time = 162.341717 + 0: The maximum resident set size (KB) = 1603768 Test 045 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2365,14 +2365,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 86.856460 - 0: The maximum resident set size (KB) = 875572 + 0: The total amount of wall time = 87.010946 + 0: The maximum resident set size (KB) = 873124 Test 046 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2419,14 +2419,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.612701 - 0: The maximum resident set size (KB) = 1605252 + 0: The total amount of wall time = 162.974997 + 0: The maximum resident set size (KB) = 1600160 Test 047 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_restart_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2465,14 +2465,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.147934 - 0: The maximum resident set size (KB) = 916084 + 0: The total amount of wall time = 86.360430 + 0: The maximum resident set size (KB) = 897048 Test 048 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2515,14 +2515,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.652389 - 0: The maximum resident set size (KB) = 1600184 + 0: The total amount of wall time = 169.328286 + 0: The maximum resident set size (KB) = 1614500 Test 049 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2565,14 +2565,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.866990 - 0: The maximum resident set size (KB) = 1704548 + 0: The total amount of wall time = 154.692393 + 0: The maximum resident set size (KB) = 1702912 Test 050 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 299.015501 - 0: The maximum resident set size (KB) = 1615000 + 0: The total amount of wall time = 300.713559 + 0: The maximum resident set size (KB) = 1613720 Test 051 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2645,14 +2645,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.772224 - 0: The maximum resident set size (KB) = 1647612 + 0: The total amount of wall time = 224.590083 + 0: The maximum resident set size (KB) = 1672560 Test 052 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2699,14 +2699,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.225398 - 0: The maximum resident set size (KB) = 1618524 + 0: The total amount of wall time = 168.402701 + 0: The maximum resident set size (KB) = 1627268 Test 053 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2753,14 +2753,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.043118 - 0: The maximum resident set size (KB) = 1621668 + 0: The total amount of wall time = 196.267211 + 0: The maximum resident set size (KB) = 1634456 Test 054 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2771,28 +2771,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.621554 - 0: The maximum resident set size (KB) = 846300 + 0: The total amount of wall time = 296.786612 + 0: The maximum resident set size (KB) = 845004 Test 055 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.332628 - 0: The maximum resident set size (KB) = 845220 + 0: The total amount of wall time = 151.953858 + 0: The maximum resident set size (KB) = 852392 Test 056 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2803,14 +2803,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.509038 - 0: The maximum resident set size (KB) = 842052 + 0: The total amount of wall time = 315.236869 + 0: The maximum resident set size (KB) = 845084 Test 057 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2821,14 +2821,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 180.960483 - 0: The maximum resident set size (KB) = 843704 + 0: The total amount of wall time = 186.060542 + 0: The maximum resident set size (KB) = 818100 Test 058 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2836,28 +2836,28 @@ Checking test 059 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 293.276255 - 0: The maximum resident set size (KB) = 1334244 + 0: The total amount of wall time = 296.501610 + 0: The maximum resident set size (KB) = 1361704 Test 059 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.207595 - 0: The maximum resident set size (KB) = 850280 + 0: The total amount of wall time = 296.492861 + 0: The maximum resident set size (KB) = 850384 Test 060 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.990315 - 0: The maximum resident set size (KB) = 851220 + 0: The total amount of wall time = 298.530932 + 0: The maximum resident set size (KB) = 847224 Test 061 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 386.718715 - 0: The maximum resident set size (KB) = 1918184 + 0: The total amount of wall time = 388.196205 + 0: The maximum resident set size (KB) = 1910172 Test 062 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.065382 - 0: The maximum resident set size (KB) = 1106888 + 0: The total amount of wall time = 453.717854 + 0: The maximum resident set size (KB) = 1106908 Test 063 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2958,14 +2958,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.086500 - 0: The maximum resident set size (KB) = 1287232 + 0: The total amount of wall time = 233.629306 + 0: The maximum resident set size (KB) = 1282800 Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3012,14 +3012,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.044528 - 0: The maximum resident set size (KB) = 1022124 + 0: The total amount of wall time = 477.491721 + 0: The maximum resident set size (KB) = 983848 Test 065 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3066,14 +3066,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.402455 - 0: The maximum resident set size (KB) = 1181816 + 0: The total amount of wall time = 427.032683 + 0: The maximum resident set size (KB) = 1143956 Test 066 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3112,14 +3112,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.192758 - 0: The maximum resident set size (KB) = 983784 + 0: The total amount of wall time = 233.774780 + 0: The maximum resident set size (KB) = 985532 Test 067 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3166,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.003111 - 0: The maximum resident set size (KB) = 1092168 + 0: The total amount of wall time = 449.885716 + 0: The maximum resident set size (KB) = 1096176 Test 068 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3220,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.931332 - 0: The maximum resident set size (KB) = 1020508 + 0: The total amount of wall time = 473.337250 + 0: The maximum resident set size (KB) = 1025336 Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3266,14 +3266,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.865978 - 0: The maximum resident set size (KB) = 1029856 + 0: The total amount of wall time = 338.693146 + 0: The maximum resident set size (KB) = 989684 Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.681314 - 0: The maximum resident set size (KB) = 1022576 + 0: The total amount of wall time = 228.566941 + 0: The maximum resident set size (KB) = 1035396 Test 071 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.020617 - 0: The maximum resident set size (KB) = 1020460 + 0: The total amount of wall time = 235.056925 + 0: The maximum resident set size (KB) = 986332 Test 072 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3428,28 +3428,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.476751 - 0: The maximum resident set size (KB) = 1102884 + 0: The total amount of wall time = 208.602985 + 0: The maximum resident set size (KB) = 1113716 Test 073 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.624255 - 0: The maximum resident set size (KB) = 919392 + 0: The total amount of wall time = 122.561379 + 0: The maximum resident set size (KB) = 891796 Test 074 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3496,14 +3496,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.987482 - 0: The maximum resident set size (KB) = 1097480 + 0: The total amount of wall time = 443.093585 + 0: The maximum resident set size (KB) = 1092400 Test 075 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3518,14 +3518,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.328682 - 0: The maximum resident set size (KB) = 1974696 + 0: The total amount of wall time = 535.557478 + 0: The maximum resident set size (KB) = 1989072 Test 076 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3540,14 +3540,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.573538 - 0: The maximum resident set size (KB) = 2041660 + 0: The total amount of wall time = 521.783179 + 0: The maximum resident set size (KB) = 2050088 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.089782 - 0: The maximum resident set size (KB) = 744660 + 0: The total amount of wall time = 339.596090 + 0: The maximum resident set size (KB) = 739660 Test 078 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3576,14 +3576,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.045644 - 0: The maximum resident set size (KB) = 743144 + 0: The total amount of wall time = 338.160445 + 0: The maximum resident set size (KB) = 712416 Test 079 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3594,26 +3594,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.390755 - 0: The maximum resident set size (KB) = 730536 + 0: The total amount of wall time = 186.081254 + 0: The maximum resident set size (KB) = 725752 Test 080 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.452055 - 0: The maximum resident set size (KB) = 656676 + 0: The total amount of wall time = 113.123204 + 0: The maximum resident set size (KB) = 659536 Test 081 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3660,14 +3660,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.222681 - 0: The maximum resident set size (KB) = 1615992 + 0: The total amount of wall time = 148.797575 + 0: The maximum resident set size (KB) = 1600116 Test 082 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3678,14 +3678,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.568997 - 0: The maximum resident set size (KB) = 847496 + 0: The total amount of wall time = 269.168168 + 0: The maximum resident set size (KB) = 837964 Test 083 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3712,364 +3712,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.841093 - 0: The maximum resident set size (KB) = 806532 + 0: The total amount of wall time = 147.280433 + 0: The maximum resident set size (KB) = 795724 Test 084 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.719487 - 0: The maximum resident set size (KB) = 810144 + 0: The total amount of wall time = 148.531163 + 0: The maximum resident set size (KB) = 805420 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.190107 - 0: The maximum resident set size (KB) = 807592 + 0: The total amount of wall time = 166.796082 + 0: The maximum resident set size (KB) = 807148 Test 086 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.815870 - 0: The maximum resident set size (KB) = 813240 + 0: The total amount of wall time = 149.311233 + 0: The maximum resident set size (KB) = 782312 Test 087 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.148279 - 0: The maximum resident set size (KB) = 858048 + 0: The total amount of wall time = 229.561977 + 0: The maximum resident set size (KB) = 858380 Test 088 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.997512 - 0: The maximum resident set size (KB) = 855584 + 0: The total amount of wall time = 225.283136 + 0: The maximum resident set size (KB) = 855628 Test 089 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.207612 - 0: The maximum resident set size (KB) = 819424 + 0: The total amount of wall time = 149.437876 + 0: The maximum resident set size (KB) = 816604 Test 090 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.715303 - 0: The maximum resident set size (KB) = 863568 + 0: The total amount of wall time = 152.495084 + 0: The maximum resident set size (KB) = 863772 Test 091 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 156.230177 - 0: The maximum resident set size (KB) = 1623004 + 0: The total amount of wall time = 157.692425 + 0: The maximum resident set size (KB) = 1630428 Test 092 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_debug_intel Checking test 093 regional_debug_intel 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 - 0: The total amount of wall time = 983.606395 - 0: The maximum resident set size (KB) = 840884 + 0: The total amount of wall time = 998.569284 + 0: The maximum resident set size (KB) = 808656 Test 093 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.356083 - 0: The maximum resident set size (KB) = 1198016 + 0: The total amount of wall time = 268.029752 + 0: The maximum resident set size (KB) = 1200848 Test 094 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.025343 - 0: The maximum resident set size (KB) = 1189660 + 0: The total amount of wall time = 264.327736 + 0: The maximum resident set size (KB) = 1196384 Test 095 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel 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.342497 - 0: The maximum resident set size (KB) = 1194932 + 0: The total amount of wall time = 275.151810 + 0: The maximum resident set size (KB) = 1190992 Test 096 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel 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.258216 - 0: The maximum resident set size (KB) = 1196576 + 0: The total amount of wall time = 272.199998 + 0: The maximum resident set size (KB) = 1161824 Test 097 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.459559 - 0: The maximum resident set size (KB) = 1196996 + 0: The total amount of wall time = 271.075274 + 0: The maximum resident set size (KB) = 1190268 Test 098 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.055829 - 0: The maximum resident set size (KB) = 1250712 + 0: The total amount of wall time = 285.520310 + 0: The maximum resident set size (KB) = 1284564 Test 099 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.802249 - 0: The maximum resident set size (KB) = 1193532 + 0: The total amount of wall time = 278.009574 + 0: The maximum resident set size (KB) = 1191956 Test 100 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.513680 - 0: The maximum resident set size (KB) = 1195272 + 0: The total amount of wall time = 277.522286 + 0: The maximum resident set size (KB) = 1201604 Test 101 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.484750 - 0: The maximum resident set size (KB) = 1161888 + 0: The total amount of wall time = 277.859345 + 0: The maximum resident set size (KB) = 1195852 Test 102 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.796003 - 0: The maximum resident set size (KB) = 1192712 + 0: The total amount of wall time = 273.582590 + 0: The maximum resident set size (KB) = 1186316 Test 103 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.170731 - 0: The maximum resident set size (KB) = 1194732 + 0: The total amount of wall time = 269.722830 + 0: The maximum resident set size (KB) = 1197156 Test 104 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.371293 - 0: The maximum resident set size (KB) = 1196848 + 0: The total amount of wall time = 269.560533 + 0: The maximum resident set size (KB) = 1204080 Test 105 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 443.168743 - 0: The maximum resident set size (KB) = 1190024 + 0: The total amount of wall time = 447.636927 + 0: The maximum resident set size (KB) = 1192896 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.507589 - 0: The maximum resident set size (KB) = 1195340 + 0: The total amount of wall time = 265.028885 + 0: The maximum resident set size (KB) = 1196020 Test 107 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 331.973262 - 0: The maximum resident set size (KB) = 1191536 + 0: The total amount of wall time = 334.185072 + 0: The maximum resident set size (KB) = 1201280 Test 108 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.482288 - 0: The maximum resident set size (KB) = 1199880 + 0: The total amount of wall time = 274.059852 + 0: The maximum resident set size (KB) = 1180820 Test 109 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4110,26 +4110,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.210507 - 0: The maximum resident set size (KB) = 1203220 + 0: The total amount of wall time = 466.910215 + 0: The maximum resident set size (KB) = 1202360 Test 110 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_wam_debug_intel Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.737571 - 0: The maximum resident set size (KB) = 498752 + 0: The total amount of wall time = 275.758297 + 0: The maximum resident set size (KB) = 507340 Test 111 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4140,14 +4140,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 221.137096 - 0: The maximum resident set size (KB) = 1149400 + 0: The total amount of wall time = 221.197025 + 0: The maximum resident set size (KB) = 1117432 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4194,14 +4194,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.464931 - 0: The maximum resident set size (KB) = 1041264 + 0: The total amount of wall time = 371.580748 + 0: The maximum resident set size (KB) = 1051160 Test 113 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4248,14 +4248,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.586112 - 0: The maximum resident set size (KB) = 976204 + 0: The total amount of wall time = 191.798424 + 0: The maximum resident set size (KB) = 982396 Test 114 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4302,14 +4302,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.287807 - 0: The maximum resident set size (KB) = 1088136 + 0: The total amount of wall time = 349.358983 + 0: The maximum resident set size (KB) = 1079032 Test 115 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4356,14 +4356,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.852196 - 0: The maximum resident set size (KB) = 959320 + 0: The total amount of wall time = 176.319781 + 0: The maximum resident set size (KB) = 955976 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4410,14 +4410,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.870764 - 0: The maximum resident set size (KB) = 895936 + 0: The total amount of wall time = 200.753984 + 0: The maximum resident set size (KB) = 913792 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4456,28 +4456,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.425947 - 0: The maximum resident set size (KB) = 976632 + 0: The total amount of wall time = 280.675047 + 0: The maximum resident set size (KB) = 977652 Test 118 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.485131 - 0: The maximum resident set size (KB) = 882416 + 0: The total amount of wall time = 101.575068 + 0: The maximum resident set size (KB) = 880972 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4493,40 +4493,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.132346 - 0: The maximum resident set size (KB) = 1244580 + 0: The total amount of wall time = 114.211952 + 0: The maximum resident set size (KB) = 1248564 Test 120 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 43.906437 - 0: The maximum resident set size (KB) = 1160272 + 0: The total amount of wall time = 49.318077 + 0: The maximum resident set size (KB) = 1135912 Test 121 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.511392 - 0: The maximum resident set size (KB) = 1178912 + 0: The total amount of wall time = 67.358499 + 0: The maximum resident set size (KB) = 1179328 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4573,42 +4573,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.110151 - 0: The maximum resident set size (KB) = 952100 + 0: The total amount of wall time = 245.077587 + 0: The maximum resident set size (KB) = 953752 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.903689 - 0: The maximum resident set size (KB) = 1074020 + 0: The total amount of wall time = 269.188868 + 0: The maximum resident set size (KB) = 1074676 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.612891 - 0: The maximum resident set size (KB) = 1072252 + 0: The total amount of wall time = 264.997505 + 0: The maximum resident set size (KB) = 1068904 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4622,14 +4622,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 826.076117 - 0: The maximum resident set size (KB) = 1267804 + 0: The total amount of wall time = 827.363023 + 0: The maximum resident set size (KB) = 1270772 Test 126 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_debug_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4643,81 +4643,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 838.770216 - 0: The maximum resident set size (KB) = 925396 + 0: The total amount of wall time = 808.478446 + 0: The maximum resident set size (KB) = 916264 Test 127 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.017894 - 0: The maximum resident set size (KB) = 1200464 + 0: The total amount of wall time = 460.704487 + 0: The maximum resident set size (KB) = 1198760 Test 128 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 828.203292 - 0: The maximum resident set size (KB) = 1343076 + 0: The total amount of wall time = 822.603450 + 0: The maximum resident set size (KB) = 1342292 Test 129 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.498320 - 0: The maximum resident set size (KB) = 1116936 + 0: The total amount of wall time = 285.112041 + 0: The maximum resident set size (KB) = 1121004 Test 130 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 278.092558 - 0: The maximum resident set size (KB) = 739832 + 0: The total amount of wall time = 275.509239 + 0: The maximum resident set size (KB) = 735208 Test 131 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 349.245906 - 0: The maximum resident set size (KB) = 1088484 + 0: The total amount of wall time = 337.780609 + 0: The maximum resident set size (KB) = 1109148 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4726,14 +4726,14 @@ Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 394.769246 - 0: The maximum resident set size (KB) = 821844 + 0: The total amount of wall time = 401.728483 + 0: The maximum resident set size (KB) = 824876 Test 133 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4742,14 +4742,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 766.357058 - 0: The maximum resident set size (KB) = 865768 + 0: The total amount of wall time = 761.900067 + 0: The maximum resident set size (KB) = 854188 Test 134 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4760,14 +4760,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 863.398776 - 0: The maximum resident set size (KB) = 883212 + 0: The total amount of wall time = 856.171347 + 0: The maximum resident set size (KB) = 877976 Test 135 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4789,14 +4789,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 308.539344 - 0: The maximum resident set size (KB) = 497024 + 0: The total amount of wall time = 308.678453 + 0: The maximum resident set size (KB) = 501256 Test 136 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4805,14 +4805,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 381.359763 - 0: The maximum resident set size (KB) = 514788 + 0: The total amount of wall time = 377.596040 + 0: The maximum resident set size (KB) = 512776 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4822,10 +4822,10 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK @@ -4833,8 +4833,8 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4847,7 +4847,7 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK @@ -4859,14 +4859,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 148.212871 - 0: The maximum resident set size (KB) = 375948 + 0: The total amount of wall time = 147.216508 + 0: The maximum resident set size (KB) = 378692 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4896,18 +4896,18 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK @@ -4929,7 +4929,7 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK @@ -4948,14 +4948,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 407.626590 - 0: The maximum resident set size (KB) = 481272 + 0: The total amount of wall time = 426.078697 + 0: The maximum resident set size (KB) = 479968 Test 139 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4964,14 +4964,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 208.121747 - 0: The maximum resident set size (KB) = 527464 + 0: The total amount of wall time = 209.962020 + 0: The maximum resident set size (KB) = 536076 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4981,26 +4981,26 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 194.687866 - 0: The maximum resident set size (KB) = 534104 + 0: The total amount of wall time = 204.007958 + 0: The maximum resident set size (KB) = 533184 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5009,28 +5009,28 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 234.397470 - 0: The maximum resident set size (KB) = 585860 + 0: The total amount of wall time = 236.848563 + 0: The maximum resident set size (KB) = 588720 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 - 0: The total amount of wall time = 61.610581 - 0: The maximum resident set size (KB) = 401672 + 0: The total amount of wall time = 63.045643 + 0: The maximum resident set size (KB) = 405720 Test 143 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/gnv1_nested_intel Checking test 144 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5041,14 +5041,14 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK @@ -5062,14 +5062,14 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK @@ -5077,28 +5077,28 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 227.959229 - 0: The maximum resident set size (KB) = 800580 + 0: The total amount of wall time = 230.232884 + 0: The maximum resident set size (KB) = 798468 Test 144 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc ............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 - 0: The total amount of wall time = 725.879296 - 0: The maximum resident set size (KB) = 562992 + 0: The total amount of wall time = 743.880667 + 0: The maximum resident set size (KB) = 567140 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5109,14 +5109,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 497.147446 - 0: The maximum resident set size (KB) = 670988 + 0: The total amount of wall time = 490.098432 + 0: The maximum resident set size (KB) = 669728 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5124,14 +5124,14 @@ Checking test 147 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 365.994185 - 0: The maximum resident set size (KB) = 820160 + 0: The total amount of wall time = 365.646814 + 0: The maximum resident set size (KB) = 818192 Test 147 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5139,131 +5139,131 @@ Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 371.969378 - 0: The maximum resident set size (KB) = 778304 + 0: The total amount of wall time = 371.906844 + 0: The maximum resident set size (KB) = 801492 Test 148 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hafs_regional_datm_cdeps_intel Checking test 149 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 960.837431 - 0: The maximum resident set size (KB) = 1125024 + 0: The total amount of wall time = 970.633866 + 0: The maximum resident set size (KB) = 1149236 Test 149 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_control_cfsr_intel Checking test 150 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.986699 - 0: The maximum resident set size (KB) = 1115540 + 0: The total amount of wall time = 155.005457 + 0: The maximum resident set size (KB) = 1127772 Test 150 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_restart_cfsr_intel Checking test 151 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.139244 - 0: The maximum resident set size (KB) = 1058664 + 0: The total amount of wall time = 91.485492 + 0: The maximum resident set size (KB) = 1065392 Test 151 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_control_gefs_intel Checking test 152 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.142877 - 0: The maximum resident set size (KB) = 995336 + 0: The total amount of wall time = 146.067931 + 0: The maximum resident set size (KB) = 1000752 Test 152 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_iau_gefs_intel Checking test 153 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.094748 - 0: The maximum resident set size (KB) = 1009996 + 0: The total amount of wall time = 151.269924 + 0: The maximum resident set size (KB) = 991208 Test 153 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_stochy_gefs_intel Checking test 154 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.071750 - 0: The maximum resident set size (KB) = 999856 + 0: The total amount of wall time = 149.561117 + 0: The maximum resident set size (KB) = 1001020 Test 154 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_ciceC_cfsr_intel Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.194611 - 0: The maximum resident set size (KB) = 1112492 + 0: The total amount of wall time = 150.945104 + 0: The maximum resident set size (KB) = 1125576 Test 155 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_bulk_cfsr_intel Checking test 156 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 180.771116 - 0: The maximum resident set size (KB) = 1111520 + 0: The total amount of wall time = 154.564598 + 0: The maximum resident set size (KB) = 1098568 Test 156 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_bulk_gefs_intel Checking test 157 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.689658 - 0: The maximum resident set size (KB) = 995032 + 0: The total amount of wall time = 145.817340 + 0: The maximum resident set size (KB) = 997232 Test 157 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_mx025_cfsr_intel Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5272,14 +5272,14 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 463.203558 - 0: The maximum resident set size (KB) = 1028600 + 0: The total amount of wall time = 514.483574 + 0: The maximum resident set size (KB) = 1041988 Test 158 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_mx025_gefs_intel Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5288,77 +5288,77 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 425.884943 - 0: The maximum resident set size (KB) = 1017864 + 0: The total amount of wall time = 400.062407 + 0: The maximum resident set size (KB) = 1013484 Test 159 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_multiple_files_cfsr_intel Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 185.297435 - 0: The maximum resident set size (KB) = 1090204 + 0: The total amount of wall time = 152.123736 + 0: The maximum resident set size (KB) = 1118028 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_3072x1536_cfsr_intel Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 240.189406 - 0: The maximum resident set size (KB) = 2457288 + 0: The total amount of wall time = 234.399325 + 0: The maximum resident set size (KB) = 2405176 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_gfs_intel Checking test 162 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 217.659757 - 0: The maximum resident set size (KB) = 2402468 + 0: The total amount of wall time = 224.514406 + 0: The maximum resident set size (KB) = 2392112 Test 162 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_debug_cfsr_intel Checking test 163 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 347.394815 - 0: The maximum resident set size (KB) = 1049700 + 0: The total amount of wall time = 345.835493 + 0: The maximum resident set size (KB) = 1046928 Test 163 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.065070 - 0: The maximum resident set size (KB) = 1111260 + 0: The total amount of wall time = 150.424158 + 0: The maximum resident set size (KB) = 1111932 Test 164 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5367,14 +5367,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.778302 - 0: The maximum resident set size (KB) = 253936 + 0: The total amount of wall time = 6.607849 + 0: The maximum resident set size (KB) = 256384 Test 165 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_lnd_gswp3_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_lnd_gswp3_rst_intel Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5383,14 +5383,14 @@ Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.976838 - 0: The maximum resident set size (KB) = 252908 + 0: The total amount of wall time = 10.219574 + 0: The maximum resident set size (KB) = 251920 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5475,14 +5475,14 @@ Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 201.201782 - 0: The maximum resident set size (KB) = 1626800 + 0: The total amount of wall time = 194.343648 + 0: The maximum resident set size (KB) = 1620708 Test 167 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5525,14 +5525,14 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.873914 - 0: The maximum resident set size (KB) = 1656384 + 0: The total amount of wall time = 92.833858 + 0: The maximum resident set size (KB) = 1633324 Test 168 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5576,14 +5576,14 @@ Checking test 169 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 92.872698 - 0: The maximum resident set size (KB) = 675668 + 0: The total amount of wall time = 88.903461 + 0: The maximum resident set size (KB) = 674876 Test 169 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5627,14 +5627,14 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.165455 - 0: The maximum resident set size (KB) = 3010488 + 0: The total amount of wall time = 223.841473 + 0: The maximum resident set size (KB) = 2996576 Test 170 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5678,14 +5678,14 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.937080 - 0: The maximum resident set size (KB) = 3074448 + 0: The total amount of wall time = 276.799312 + 0: The maximum resident set size (KB) = 3067288 Test 171 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5729,14 +5729,14 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.342236 - 0: The maximum resident set size (KB) = 3081392 + 0: The total amount of wall time = 290.825846 + 0: The maximum resident set size (KB) = 3066080 Test 172 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5747,19 +5747,19 @@ Checking test 173 regional_atmaq_intel results .... 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 676.908839 - 0: The maximum resident set size (KB) = 5087864 + 0: The total amount of wall time = 661.393233 + 0: The maximum resident set size (KB) = 5111376 Test 173 regional_atmaq_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_atmaq_debug_intel Checking test 174 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5767,20 +5767,20 @@ Checking test 174 regional_atmaq_debug_intel results .... Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1221.246855 - 0: The maximum resident set size (KB) = 4451484 + 0: The total amount of wall time = 1209.082170 + 0: The maximum resident set size (KB) = 4442800 Test 174 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_atmaq_faster_intel Checking test 175 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5794,16 +5794,16 @@ Checking test 175 regional_atmaq_faster_intel results .... 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 ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 808.489219 - 0: The maximum resident set size (KB) = 4988212 + 0: The total amount of wall time = 789.017571 + 0: The maximum resident set size (KB) = 5100776 Test 175 regional_atmaq_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_c48_gnu Checking test 176 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5842,14 +5842,14 @@ Checking test 176 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.566090 -0: The maximum resident set size (KB) = 789564 +0: The total amount of wall time = 691.634692 +0: The maximum resident set size (KB) = 789064 Test 176 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_stochy_gnu Checking test 177 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5860,14 +5860,14 @@ Checking test 177 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 225.210499 - 0: The maximum resident set size (KB) = 547588 + 0: The total amount of wall time = 225.211177 + 0: The maximum resident set size (KB) = 518536 Test 177 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_ras_gnu Checking test 178 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5878,14 +5878,14 @@ Checking test 178 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.196123 - 0: The maximum resident set size (KB) = 522728 + 0: The total amount of wall time = 285.597119 + 0: The maximum resident set size (KB) = 524568 Test 178 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_gnu Checking test 179 control_p8_gnu results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -5932,14 +5932,14 @@ Checking test 179 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.354850 - 0: The maximum resident set size (KB) = 1312860 + 0: The total amount of wall time = 283.359361 + 0: The maximum resident set size (KB) = 1305976 Test 179 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_p8_ugwpv1_gnu Checking test 180 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5986,14 +5986,14 @@ Checking test 180 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.108617 - 0: The maximum resident set size (KB) = 1307384 + 0: The total amount of wall time = 271.225838 + 0: The maximum resident set size (KB) = 1311080 Test 180 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_flake_gnu Checking test 181 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6004,14 +6004,14 @@ Checking test 181 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 352.183713 - 0: The maximum resident set size (KB) = 595948 + 0: The total amount of wall time = 341.810007 + 0: The maximum resident set size (KB) = 563528 Test 181 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_gnu Checking test 182 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6058,14 +6058,14 @@ Checking test 182 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.166525 - 0: The maximum resident set size (KB) = 858628 + 0: The total amount of wall time = 691.347157 + 0: The maximum resident set size (KB) = 857516 Test 182 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_decomp_gnu Checking test 183 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6112,14 +6112,14 @@ Checking test 183 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.334866 - 0: The maximum resident set size (KB) = 857840 + 0: The total amount of wall time = 689.657292 + 0: The maximum resident set size (KB) = 861376 Test 183 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_2threads_gnu Checking test 184 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6166,14 +6166,14 @@ Checking test 184 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 615.269851 - 0: The maximum resident set size (KB) = 984184 + 0: The total amount of wall time = 624.911802 + 0: The maximum resident set size (KB) = 971444 Test 184 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_restart_gnu Checking test 185 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6212,14 +6212,14 @@ Checking test 185 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.231416 - 0: The maximum resident set size (KB) = 620136 + 0: The total amount of wall time = 350.963429 + 0: The maximum resident set size (KB) = 617912 Test 185 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_gnu Checking test 186 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6266,14 +6266,14 @@ Checking test 186 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.386378 - 0: The maximum resident set size (KB) = 859116 + 0: The total amount of wall time = 680.407815 + 0: The maximum resident set size (KB) = 861852 Test 186 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_decomp_gnu Checking test 187 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6320,14 +6320,14 @@ Checking test 187 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 702.163844 - 0: The maximum resident set size (KB) = 860108 + 0: The total amount of wall time = 702.154874 + 0: The maximum resident set size (KB) = 861008 Test 187 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_sfcdiff_restart_gnu Checking test 188 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6366,14 +6366,14 @@ Checking test 188 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 516.116975 - 0: The maximum resident set size (KB) = 626644 + 0: The total amount of wall time = 511.409893 + 0: The maximum resident set size (KB) = 625748 Test 188 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_gnu Checking test 189 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6420,14 +6420,14 @@ Checking test 189 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.596761 - 0: The maximum resident set size (KB) = 856016 + 0: The total amount of wall time = 347.910842 + 0: The maximum resident set size (KB) = 854704 Test 189 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_noqr_gnu Checking test 190 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6474,14 +6474,14 @@ Checking test 190 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 349.836991 - 0: The maximum resident set size (KB) = 842132 + 0: The total amount of wall time = 350.786345 + 0: The maximum resident set size (KB) = 843824 Test 190 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_2threads_gnu Checking test 191 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6528,14 +6528,14 @@ Checking test 191 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.805178 - 0: The maximum resident set size (KB) = 970360 + 0: The total amount of wall time = 303.108751 + 0: The maximum resident set size (KB) = 979312 Test 191 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_decomp_gnu Checking test 192 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6582,42 +6582,42 @@ Checking test 192 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.056546 - 0: The maximum resident set size (KB) = 855536 + 0: The total amount of wall time = 351.261595 + 0: The maximum resident set size (KB) = 856704 Test 192 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_restart_gnu Checking test 193 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 182.512325 - 0: The maximum resident set size (KB) = 604020 + 0: The total amount of wall time = 188.024206 + 0: The maximum resident set size (KB) = 604308 Test 193 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_restart_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_restart_noqr_gnu Checking test 194 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 180.067589 - 0: The maximum resident set size (KB) = 701556 + 0: The total amount of wall time = 183.718340 + 0: The maximum resident set size (KB) = 700172 Test 194 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rrfs_v1beta_gnu Checking test 195 rrfs_v1beta_gnu results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -6664,224 +6664,224 @@ Checking test 195 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 671.364074 - 0: The maximum resident set size (KB) = 857088 + 0: The total amount of wall time = 669.610467 + 0: The maximum resident set size (KB) = 857200 Test 195 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_diag_debug_gnu Checking test 196 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 87.823832 - 0: The maximum resident set size (KB) = 594144 + 0: The total amount of wall time = 86.186020 + 0: The maximum resident set size (KB) = 557724 Test 196 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/regional_debug_gnu Checking test 197 regional_debug_gnu 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 - 0: The total amount of wall time = 442.315606 - 0: The maximum resident set size (KB) = 594872 + 0: The total amount of wall time = 437.412342 + 0: The maximum resident set size (KB) = 592604 Test 197 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_debug_gnu Checking test 198 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.392315 - 0: The maximum resident set size (KB) = 881196 + 0: The total amount of wall time = 140.078550 + 0: The maximum resident set size (KB) = 906120 Test 198 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_debug_gnu Checking test 199 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.087875 - 0: The maximum resident set size (KB) = 868776 + 0: The total amount of wall time = 138.384275 + 0: The maximum resident set size (KB) = 872804 Test 199 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_gf_debug_gnu Checking test 200 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.801224 - 0: The maximum resident set size (KB) = 872224 + 0: The total amount of wall time = 138.688523 + 0: The maximum resident set size (KB) = 876676 Test 200 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_c3_debug_gnu Checking test 201 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.351011 - 0: The maximum resident set size (KB) = 880308 + 0: The total amount of wall time = 140.882281 + 0: The maximum resident set size (KB) = 870436 Test 201 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.569837 - 0: The maximum resident set size (KB) = 992468 + 0: The total amount of wall time = 150.189973 + 0: The maximum resident set size (KB) = 959224 Test 202 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.380494 - 0: The maximum resident set size (KB) = 875092 + 0: The total amount of wall time = 222.380070 + 0: The maximum resident set size (KB) = 869600 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.194452 - 0: The maximum resident set size (KB) = 877428 + 0: The total amount of wall time = 140.027900 + 0: The maximum resident set size (KB) = 874512 Test 204 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.611409 - 0: The maximum resident set size (KB) = 878292 + 0: The total amount of wall time = 140.404423 + 0: The maximum resident set size (KB) = 873692 Test 205 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 81.160147 - 0: The maximum resident set size (KB) = 512284 + 0: The total amount of wall time = 82.047834 + 0: The maximum resident set size (KB) = 507048 Test 206 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.058097 - 0: The maximum resident set size (KB) = 504112 + 0: The total amount of wall time = 101.790689 + 0: The maximum resident set size (KB) = 499276 Test 207 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu 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 = 88.944089 - 0: The maximum resident set size (KB) = 1290716 + 0: The total amount of wall time = 90.195223 + 0: The maximum resident set size (KB) = 1285212 Test 208 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.282242 - 0: The maximum resident set size (KB) = 879836 + 0: The total amount of wall time = 141.498265 + 0: The maximum resident set size (KB) = 872072 Test 209 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.945358 - 0: The maximum resident set size (KB) = 883092 + 0: The total amount of wall time = 159.281110 + 0: The maximum resident set size (KB) = 911464 Test 210 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/gnv1_c96_no_nest_debug_gnu Checking test 211 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6922,26 +6922,26 @@ Checking test 211 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.479178 - 0: The maximum resident set size (KB) = 877668 + 0: The total amount of wall time = 239.731811 + 0: The maximum resident set size (KB) = 880932 Test 211 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/control_wam_debug_gnu Checking test 212 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 134.967996 - 0: The maximum resident set size (KB) = 242224 + 0: The total amount of wall time = 138.141542 + 0: The maximum resident set size (KB) = 245540 -Test 212 control_wam_debug_gnu PASS Tries: 2 +Test 212 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_dyn32_phy32_gnu Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6988,14 +6988,14 @@ Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 705.079213 - 0: The maximum resident set size (KB) = 754484 + 0: The total amount of wall time = 708.458040 + 0: The maximum resident set size (KB) = 763052 Test 213 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_dyn32_phy32_gnu Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7042,14 +7042,14 @@ Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.922983 - 0: The maximum resident set size (KB) = 758584 + 0: The total amount of wall time = 356.867815 + 0: The maximum resident set size (KB) = 756916 Test 214 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_2threads_dyn32_phy32_gnu Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7096,14 +7096,14 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 628.781585 - 0: The maximum resident set size (KB) = 811680 + 0: The total amount of wall time = 630.561529 + 0: The maximum resident set size (KB) = 811596 Test 215 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_2threads_dyn32_phy32_gnu Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7150,14 +7150,14 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.881013 - 0: The maximum resident set size (KB) = 803732 + 0: The total amount of wall time = 310.769787 + 0: The maximum resident set size (KB) = 806012 Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_decomp_dyn32_phy32_gnu Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7204,14 +7204,14 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.497065 - 0: The maximum resident set size (KB) = 750452 + 0: The total amount of wall time = 358.086572 + 0: The maximum resident set size (KB) = 752472 Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_restart_dyn32_phy32_gnu Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7250,28 +7250,28 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.349546 - 0: The maximum resident set size (KB) = 591236 + 0: The total amount of wall time = 528.542646 + 0: The maximum resident set size (KB) = 590672 Test 218 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_restart_dyn32_phy32_gnu Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.302928 - 0: The maximum resident set size (KB) = 577904 + 0: The total amount of wall time = 184.959752 + 0: The maximum resident set size (KB) = 575932 Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_control_gnu Checking test 220 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7287,40 +7287,40 @@ Checking test 220 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 240.197322 - 0: The maximum resident set size (KB) = 952072 + 0: The total amount of wall time = 244.303196 + 0: The maximum resident set size (KB) = 954952 Test 220 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_2threads_gnu Checking test 221 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.144794 - 0: The maximum resident set size (KB) = 985728 + 0: The total amount of wall time = 101.565526 + 0: The maximum resident set size (KB) = 993364 Test 221 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_restart_mismatch_gnu Checking test 222 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.032809 - 0: The maximum resident set size (KB) = 606388 + 0: The total amount of wall time = 126.750320 + 0: The maximum resident set size (KB) = 606964 Test 222 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_dyn64_phy32_gnu Checking test 223 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7367,42 +7367,42 @@ Checking test 223 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 410.189565 - 0: The maximum resident set size (KB) = 785000 + 0: The total amount of wall time = 414.753979 + 0: The maximum resident set size (KB) = 791460 Test 223 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_debug_dyn32_phy32_gnu Checking test 224 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.759486 - 0: The maximum resident set size (KB) = 769616 + 0: The total amount of wall time = 142.212162 + 0: The maximum resident set size (KB) = 757212 Test 224 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/hrrr_control_debug_dyn32_phy32_gnu Checking test 225 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.924960 - 0: The maximum resident set size (KB) = 762724 + 0: The total amount of wall time = 139.015154 + 0: The maximum resident set size (KB) = 759908 Test 225 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_debug_gnu Checking test 226 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7416,14 +7416,14 @@ Checking test 226 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 428.804738 - 0: The maximum resident set size (KB) = 968468 + 0: The total amount of wall time = 419.184826 + 0: The maximum resident set size (KB) = 962456 Test 226 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_debug_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_debug_qr_gnu Checking test 227 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7437,56 +7437,56 @@ Checking test 227 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 417.789294 - 0: The maximum resident set size (KB) = 634440 + 0: The total amount of wall time = 416.767616 + 0: The maximum resident set size (KB) = 633264 Test 227 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_debug_2threads_gnu Checking test 228 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.758831 - 0: The maximum resident set size (KB) = 1004476 + 0: The total amount of wall time = 253.674499 + 0: The maximum resident set size (KB) = 1006828 Test 228 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/conus13km_radar_tten_debug_gnu Checking test 229 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 421.268649 - 0: The maximum resident set size (KB) = 1034896 + 0: The total amount of wall time = 423.062881 + 0: The maximum resident set size (KB) = 1036136 Test 229 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/rap_control_dyn64_phy32_debug_gnu Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.932554 - 0: The maximum resident set size (KB) = 788448 + 0: The total amount of wall time = 143.392466 + 0: The maximum resident set size (KB) = 790536 Test 230 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_p8_gnu Checking test 231 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7551,14 +7551,14 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 636.072490 - 0: The maximum resident set size (KB) = 1508544 + 0: The total amount of wall time = 632.293941 + 0: The maximum resident set size (KB) = 1507080 Test 231 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_nowave_noaero_p8_gnu Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7620,14 +7620,14 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 383.892768 - 0: The maximum resident set size (KB) = 1400776 + 0: The total amount of wall time = 388.269915 + 0: The maximum resident set size (KB) = 1405892 Test 232 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_debug_p8_gnu Checking test 233 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7680,14 +7680,14 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.565926 - 0: The maximum resident set size (KB) = 1513888 + 0: The total amount of wall time = 357.686918 + 0: The maximum resident set size (KB) = 1516508 Test 233 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_control_pdlib_p8_gnu Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7751,14 +7751,14 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1301.095185 - 0: The maximum resident set size (KB) = 1374180 + 0: The total amount of wall time = 1306.647666 + 0: The maximum resident set size (KB) = 1378812 Test 234 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/cpld_debug_pdlib_p8_gnu Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7810,25 +7810,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 748.331890 - 0: The maximum resident set size (KB) = 1386936 + 0: The total amount of wall time = 746.731285 + 0: The maximum resident set size (KB) = 1392008 Test 235 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_224893/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_306145/datm_cdeps_control_cfsr_gnu Checking test 236 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 171.188566 - 0: The maximum resident set size (KB) = 695692 + 0: The total amount of wall time = 163.810805 + 0: The maximum resident set size (KB) = 685664 Test 236 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 30 16:58:37 UTC 2023 -Elapsed time: 01h:42m:21s. Have a nice day! +Fri Dec 1 22:49:08 UTC 2023 +Elapsed time: 01h:54m:00s. Have a nice day! From 729c054be94b9a8c4eac9acce2df83d4a1e7caf4 Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Mon, 4 Dec 2023 13:21:54 +0000 Subject: [PATCH 21/30] add jet RT log: passed --- tests/logs/RegressionTests_jet.log | 1119 +++++++++++++++------------- 1 file changed, 605 insertions(+), 514 deletions(-) diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 35aa4dd5a7..b5c61bda67 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Thu Nov 30 16:31:20 UTC 2023 +Fri Dec 1 23:28:49 UTC 2023 Start Regression test -Testing UFSWM Hash: 2da35b78e361e5e57a993cd4b7a2575942e8abd6 +Testing UFSWM Hash: a592791359b83c8998f4f516e4f8769efaf3e96b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-1406-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atm_debug_dyn32_intel elapsed time 346 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1420 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1745 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1806 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1785 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1780 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 313 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 324 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 118 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1770 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1904 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 316 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2466 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1809 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1846 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 296 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1978 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2721 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2122 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 327 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 2977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 305 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5495 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2097 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1692 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 321 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1717 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1850 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1772 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1805 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 141 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1766 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1931 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2414 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1913 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1466 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1788 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 290 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 3027 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1996 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 273 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 3118 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 241 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5504 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2126 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1340 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_p8_mixedmode_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 490.793265 - 0: The maximum resident set size (KB) = 1747264 + 0: The total amount of wall time = 408.946914 + 0: The maximum resident set size (KB) = 1771876 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1248.911601 - 0: The maximum resident set size (KB) = 1636936 + 0: The total amount of wall time = 1426.955230 + 0: The maximum resident set size (KB) = 1647508 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_gfsv17_iau_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -203,14 +203,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 919.300093 - 0: The maximum resident set size (KB) = 986428 + 0: The total amount of wall time = 812.860036 + 0: The maximum resident set size (KB) = 984700 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_restart_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 673.983621 - 0: The maximum resident set size (KB) = 979456 + 0: The total amount of wall time = 589.391509 + 0: The maximum resident set size (KB) = 979640 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_mpi_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -334,14 +334,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1442.588232 - 0: The maximum resident set size (KB) = 1611996 + 0: The total amount of wall time = 1569.016932 + 0: The maximum resident set size (KB) = 1627496 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_debug_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1601.412216 - 0: The maximum resident set size (KB) = 1654864 + 0: The total amount of wall time = 1524.470711 + 0: The maximum resident set size (KB) = 1657308 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 522.256161 - 0: The maximum resident set size (KB) = 1808196 + 0: The total amount of wall time = 465.328751 + 0: The maximum resident set size (KB) = 1768588 Test 007 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_restart_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -525,14 +525,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.766065 - 0: The maximum resident set size (KB) = 1692000 + 0: The total amount of wall time = 286.569317 + 0: The maximum resident set size (KB) = 1707100 Test 008 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_qr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -597,14 +597,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 517.748266 - 0: The maximum resident set size (KB) = 1828536 + 0: The total amount of wall time = 477.175580 + 0: The maximum resident set size (KB) = 1844008 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_restart_qr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -657,14 +657,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.754682 - 0: The maximum resident set size (KB) = 1539524 + 0: The total amount of wall time = 284.869029 + 0: The maximum resident set size (KB) = 1557824 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_2threads_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -717,14 +717,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 609.086610 - 0: The maximum resident set size (KB) = 2174384 + 0: The total amount of wall time = 448.228166 + 0: The maximum resident set size (KB) = 2187324 Test 011 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_decomp_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -777,14 +777,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 586.957332 - 0: The maximum resident set size (KB) = 1783432 + 0: The total amount of wall time = 453.392898 + 0: The maximum resident set size (KB) = 1803484 Test 012 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_mpi_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -837,14 +837,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 510.092088 - 0: The maximum resident set size (KB) = 1759616 + 0: The total amount of wall time = 389.704489 + 0: The maximum resident set size (KB) = 1758556 Test 013 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_ciceC_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -909,14 +909,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 507.370791 - 0: The maximum resident set size (KB) = 1807860 + 0: The total amount of wall time = 467.311459 + 0: The maximum resident set size (KB) = 1778124 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -980,14 +980,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.212653 - 0: The maximum resident set size (KB) = 1638144 + 0: The total amount of wall time = 351.772798 + 0: The maximum resident set size (KB) = 1645920 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_nowave_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1049,14 +1049,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 385.776323 - 0: The maximum resident set size (KB) = 1703984 + 0: The total amount of wall time = 331.424656 + 0: The maximum resident set size (KB) = 1695796 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_debug_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 647.140433 - 0: The maximum resident set size (KB) = 1771316 + 0: The total amount of wall time = 621.110182 + 0: The maximum resident set size (KB) = 1815072 Test 017 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_debug_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1168,14 +1168,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.891249 - 0: The maximum resident set size (KB) = 1668008 + 0: The total amount of wall time = 422.292132 + 0: The maximum resident set size (KB) = 1668096 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_noaero_p8_agrid_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1237,14 +1237,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 597.860381 - 0: The maximum resident set size (KB) = 1676052 + 0: The total amount of wall time = 334.261274 + 0: The maximum resident set size (KB) = 1692976 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_c48_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1294,14 +1294,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 759.329339 - 0: The maximum resident set size (KB) = 2792192 + 0: The total amount of wall time = 775.336915 + 0: The maximum resident set size (KB) = 2799228 Test 020 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_p8_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1366,14 +1366,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 640.504967 - 0: The maximum resident set size (KB) = 1803620 + 0: The total amount of wall time = 429.790976 + 0: The maximum resident set size (KB) = 1816364 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_control_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1242.473840 - 0: The maximum resident set size (KB) = 1670796 + 0: The total amount of wall time = 1231.229514 + 0: The maximum resident set size (KB) = 1674116 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_restart_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 766.414053 - 0: The maximum resident set size (KB) = 998948 + 0: The total amount of wall time = 593.965001 + 0: The maximum resident set size (KB) = 1001828 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/cpld_mpi_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1567,14 +1567,18 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1554.390767 - 0: The maximum resident set size (KB) = 1635208 + 0: The total amount of wall time = 1431.111596 + 0: The maximum resident set size (KB) = 1652756 Test 024 cpld_mpi_pdlib_p8_intel PASS +Test 025 cpld_debug_pdlib_p8_intel FAIL + +Test 025 cpld_debug_pdlib_p8_intel FAIL + baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_flake_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1585,14 +1589,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 321.619494 - 0: The maximum resident set size (KB) = 644572 + 0: The total amount of wall time = 267.614500 + 0: The maximum resident set size (KB) = 643996 Test 026 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_CubedSphereGrid_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1619,36 +1623,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 247.960228 - 0: The maximum resident set size (KB) = 593816 + 0: The total amount of wall time = 198.167686 + 0: The maximum resident set size (KB) = 592732 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_CubedSphereGrid_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 269.553193 - 0: The maximum resident set size (KB) = 599908 + 0: The total amount of wall time = 202.832599 + 0: The maximum resident set size (KB) = 596184 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_latlon_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1659,14 +1663,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.649097 - 0: The maximum resident set size (KB) = 593336 + 0: The total amount of wall time = 195.050674 + 0: The maximum resident set size (KB) = 592520 Test 029 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_wrtGauss_netcdf_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1677,14 +1681,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 279.402908 - 0: The maximum resident set size (KB) = 592976 + 0: The total amount of wall time = 196.544241 + 0: The maximum resident set size (KB) = 590208 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_c48_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1723,14 +1727,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 607.906694 -0: The maximum resident set size (KB) = 847028 +0: The total amount of wall time = 603.812535 +0: The maximum resident set size (KB) = 849396 Test 031 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_c192_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1741,14 +1745,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 739.808131 - 0: The maximum resident set size (KB) = 724344 + 0: The total amount of wall time = 742.883908 + 0: The maximum resident set size (KB) = 723232 Test 032 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_c384_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1759,14 +1763,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1068.505532 - 0: The maximum resident set size (KB) = 900744 + 0: The total amount of wall time = 1005.167148 + 0: The maximum resident set size (KB) = 887776 Test 033 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_c384gdas_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1779,10 +1783,10 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK @@ -1790,9 +1794,9 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK @@ -1800,23 +1804,23 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 865.274534 - 0: The maximum resident set size (KB) = 1011584 + 0: The total amount of wall time = 827.302608 + 0: The maximum resident set size (KB) = 1021276 Test 034 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_stochy_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1827,28 +1831,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.932829 - 0: The maximum resident set size (KB) = 597036 + 0: The total amount of wall time = 126.184325 + 0: The maximum resident set size (KB) = 598784 Test 035 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_stochy_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 163.183524 - 0: The maximum resident set size (KB) = 386596 + 0: The total amount of wall time = 66.486453 + 0: The maximum resident set size (KB) = 400248 Test 036 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_lndp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1863,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.148656 - 0: The maximum resident set size (KB) = 594624 + 0: The total amount of wall time = 120.556679 + 0: The maximum resident set size (KB) = 596272 Test 037 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_iovr4_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1881,14 +1885,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 223.154875 - 0: The maximum resident set size (KB) = 592452 + 0: The total amount of wall time = 198.833896 + 0: The maximum resident set size (KB) = 592812 Test 038 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_iovr5_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1903,14 +1907,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.034432 - 0: The maximum resident set size (KB) = 591680 + 0: The total amount of wall time = 189.673813 + 0: The maximum resident set size (KB) = 586148 Test 039 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1957,14 +1961,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.452091 - 0: The maximum resident set size (KB) = 1557204 + 0: The total amount of wall time = 230.469887 + 0: The maximum resident set size (KB) = 1571112 Test 040 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_ugwpv1_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_ugwpv1_intel Checking test 041 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2011,14 +2015,14 @@ Checking test 041 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 422.885160 - 0: The maximum resident set size (KB) = 1510344 + 0: The total amount of wall time = 227.016282 + 0: The maximum resident set size (KB) = 1561884 Test 041 control_p8_ugwpv1_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_restart_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_restart_p8_intel Checking test 042 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2057,14 +2061,14 @@ Checking test 042 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.436428 - 0: The maximum resident set size (KB) = 759212 + 0: The total amount of wall time = 117.666686 + 0: The maximum resident set size (KB) = 794364 Test 042 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_noqr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_noqr_p8_intel Checking test 043 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2111,14 +2115,14 @@ Checking test 043 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 402.779501 - 0: The maximum resident set size (KB) = 1501924 + 0: The total amount of wall time = 227.120437 + 0: The maximum resident set size (KB) = 1540464 Test 043 control_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_restart_noqr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_restart_noqr_p8_intel Checking test 044 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2157,14 +2161,14 @@ Checking test 044 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 200.735800 - 0: The maximum resident set size (KB) = 792200 + 0: The total amount of wall time = 115.563862 + 0: The maximum resident set size (KB) = 833628 Test 044 control_restart_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_decomp_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_decomp_p8_intel Checking test 045 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2207,14 +2211,14 @@ Checking test 045 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 418.120675 - 0: The maximum resident set size (KB) = 1502340 + 0: The total amount of wall time = 238.753379 + 0: The maximum resident set size (KB) = 1554652 Test 045 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_2threads_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_2threads_p8_intel Checking test 046 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2257,14 +2261,14 @@ Checking test 046 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 359.712255 - 0: The maximum resident set size (KB) = 1658768 + 0: The total amount of wall time = 215.346408 + 0: The maximum resident set size (KB) = 1653692 Test 046 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_lndp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_lndp_intel Checking test 047 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2283,14 +2287,14 @@ Checking test 047 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 539.742061 - 0: The maximum resident set size (KB) = 1569232 + 0: The total amount of wall time = 413.038172 + 0: The maximum resident set size (KB) = 1568512 Test 047 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_rrtmgp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_rrtmgp_intel Checking test 048 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2337,14 +2341,14 @@ Checking test 048 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 425.714294 - 0: The maximum resident set size (KB) = 1622180 + 0: The total amount of wall time = 302.250368 + 0: The maximum resident set size (KB) = 1629216 Test 048 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_mynn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_mynn_intel Checking test 049 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2391,14 +2395,14 @@ Checking test 049 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.319500 - 0: The maximum resident set size (KB) = 1517120 + 0: The total amount of wall time = 234.006588 + 0: The maximum resident set size (KB) = 1579700 Test 049 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/merra2_thompson_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/merra2_thompson_intel Checking test 050 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2445,14 +2449,14 @@ Checking test 050 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.530347 - 0: The maximum resident set size (KB) = 1571348 + 0: The total amount of wall time = 268.788474 + 0: The maximum resident set size (KB) = 1574556 Test 050 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_control_intel Checking test 051 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2463,28 +2467,28 @@ Checking test 051 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 598.937315 - 0: The maximum resident set size (KB) = 751500 + 0: The total amount of wall time = 416.820240 + 0: The maximum resident set size (KB) = 754964 Test 051 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_restart_intel Checking test 052 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.630864 - 0: The maximum resident set size (KB) = 766624 + 0: The total amount of wall time = 225.166524 + 0: The maximum resident set size (KB) = 761248 Test 052 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_decomp_intel Checking test 053 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,14 +2499,14 @@ Checking test 053 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 598.998124 - 0: The maximum resident set size (KB) = 760876 + 0: The total amount of wall time = 433.134888 + 0: The maximum resident set size (KB) = 757012 Test 053 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_2threads_intel Checking test 054 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2513,28 +2517,28 @@ Checking test 054 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 351.231323 - 0: The maximum resident set size (KB) = 750076 + 0: The total amount of wall time = 263.173861 + 0: The maximum resident set size (KB) = 753216 Test 054 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_netcdf_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_netcdf_parallel_intel Checking test 055 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 584.139773 - 0: The maximum resident set size (KB) = 758736 + 0: The total amount of wall time = 405.096963 + 0: The maximum resident set size (KB) = 751032 Test 055 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_2dwrtdecomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_2dwrtdecomp_intel Checking test 056 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2545,14 +2549,14 @@ Checking test 056 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 698.407487 - 0: The maximum resident set size (KB) = 751620 + 0: The total amount of wall time = 408.718597 + 0: The maximum resident set size (KB) = 753988 Test 056 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2599,14 +2603,14 @@ Checking test 057 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 865.794580 - 0: The maximum resident set size (KB) = 975040 + 0: The total amount of wall time = 600.810168 + 0: The maximum resident set size (KB) = 981372 Test 057 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_spp_sppt_shum_skeb_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2617,14 +2621,14 @@ Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 496.958433 - 0: The maximum resident set size (KB) = 1207668 + 0: The total amount of wall time = 332.973925 + 0: The maximum resident set size (KB) = 1208536 Test 058 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2671,14 +2675,14 @@ Checking test 059 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 849.971382 - 0: The maximum resident set size (KB) = 970220 + 0: The total amount of wall time = 631.609934 + 0: The maximum resident set size (KB) = 967088 Test 059 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2725,14 +2729,14 @@ Checking test 060 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 872.552819 - 0: The maximum resident set size (KB) = 1068624 + 0: The total amount of wall time = 577.317693 + 0: The maximum resident set size (KB) = 1070040 Test 060 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2771,14 +2775,14 @@ Checking test 061 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.032299 - 0: The maximum resident set size (KB) = 859448 + 0: The total amount of wall time = 305.981613 + 0: The maximum resident set size (KB) = 860768 Test 061 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_sfcdiff_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2825,14 +2829,14 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 850.611094 - 0: The maximum resident set size (KB) = 974956 + 0: The total amount of wall time = 595.308203 + 0: The maximum resident set size (KB) = 975816 Test 062 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_sfcdiff_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2879,14 +2883,14 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 863.975842 - 0: The maximum resident set size (KB) = 958256 + 0: The total amount of wall time = 636.639955 + 0: The maximum resident set size (KB) = 961228 Test 063 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_sfcdiff_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2925,14 +2929,14 @@ Checking test 064 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.727017 - 0: The maximum resident set size (KB) = 888936 + 0: The total amount of wall time = 447.922965 + 0: The maximum resident set size (KB) = 884900 Test 064 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2979,14 +2983,14 @@ Checking test 065 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 541.985852 - 0: The maximum resident set size (KB) = 970544 + 0: The total amount of wall time = 307.054761 + 0: The maximum resident set size (KB) = 976992 Test 065 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3033,14 +3037,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 568.991699 - 0: The maximum resident set size (KB) = 955596 + 0: The total amount of wall time = 311.533041 + 0: The maximum resident set size (KB) = 969632 Test 066 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3087,28 +3091,28 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.998974 - 0: The maximum resident set size (KB) = 1043628 + 0: The total amount of wall time = 280.799556 + 0: The maximum resident set size (KB) = 1036840 Test 067 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 181.864605 - 0: The maximum resident set size (KB) = 819640 + 0: The total amount of wall time = 159.463079 + 0: The maximum resident set size (KB) = 830168 Test 068 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rrfs_v1beta_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rrfs_v1beta_intel Checking test 069 rrfs_v1beta_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3155,14 +3159,14 @@ Checking test 069 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 837.556237 - 0: The maximum resident set size (KB) = 962708 + 0: The total amount of wall time = 587.839060 + 0: The maximum resident set size (KB) = 972212 Test 069 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rrfs_v1nssl_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rrfs_v1nssl_intel Checking test 070 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3177,14 +3181,14 @@ Checking test 070 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1034.843177 - 0: The maximum resident set size (KB) = 1924668 + 0: The total amount of wall time = 737.185066 + 0: The maximum resident set size (KB) = 1921860 Test 070 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rrfs_v1nssl_nohailnoccn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rrfs_v1nssl_nohailnoccn_intel Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3199,14 +3203,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1017.809097 - 0: The maximum resident set size (KB) = 1918352 + 0: The total amount of wall time = 717.977132 + 0: The maximum resident set size (KB) = 1923384 Test 071 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_csawmg_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_csawmg_intel Checking test 072 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3217,14 +3221,14 @@ Checking test 072 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 653.311231 - 0: The maximum resident set size (KB) = 677968 + 0: The total amount of wall time = 465.627287 + 0: The maximum resident set size (KB) = 677120 Test 072 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_csawmgt_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_csawmgt_intel Checking test 073 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3235,14 +3239,14 @@ Checking test 073 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 642.084732 - 0: The maximum resident set size (KB) = 673144 + 0: The total amount of wall time = 458.892730 + 0: The maximum resident set size (KB) = 687184 Test 073 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_ras_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_ras_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_ras_intel Checking test 074 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3253,26 +3257,26 @@ Checking test 074 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 394.373225 - 0: The maximum resident set size (KB) = 653816 + 0: The total amount of wall time = 258.382915 + 0: The maximum resident set size (KB) = 654620 Test 074 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_wam_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_wam_intel Checking test 075 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 185.202099 - 0: The maximum resident set size (KB) = 497072 + 0: The total amount of wall time = 150.682215 + 0: The maximum resident set size (KB) = 493536 Test 075 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_faster_intel Checking test 076 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3323,14 @@ Checking test 076 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.672438 - 0: The maximum resident set size (KB) = 1570420 + 0: The total amount of wall time = 207.947709 + 0: The maximum resident set size (KB) = 1572600 Test 076 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_control_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_control_faster_intel Checking test 077 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3337,14 +3341,14 @@ Checking test 077 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 715.993471 - 0: The maximum resident set size (KB) = 754848 + 0: The total amount of wall time = 398.162888 + 0: The maximum resident set size (KB) = 754268 Test 077 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_CubedSphereGrid_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_CubedSphereGrid_debug_intel Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3371,364 +3375,364 @@ Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 202.933460 - 0: The maximum resident set size (KB) = 747912 + 0: The total amount of wall time = 192.724758 + 0: The maximum resident set size (KB) = 749692 Test 078 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_wrtGauss_netcdf_parallel_debug_intel Checking test 079 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.916509 - 0: The maximum resident set size (KB) = 745144 + 0: The total amount of wall time = 187.068844 + 0: The maximum resident set size (KB) = 749916 Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_stochy_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_stochy_debug_intel Checking test 080 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.288442 - 0: The maximum resident set size (KB) = 750136 + 0: The total amount of wall time = 216.945643 + 0: The maximum resident set size (KB) = 753248 Test 080 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_lndp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_lndp_debug_intel Checking test 081 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.025776 - 0: The maximum resident set size (KB) = 759512 + 0: The total amount of wall time = 192.322680 + 0: The maximum resident set size (KB) = 757268 Test 081 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_csawmg_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_csawmg_debug_intel Checking test 082 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 322.416475 - 0: The maximum resident set size (KB) = 795360 + 0: The total amount of wall time = 303.523320 + 0: The maximum resident set size (KB) = 793864 Test 082 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_csawmgt_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_csawmgt_debug_intel Checking test 083 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.423284 - 0: The maximum resident set size (KB) = 795636 + 0: The total amount of wall time = 298.907960 + 0: The maximum resident set size (KB) = 799308 Test 083 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_ras_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_ras_debug_intel Checking test 084 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.471756 - 0: The maximum resident set size (KB) = 759772 + 0: The total amount of wall time = 194.872574 + 0: The maximum resident set size (KB) = 759196 Test 084 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_diag_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_diag_debug_intel Checking test 085 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.591315 - 0: The maximum resident set size (KB) = 805576 + 0: The total amount of wall time = 196.273270 + 0: The maximum resident set size (KB) = 805384 Test 085 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_debug_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_debug_p8_intel Checking test 086 control_debug_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 210.665421 - 0: The maximum resident set size (KB) = 1577704 + 0: The total amount of wall time = 205.180061 + 0: The maximum resident set size (KB) = 1581064 Test 086 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_debug_intel Checking test 087 regional_debug_intel 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 - 0: The total amount of wall time = 1375.508651 - 0: The maximum resident set size (KB) = 764452 + 0: The total amount of wall time = 1298.106848 + 0: The maximum resident set size (KB) = 769876 Test 087 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_control_debug_intel Checking test 088 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 408.142102 - 0: The maximum resident set size (KB) = 1103384 + 0: The total amount of wall time = 356.068026 + 0: The maximum resident set size (KB) = 1137124 Test 088 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_debug_intel Checking test 089 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.611224 - 0: The maximum resident set size (KB) = 1131120 + 0: The total amount of wall time = 347.858046 + 0: The maximum resident set size (KB) = 1134068 Test 089 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_gf_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_gf_debug_intel Checking test 090 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.099423 - 0: The maximum resident set size (KB) = 1134124 + 0: The total amount of wall time = 351.707212 + 0: The maximum resident set size (KB) = 1139108 Test 090 hrrr_gf_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_c3_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_c3_debug_intel Checking test 091 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 407.705461 - 0: The maximum resident set size (KB) = 1138520 + 0: The total amount of wall time = 354.918327 + 0: The maximum resident set size (KB) = 1137292 Test 091 hrrr_c3_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_unified_drag_suite_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_unified_drag_suite_debug_intel Checking test 092 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.645612 - 0: The maximum resident set size (KB) = 1130412 + 0: The total amount of wall time = 357.739956 + 0: The maximum resident set size (KB) = 1144332 Test 092 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_diag_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_diag_debug_intel Checking test 093 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.560762 - 0: The maximum resident set size (KB) = 1214444 + 0: The total amount of wall time = 367.588469 + 0: The maximum resident set size (KB) = 1220752 Test 093 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_cires_ugwp_debug_intel Checking test 094 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.066568 - 0: The maximum resident set size (KB) = 1141804 + 0: The total amount of wall time = 358.491796 + 0: The maximum resident set size (KB) = 1139224 Test 094 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_unified_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_unified_ugwp_debug_intel Checking test 095 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.565857 - 0: The maximum resident set size (KB) = 1141908 + 0: The total amount of wall time = 362.130589 + 0: The maximum resident set size (KB) = 1130736 Test 095 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_lndp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_lndp_debug_intel Checking test 096 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.239872 - 0: The maximum resident set size (KB) = 1141244 + 0: The total amount of wall time = 356.264119 + 0: The maximum resident set size (KB) = 1138304 Test 096 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_progcld_thompson_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_progcld_thompson_debug_intel Checking test 097 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.677421 - 0: The maximum resident set size (KB) = 1133640 + 0: The total amount of wall time = 350.608967 + 0: The maximum resident set size (KB) = 1139640 Test 097 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_noah_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_noah_debug_intel Checking test 098 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.034766 - 0: The maximum resident set size (KB) = 1135624 + 0: The total amount of wall time = 344.809473 + 0: The maximum resident set size (KB) = 1137580 Test 098 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_sfcdiff_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_sfcdiff_debug_intel Checking test 099 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 392.345298 - 0: The maximum resident set size (KB) = 1127868 + 0: The total amount of wall time = 352.564971 + 0: The maximum resident set size (KB) = 1139688 Test 099 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 622.238942 - 0: The maximum resident set size (KB) = 1138512 + 0: The total amount of wall time = 582.648463 + 0: The maximum resident set size (KB) = 1129080 Test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rrfs_v1beta_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rrfs_v1beta_debug_intel Checking test 101 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 373.450595 - 0: The maximum resident set size (KB) = 1127276 + 0: The total amount of wall time = 348.496944 + 0: The maximum resident set size (KB) = 1132920 Test 101 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_clm_lake_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_clm_lake_debug_intel Checking test 102 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 452.338055 - 0: The maximum resident set size (KB) = 1140576 + 0: The total amount of wall time = 433.324218 + 0: The maximum resident set size (KB) = 1141176 Test 102 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_flake_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_flake_debug_intel Checking test 103 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.052546 - 0: The maximum resident set size (KB) = 1138664 + 0: The total amount of wall time = 351.105222 + 0: The maximum resident set size (KB) = 1139368 Test 103 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/gnv1_c96_no_nest_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/gnv1_c96_no_nest_debug_intel Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3769,26 +3773,26 @@ Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 637.715208 - 0: The maximum resident set size (KB) = 1137532 + 0: The total amount of wall time = 617.595513 + 0: The maximum resident set size (KB) = 1136076 Test 104 gnv1_c96_no_nest_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_wam_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_wam_debug_intel Checking test 105 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 382.593605 - 0: The maximum resident set size (KB) = 434064 + 0: The total amount of wall time = 356.811117 + 0: The maximum resident set size (KB) = 434052 Test 105 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3799,14 +3803,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 360.135096 - 0: The maximum resident set size (KB) = 1066628 + 0: The total amount of wall time = 333.223808 + 0: The maximum resident set size (KB) = 1067716 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_control_dyn32_phy32_intel Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3853,14 +3857,14 @@ Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 545.292590 - 0: The maximum resident set size (KB) = 898400 + 0: The total amount of wall time = 520.822225 + 0: The maximum resident set size (KB) = 895764 Test 107 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_dyn32_phy32_intel Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3907,14 +3911,14 @@ Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.876416 - 0: The maximum resident set size (KB) = 854220 + 0: The total amount of wall time = 260.608092 + 0: The maximum resident set size (KB) = 865152 Test 108 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_2threads_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_2threads_dyn32_phy32_intel Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3961,14 +3965,14 @@ Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.487544 - 0: The maximum resident set size (KB) = 937340 + 0: The total amount of wall time = 494.375279 + 0: The maximum resident set size (KB) = 938368 Test 109 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_2threads_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_2threads_dyn32_phy32_intel Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4015,14 +4019,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.373355 - 0: The maximum resident set size (KB) = 907968 + 0: The total amount of wall time = 241.398838 + 0: The maximum resident set size (KB) = 900352 Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_decomp_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_decomp_dyn32_phy32_intel Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4069,14 +4073,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.903513 - 0: The maximum resident set size (KB) = 845740 + 0: The total amount of wall time = 308.319540 + 0: The maximum resident set size (KB) = 848712 Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_restart_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_restart_dyn32_phy32_intel Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4115,28 +4119,28 @@ Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.682415 - 0: The maximum resident set size (KB) = 853008 + 0: The total amount of wall time = 393.279371 + 0: The maximum resident set size (KB) = 852236 Test 112 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_restart_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_restart_dyn32_phy32_intel Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 196.399599 - 0: The maximum resident set size (KB) = 802544 + 0: The total amount of wall time = 134.083817 + 0: The maximum resident set size (KB) = 807956 Test 113 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_control_intel Checking test 114 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4152,40 +4156,40 @@ Checking test 114 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 163.426409 - 0: The maximum resident set size (KB) = 1143800 + 0: The total amount of wall time = 210.960123 + 0: The maximum resident set size (KB) = 1151252 Test 114 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_2threads_intel Checking test 115 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.416852 - 0: The maximum resident set size (KB) = 1086136 + 0: The total amount of wall time = 95.947385 + 0: The maximum resident set size (KB) = 1093156 Test 115 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_restart_mismatch_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_restart_mismatch_intel Checking test 116 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 182.422876 - 0: The maximum resident set size (KB) = 1091704 + 0: The total amount of wall time = 100.627795 + 0: The maximum resident set size (KB) = 1079328 Test 116 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_control_dyn64_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_control_dyn64_phy32_intel Checking test 117 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4232,42 +4236,42 @@ Checking test 117 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 326.966625 - 0: The maximum resident set size (KB) = 906196 + 0: The total amount of wall time = 356.542174 + 0: The maximum resident set size (KB) = 899816 Test 117 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_control_debug_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_control_debug_dyn32_phy32_intel Checking test 118 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 381.168727 - 0: The maximum resident set size (KB) = 1009060 + 0: The total amount of wall time = 358.478328 + 0: The maximum resident set size (KB) = 1019604 Test 118 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hrrr_control_debug_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hrrr_control_debug_dyn32_phy32_intel Checking test 119 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.672209 - 0: The maximum resident set size (KB) = 1015308 + 0: The total amount of wall time = 341.615127 + 0: The maximum resident set size (KB) = 1021140 Test 119 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_debug_intel Checking test 120 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4281,14 +4285,14 @@ Checking test 120 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1142.027693 - 0: The maximum resident set size (KB) = 1176420 + 0: The total amount of wall time = 1088.904785 + 0: The maximum resident set size (KB) = 1175240 Test 120 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_debug_qr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_debug_qr_intel Checking test 121 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4302,81 +4306,81 @@ Checking test 121 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1109.509224 - 0: The maximum resident set size (KB) = 843372 + 0: The total amount of wall time = 1106.616054 + 0: The maximum resident set size (KB) = 844296 Test 121 conus13km_debug_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_debug_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_debug_2threads_intel Checking test 122 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 646.130165 - 0: The maximum resident set size (KB) = 1124604 + 0: The total amount of wall time = 620.077181 + 0: The maximum resident set size (KB) = 1122244 Test 122 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/conus13km_radar_tten_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/conus13km_radar_tten_debug_intel Checking test 123 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1125.797239 - 0: The maximum resident set size (KB) = 1246864 + 0: The total amount of wall time = 1088.003718 + 0: The maximum resident set size (KB) = 1242364 Test 123 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/rap_control_dyn64_phy32_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/rap_control_dyn64_phy32_debug_intel Checking test 124 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.935347 - 0: The maximum resident set size (KB) = 1044136 + 0: The total amount of wall time = 358.267469 + 0: The maximum resident set size (KB) = 1059652 Test 124 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_atm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_atm_intel Checking test 125 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 444.877082 - 0: The maximum resident set size (KB) = 711328 + 0: The total amount of wall time = 451.576301 + 0: The maximum resident set size (KB) = 705576 Test 125 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_atm_thompson_gfdlsf_intel Checking test 126 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 431.524287 - 0: The maximum resident set size (KB) = 1070016 + 0: The total amount of wall time = 482.855603 + 0: The maximum resident set size (KB) = 1065020 Test 126 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_atm_ocn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_atm_ocn_intel Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4385,14 +4389,14 @@ Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 714.031673 - 0: The maximum resident set size (KB) = 762316 + 0: The total amount of wall time = 715.297729 + 0: The maximum resident set size (KB) = 758064 Test 127 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_atm_wav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_atm_wav_intel Checking test 128 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4401,14 +4405,14 @@ Checking test 128 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1063.078678 - 0: The maximum resident set size (KB) = 790444 + 0: The total amount of wall time = 973.205340 + 0: The maximum resident set size (KB) = 797488 Test 128 hafs_regional_atm_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_atm_ocn_wav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_atm_ocn_wav_intel Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4419,14 +4423,14 @@ Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1134.740932 - 0: The maximum resident set size (KB) = 808908 + 0: The total amount of wall time = 1188.796031 + 0: The maximum resident set size (KB) = 815060 Test 129 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/gnv1_nested_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/gnv1_nested_intel Checking test 130 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4438,7 +4442,7 @@ Checking test 130 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK @@ -4448,11 +4452,11 @@ Checking test 130 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK @@ -4461,26 +4465,26 @@ Checking test 130 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 477.472285 - 0: The maximum resident set size (KB) = 764032 + 0: The total amount of wall time = 396.328245 + 0: The maximum resident set size (KB) = 760468 Test 130 gnv1_nested_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_docn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4488,14 +4492,14 @@ Checking test 131 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 521.203802 - 0: The maximum resident set size (KB) = 759064 + 0: The total amount of wall time = 560.536826 + 0: The maximum resident set size (KB) = 762184 Test 131 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/hafs_regional_docn_oisst_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4503,118 +4507,118 @@ Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 632.018746 - 0: The maximum resident set size (KB) = 742372 + 0: The total amount of wall time = 539.770634 + 0: The maximum resident set size (KB) = 742668 Test 132 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_control_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_control_cfsr_intel Checking test 133 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 252.969672 - 0: The maximum resident set size (KB) = 1036468 + 0: The total amount of wall time = 213.288709 + 0: The maximum resident set size (KB) = 1028116 Test 133 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_restart_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_restart_cfsr_intel Checking test 134 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 131.059938 - 0: The maximum resident set size (KB) = 1000060 + 0: The total amount of wall time = 123.600158 + 0: The maximum resident set size (KB) = 1007044 Test 134 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_control_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_control_gefs_intel Checking test 135 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 243.003593 - 0: The maximum resident set size (KB) = 903136 + 0: The total amount of wall time = 199.839433 + 0: The maximum resident set size (KB) = 899652 Test 135 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_iau_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_iau_gefs_intel Checking test 136 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.364463 - 0: The maximum resident set size (KB) = 900196 + 0: The total amount of wall time = 202.456860 + 0: The maximum resident set size (KB) = 901136 Test 136 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_stochy_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_stochy_gefs_intel Checking test 137 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 216.603579 - 0: The maximum resident set size (KB) = 909708 + 0: The total amount of wall time = 206.236674 + 0: The maximum resident set size (KB) = 901560 Test 137 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_ciceC_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_ciceC_cfsr_intel Checking test 138 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.674879 - 0: The maximum resident set size (KB) = 1025416 + 0: The total amount of wall time = 206.427302 + 0: The maximum resident set size (KB) = 1024260 Test 138 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_bulk_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_bulk_cfsr_intel Checking test 139 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.327874 - 0: The maximum resident set size (KB) = 1029240 + 0: The total amount of wall time = 212.899709 + 0: The maximum resident set size (KB) = 1035792 Test 139 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_bulk_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_bulk_gefs_intel Checking test 140 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.738404 - 0: The maximum resident set size (KB) = 906604 + 0: The total amount of wall time = 211.348905 + 0: The maximum resident set size (KB) = 903244 Test 140 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_mx025_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4627,14 @@ Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 536.960670 - 0: The maximum resident set size (KB) = 860992 + 0: The total amount of wall time = 568.398987 + 0: The maximum resident set size (KB) = 857196 Test 141 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_mx025_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4643,77 @@ Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 531.164367 - 0: The maximum resident set size (KB) = 815308 + 0: The total amount of wall time = 576.380497 + 0: The maximum resident set size (KB) = 815120 Test 142 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_multiple_files_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_multiple_files_cfsr_intel Checking test 143 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.014634 - 0: The maximum resident set size (KB) = 1024808 + 0: The total amount of wall time = 205.462287 + 0: The maximum resident set size (KB) = 1023484 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_3072x1536_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_3072x1536_cfsr_intel Checking test 144 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 306.160666 - 0: The maximum resident set size (KB) = 2322864 + 0: The total amount of wall time = 287.940761 + 0: The maximum resident set size (KB) = 2325112 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_gfs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_gfs_intel Checking test 145 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 303.177125 - 0: The maximum resident set size (KB) = 2321808 + 0: The total amount of wall time = 288.460277 + 0: The maximum resident set size (KB) = 2367944 Test 145 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_debug_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_debug_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_debug_cfsr_intel Checking test 146 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 504.497134 - 0: The maximum resident set size (KB) = 989532 + 0: The total amount of wall time = 459.239104 + 0: The maximum resident set size (KB) = 983308 Test 146 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_control_cfsr_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_control_cfsr_faster_intel Checking test 147 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.934559 - 0: The maximum resident set size (KB) = 1022448 + 0: The total amount of wall time = 261.520834 + 0: The maximum resident set size (KB) = 1024568 Test 147 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_lnd_gswp3_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_lnd_gswp3_intel Checking test 148 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4722,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.369860 - 0: The maximum resident set size (KB) = 218912 + 0: The total amount of wall time = 32.427694 + 0: The maximum resident set size (KB) = 225576 Test 148 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/datm_cdeps_lnd_gswp3_rst_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4738,14 @@ Checking test 149 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 16.294145 - 0: The maximum resident set size (KB) = 222968 + 0: The total amount of wall time = 18.924251 + 0: The maximum resident set size (KB) = 223436 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_p8_atmlnd_sbs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4830,14 @@ Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 295.098405 - 0: The maximum resident set size (KB) = 1573244 + 0: The total amount of wall time = 301.489499 + 0: The maximum resident set size (KB) = 1615952 Test 150 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/atmwav_control_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4876,14 +4880,14 @@ Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 131.271198 - 0: The maximum resident set size (KB) = 1591496 + 0: The total amount of wall time = 200.374379 + 0: The maximum resident set size (KB) = 1585896 Test 151 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/control_atmwav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4927,14 +4931,14 @@ Checking test 152 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 120.598826 - 0: The maximum resident set size (KB) = 603424 + 0: The total amount of wall time = 145.748778 + 0: The maximum resident set size (KB) = 608492 Test 152 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/atmaero_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4978,14 +4982,14 @@ Checking test 153 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.681010 - 0: The maximum resident set size (KB) = 1672184 + 0: The total amount of wall time = 333.753861 + 0: The maximum resident set size (KB) = 1667104 Test 153 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/atmaero_control_p8_rad_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5029,14 +5033,14 @@ Checking test 154 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.192473 - 0: The maximum resident set size (KB) = 1703008 + 0: The total amount of wall time = 393.448618 + 0: The maximum resident set size (KB) = 1698532 Test 154 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_275559/atmaero_control_p8_rad_micro_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14585/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5080,8 +5084,95 @@ Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.388950 - 0: The maximum resident set size (KB) = 1723948 + 0: The total amount of wall time = 429.326415 + 0: The maximum resident set size (KB) = 1729712 Test 155 atmaero_control_p8_rad_micro_intel PASS +FAILED TESTS: +cpld_debug_pdlib_p8_intel 025 failed in run_test + +REGRESSION TEST FAILED +Sat Dec 2 02:52:27 UTC 2023 +Elapsed time: 03h:23m:39s. Have a nice day! +Sun Dec 3 00:17:35 UTC 2023 +Start Regression test + +Testing UFSWM Hash: a592791359b83c8998f4f516e4f8769efaf3e96b +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) + e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-1406-ge5d08d4) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile s2sw_pdlib_debug_intel elapsed time 303 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_11917/cpld_debug_pdlib_p8_intel +Checking test 001 cpld_debug_pdlib_p8_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1882.367109 + 0: The maximum resident set size (KB) = 1676884 + +Test 001 cpld_debug_pdlib_p8_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Sun Dec 3 00:59:54 UTC 2023 +Elapsed time: 00h:42m:20s. Have a nice day! From 7683458df9f86f43f96913f3500f172d81463ab3 Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Mon, 4 Dec 2023 08:25:24 -0500 Subject: [PATCH 22/30] add gaea RT log: passed --- tests/logs/RegressionTests_gaea.log | 1132 +++++++++++++-------------- 1 file changed, 566 insertions(+), 566 deletions(-) diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 8ec74dfdd9..6e9f68b1a3 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,61 +1,61 @@ -Thu 30 Nov 2023 10:23:59 AM EST +Sun 03 Dec 2023 02:14:01 PM EST Start Regression test -Testing UFSWM Hash: 2da35b78e361e5e57a993cd4b7a2575942e8abd6 +Testing UFSWM Hash: 29aa3bcd27bc0b1f1633c659fcfd81be157b29df Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atmaero_intel elapsed time 717 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 710 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 655 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 280 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 788 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 663 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 685 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 142 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 241 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 238 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 68 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 706 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 226 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 772 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 787 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 898 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 780 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 813 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 869 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 296 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1008 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 296 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 274 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 804 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 953 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 648 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 694 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 682 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 266 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 774 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 688 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 683 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 716 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 253 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 249 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 66 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 742 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 251 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 744 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 757 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 803 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 824 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 776 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 285 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1001 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 297 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1221 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 860 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 282 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 873 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 235 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 936 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -120,14 +120,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.636334 - 0: The maximum resident set size (KB) = 1582584 + 0: The total amount of wall time = 307.833447 + 0: The maximum resident set size (KB) = 1569792 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -191,14 +191,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 901.687825 - 0: The maximum resident set size (KB) = 1488228 + 0: The total amount of wall time = 899.863827 + 0: The maximum resident set size (KB) = 1488204 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_gfsv17_iau_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 596.934219 - 0: The maximum resident set size (KB) = 724784 + 0: The total amount of wall time = 596.490326 + 0: The maximum resident set size (KB) = 744744 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_restart_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -267,14 +267,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.937836 - 0: The maximum resident set size (KB) = 735304 + 0: The total amount of wall time = 425.399868 + 0: The maximum resident set size (KB) = 735496 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_mpi_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -338,14 +338,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1042.935931 - 0: The maximum resident set size (KB) = 1466540 + 0: The total amount of wall time = 1039.208662 + 0: The maximum resident set size (KB) = 1466652 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_debug_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -397,14 +397,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1251.871883 - 0: The maximum resident set size (KB) = 1505456 + 0: The total amount of wall time = 1252.468487 + 0: The maximum resident set size (KB) = 1506628 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -469,14 +469,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.852365 - 0: The maximum resident set size (KB) = 1615780 + 0: The total amount of wall time = 344.028732 + 0: The maximum resident set size (KB) = 1603084 Test 007 cpld_control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_restart_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -529,14 +529,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 238.535979 - 0: The maximum resident set size (KB) = 1479740 + 0: The total amount of wall time = 194.448700 + 0: The maximum resident set size (KB) = 1473256 Test 008 cpld_restart_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_qr_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -601,14 +601,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.616989 - 0: The maximum resident set size (KB) = 1641356 + 0: The total amount of wall time = 344.480111 + 0: The maximum resident set size (KB) = 1628784 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_restart_qr_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -661,14 +661,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.309483 - 0: The maximum resident set size (KB) = 1328728 + 0: The total amount of wall time = 196.550764 + 0: The maximum resident set size (KB) = 1323116 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_2threads_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -721,14 +721,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.960916 - 0: The maximum resident set size (KB) = 1841272 + 0: The total amount of wall time = 332.716720 + 0: The maximum resident set size (KB) = 1828640 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_decomp_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -781,14 +781,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.224438 - 0: The maximum resident set size (KB) = 1609896 + 0: The total amount of wall time = 344.633662 + 0: The maximum resident set size (KB) = 1596816 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_mpi_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -841,14 +841,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.048885 - 0: The maximum resident set size (KB) = 1570876 + 0: The total amount of wall time = 282.950882 + 0: The maximum resident set size (KB) = 1558624 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_bmark_p8_intel Checking test 014 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -896,14 +896,14 @@ Checking test 014 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 600.303016 - 0: The maximum resident set size (KB) = 3099008 + 0: The total amount of wall time = 602.831888 + 0: The maximum resident set size (KB) = 3097724 Test 014 cpld_bmark_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_restart_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_restart_bmark_p8_intel Checking test 015 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -951,14 +951,14 @@ Checking test 015 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.365495 - 0: The maximum resident set size (KB) = 3023388 + 0: The total amount of wall time = 354.722899 + 0: The maximum resident set size (KB) = 3020928 Test 015 cpld_restart_bmark_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1022,14 +1022,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.693266 - 0: The maximum resident set size (KB) = 1467644 + 0: The total amount of wall time = 262.022041 + 0: The maximum resident set size (KB) = 1486092 Test 016 cpld_control_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_nowave_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.706055 - 0: The maximum resident set size (KB) = 1502016 + 0: The total amount of wall time = 261.963407 + 0: The maximum resident set size (KB) = 1519964 Test 017 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_debug_p8_intel Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1151,14 +1151,14 @@ Checking test 018 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 498.015152 - 0: The maximum resident set size (KB) = 1623744 + 0: The total amount of wall time = 496.577362 + 0: The maximum resident set size (KB) = 1604048 Test 018 cpld_debug_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_debug_noaero_p8_intel Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1210,14 +1210,14 @@ Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.144868 - 0: The maximum resident set size (KB) = 1468248 + 0: The total amount of wall time = 335.169022 + 0: The maximum resident set size (KB) = 1504116 Test 019 cpld_debug_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 408.586605 - 0: The maximum resident set size (KB) = 1521360 + 0: The total amount of wall time = 262.923362 + 0: The maximum resident set size (KB) = 1520972 Test 020 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 021 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 567.819706 - 0: The maximum resident set size (KB) = 2589932 + 0: The total amount of wall time = 567.680626 + 0: The maximum resident set size (KB) = 2589552 Test 021 cpld_control_c48_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.605785 - 0: The maximum resident set size (KB) = 1615728 + 0: The total amount of wall time = 331.209470 + 0: The maximum resident set size (KB) = 1603636 Test 022 cpld_control_p8_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_control_pdlib_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1479,14 +1479,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 949.129555 - 0: The maximum resident set size (KB) = 1484136 + 0: The total amount of wall time = 948.709204 + 0: The maximum resident set size (KB) = 1502504 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_restart_pdlib_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1538,14 +1538,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.425691 - 0: The maximum resident set size (KB) = 780852 + 0: The total amount of wall time = 443.595434 + 0: The maximum resident set size (KB) = 780736 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_mpi_pdlib_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1609,14 +1609,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1102.602570 - 0: The maximum resident set size (KB) = 1460240 + 0: The total amount of wall time = 1097.904657 + 0: The maximum resident set size (KB) = 1478824 Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/cpld_debug_pdlib_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1668,14 +1668,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1565.982327 - 0: The maximum resident set size (KB) = 1483368 + 0: The total amount of wall time = 1562.479089 + 0: The maximum resident set size (KB) = 1519372 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1686,14 +1686,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.912599 - 0: The maximum resident set size (KB) = 506444 + 0: The total amount of wall time = 205.886117 + 0: The maximum resident set size (KB) = 506296 Test 027 control_flake_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1720,14 +1720,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 136.347632 - 0: The maximum resident set size (KB) = 455748 + 0: The total amount of wall time = 136.323995 + 0: The maximum resident set size (KB) = 456084 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.047054 - 0: The maximum resident set size (KB) = 460056 + 0: The total amount of wall time = 151.174483 + 0: The maximum resident set size (KB) = 460048 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1760,32 +1760,32 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.633712 - 0: The maximum resident set size (KB) = 455636 + 0: The total amount of wall time = 138.676940 + 0: The maximum resident set size (KB) = 455880 Test 030 control_latlon_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.485482 - 0: The maximum resident set size (KB) = 455596 + 0: The total amount of wall time = 144.837822 + 0: The maximum resident set size (KB) = 455796 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1824,14 +1824,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 425.004772 -0: The maximum resident set size (KB) = 686248 +0: The total amount of wall time = 425.262483 +0: The maximum resident set size (KB) = 686484 Test 032 control_c48_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1842,14 +1842,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 570.766264 - 0: The maximum resident set size (KB) = 573788 + 0: The total amount of wall time = 569.895408 + 0: The maximum resident set size (KB) = 573324 -Test 033 control_c192_intel PASS Tries: 2 +Test 033 control_c192_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1121.750333 - 0: The maximum resident set size (KB) = 876052 + 0: The total amount of wall time = 1113.943866 + 0: The maximum resident set size (KB) = 875724 Test 034 control_c384_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1894,7 +1894,7 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK @@ -1910,14 +1910,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 943.583537 - 0: The maximum resident set size (KB) = 997452 + 0: The total amount of wall time = 919.534017 + 0: The maximum resident set size (KB) = 999392 Test 035 control_c384gdas_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1928,28 +1928,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.756632 - 0: The maximum resident set size (KB) = 461076 + 0: The total amount of wall time = 90.787235 + 0: The maximum resident set size (KB) = 461216 Test 036 control_stochy_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_stochy_restart_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.117273 - 0: The maximum resident set size (KB) = 221252 + 0: The total amount of wall time = 67.098507 + 0: The maximum resident set size (KB) = 221316 Test 037 control_stochy_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1960,14 +1960,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.745632 - 0: The maximum resident set size (KB) = 462296 + 0: The total amount of wall time = 85.450184 + 0: The maximum resident set size (KB) = 462492 Test 038 control_lndp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.798969 - 0: The maximum resident set size (KB) = 455952 + 0: The total amount of wall time = 139.585663 + 0: The maximum resident set size (KB) = 455920 Test 039 control_iovr4_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.096147 - 0: The maximum resident set size (KB) = 455932 + 0: The total amount of wall time = 139.955043 + 0: The maximum resident set size (KB) = 455644 Test 040 control_iovr5_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2058,14 +2058,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.305088 - 0: The maximum resident set size (KB) = 1426772 + 0: The total amount of wall time = 169.466673 + 0: The maximum resident set size (KB) = 1426824 Test 041 control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_ugwpv1_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.427469 - 0: The maximum resident set size (KB) = 1414284 + 0: The total amount of wall time = 161.295377 + 0: The maximum resident set size (KB) = 1430544 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_restart_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2158,14 +2158,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 87.664053 - 0: The maximum resident set size (KB) = 590316 + 0: The total amount of wall time = 88.071118 + 0: The maximum resident set size (KB) = 590548 Test 043 control_restart_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_noqr_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2212,14 +2212,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 162.743311 - 0: The maximum resident set size (KB) = 1417248 + 0: The total amount of wall time = 162.674118 + 0: The maximum resident set size (KB) = 1417232 Test 044 control_noqr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_restart_noqr_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2258,14 +2258,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.368695 - 0: The maximum resident set size (KB) = 621444 + 0: The total amount of wall time = 85.349992 + 0: The maximum resident set size (KB) = 621340 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_decomp_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2308,14 +2308,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.944562 - 0: The maximum resident set size (KB) = 1420968 + 0: The total amount of wall time = 170.422119 + 0: The maximum resident set size (KB) = 1420832 Test 046 control_decomp_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_2threads_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2358,14 +2358,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.186153 - 0: The maximum resident set size (KB) = 1512844 + 0: The total amount of wall time = 154.226153 + 0: The maximum resident set size (KB) = 1513072 Test 047 control_2threads_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2384,14 +2384,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 306.633935 - 0: The maximum resident set size (KB) = 1411440 + 0: The total amount of wall time = 304.557451 + 0: The maximum resident set size (KB) = 1427600 Test 048 control_p8_lndp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.662849 - 0: The maximum resident set size (KB) = 1463388 + 0: The total amount of wall time = 226.653092 + 0: The maximum resident set size (KB) = 1480344 Test 049 control_p8_rrtmgp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.663185 - 0: The maximum resident set size (KB) = 1432404 + 0: The total amount of wall time = 168.863343 + 0: The maximum resident set size (KB) = 1432272 Test 050 control_p8_mynn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.052555 - 0: The maximum resident set size (KB) = 1431752 + 0: The total amount of wall time = 199.173168 + 0: The maximum resident set size (KB) = 1431472 Test 051 merra2_thompson_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2564,28 +2564,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 343.650277 - 0: The maximum resident set size (KB) = 580544 + 0: The total amount of wall time = 348.236614 + 0: The maximum resident set size (KB) = 580228 Test 052 regional_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_restart_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 190.849802 - 0: The maximum resident set size (KB) = 585748 + 0: The total amount of wall time = 181.315524 + 0: The maximum resident set size (KB) = 585612 Test 053 regional_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_decomp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2596,14 +2596,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 366.334370 - 0: The maximum resident set size (KB) = 584528 + 0: The total amount of wall time = 362.985331 + 0: The maximum resident set size (KB) = 584396 Test 054 regional_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_2threads_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2614,14 +2614,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 212.578537 - 0: The maximum resident set size (KB) = 592068 + 0: The total amount of wall time = 204.759235 + 0: The maximum resident set size (KB) = 592416 Test 055 regional_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2629,28 +2629,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 320.720126 - 0: The maximum resident set size (KB) = 1075692 + 0: The total amount of wall time = 317.770092 + 0: The maximum resident set size (KB) = 1075920 Test 056 regional_noquilt_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 347.695970 - 0: The maximum resident set size (KB) = 580356 + 0: The total amount of wall time = 403.738273 + 0: The maximum resident set size (KB) = 580284 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_2dwrtdecomp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2661,14 +2661,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 345.577734 - 0: The maximum resident set size (KB) = 582860 + 0: The total amount of wall time = 352.734607 + 0: The maximum resident set size (KB) = 583680 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 443.363096 - 0: The maximum resident set size (KB) = 1550600 + 0: The total amount of wall time = 436.857001 + 0: The maximum resident set size (KB) = 1550680 Test 059 regional_wofs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.166156 - 0: The maximum resident set size (KB) = 835848 + 0: The total amount of wall time = 453.800310 + 0: The maximum resident set size (KB) = 835820 Test 060 rap_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 257.084006 - 0: The maximum resident set size (KB) = 1005448 + 0: The total amount of wall time = 256.670842 + 0: The maximum resident set size (KB) = 1005672 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_decomp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.476416 - 0: The maximum resident set size (KB) = 834380 + 0: The total amount of wall time = 468.855597 + 0: The maximum resident set size (KB) = 834248 Test 062 rap_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_2threads_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2859,14 +2859,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.120905 - 0: The maximum resident set size (KB) = 924644 + 0: The total amount of wall time = 427.847990 + 0: The maximum resident set size (KB) = 924276 Test 063 rap_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_restart_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.582295 - 0: The maximum resident set size (KB) = 595556 + 0: The total amount of wall time = 232.828845 + 0: The maximum resident set size (KB) = 595560 Test 064 rap_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.088626 - 0: The maximum resident set size (KB) = 834852 + 0: The total amount of wall time = 453.200015 + 0: The maximum resident set size (KB) = 834836 Test 065 rap_sfcdiff_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_sfcdiff_decomp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,14 +3013,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.107247 - 0: The maximum resident set size (KB) = 834552 + 0: The total amount of wall time = 466.853415 + 0: The maximum resident set size (KB) = 834588 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_sfcdiff_restart_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3059,14 +3059,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.838124 - 0: The maximum resident set size (KB) = 600888 + 0: The total amount of wall time = 338.583174 + 0: The maximum resident set size (KB) = 601220 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3113,14 +3113,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.502481 - 0: The maximum resident set size (KB) = 830124 + 0: The total amount of wall time = 228.836013 + 0: The maximum resident set size (KB) = 830788 Test 068 hrrr_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_decomp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3167,14 +3167,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.329664 - 0: The maximum resident set size (KB) = 830128 + 0: The total amount of wall time = 233.110865 + 0: The maximum resident set size (KB) = 830020 Test 069 hrrr_control_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_2threads_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3221,28 +3221,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.811177 - 0: The maximum resident set size (KB) = 917384 + 0: The total amount of wall time = 207.513865 + 0: The maximum resident set size (KB) = 917316 Test 070 hrrr_control_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_restart_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.864283 - 0: The maximum resident set size (KB) = 584452 + 0: The total amount of wall time = 118.739095 + 0: The maximum resident set size (KB) = 584384 Test 071 hrrr_control_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3289,14 +3289,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.157919 - 0: The maximum resident set size (KB) = 831264 + 0: The total amount of wall time = 445.031903 + 0: The maximum resident set size (KB) = 831608 Test 072 rrfs_v1beta_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3311,14 +3311,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 562.019511 - 0: The maximum resident set size (KB) = 1792736 + 0: The total amount of wall time = 561.815078 + 0: The maximum resident set size (KB) = 1790324 Test 073 rrfs_v1nssl_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 548.878707 - 0: The maximum resident set size (KB) = 1786212 + 0: The total amount of wall time = 541.237833 + 0: The maximum resident set size (KB) = 1786296 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3351,14 +3351,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 361.724414 - 0: The maximum resident set size (KB) = 523532 + 0: The total amount of wall time = 360.812022 + 0: The maximum resident set size (KB) = 523616 Test 075 control_csawmgt_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3369,26 +3369,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.217193 - 0: The maximum resident set size (KB) = 494712 + 0: The total amount of wall time = 194.501831 + 0: The maximum resident set size (KB) = 494544 Test 076 control_ras_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 122.546644 - 0: The maximum resident set size (KB) = 205352 + 0: The total amount of wall time = 121.916698 + 0: The maximum resident set size (KB) = 204516 Test 077 control_wam_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3435,14 +3435,14 @@ Checking test 078 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.499215 - 0: The maximum resident set size (KB) = 1410916 + 0: The total amount of wall time = 153.458667 + 0: The maximum resident set size (KB) = 1426540 Test 078 control_p8_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3453,14 +3453,14 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 324.255703 - 0: The maximum resident set size (KB) = 580332 + 0: The total amount of wall time = 327.951301 + 0: The maximum resident set size (KB) = 580368 Test 079 regional_control_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_CubedSphereGrid_debug_intel Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3487,364 +3487,364 @@ Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.894341 - 0: The maximum resident set size (KB) = 618592 + 0: The total amount of wall time = 152.075835 + 0: The maximum resident set size (KB) = 618680 Test 080 control_CubedSphereGrid_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_wrtGauss_netcdf_parallel_debug_intel Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.759615 - 0: The maximum resident set size (KB) = 618700 + 0: The total amount of wall time = 152.317922 + 0: The maximum resident set size (KB) = 618668 Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_stochy_debug_intel Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.301584 - 0: The maximum resident set size (KB) = 625900 + 0: The total amount of wall time = 171.508310 + 0: The maximum resident set size (KB) = 625700 Test 082 control_stochy_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_lndp_debug_intel Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.482154 - 0: The maximum resident set size (KB) = 624044 + 0: The total amount of wall time = 153.538882 + 0: The maximum resident set size (KB) = 624008 Test 083 control_lndp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_csawmg_debug_intel Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.992596 - 0: The maximum resident set size (KB) = 660568 + 0: The total amount of wall time = 243.230778 + 0: The maximum resident set size (KB) = 661232 Test 084 control_csawmg_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_csawmgt_debug_intel Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.197051 - 0: The maximum resident set size (KB) = 660464 + 0: The total amount of wall time = 239.095010 + 0: The maximum resident set size (KB) = 660364 Test 085 control_csawmgt_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_ras_debug_intel Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.535098 - 0: The maximum resident set size (KB) = 630552 + 0: The total amount of wall time = 155.196759 + 0: The maximum resident set size (KB) = 630284 Test 086 control_ras_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_diag_debug_intel Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.436091 - 0: The maximum resident set size (KB) = 679028 + 0: The total amount of wall time = 185.812218 + 0: The maximum resident set size (KB) = 678892 Test 087 control_diag_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_debug_p8_intel Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 162.627954 - 0: The maximum resident set size (KB) = 1445196 + 0: The total amount of wall time = 162.736719 + 0: The maximum resident set size (KB) = 1445288 Test 088 control_debug_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_debug_intel Checking test 089 regional_debug_intel 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 - 0: The total amount of wall time = 1062.713144 - 0: The maximum resident set size (KB) = 605644 + 0: The total amount of wall time = 1047.137881 + 0: The maximum resident set size (KB) = 605572 Test 089 regional_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_control_debug_intel Checking test 090 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.177664 - 0: The maximum resident set size (KB) = 1000612 + 0: The total amount of wall time = 283.618877 + 0: The maximum resident set size (KB) = 1000420 Test 090 rap_control_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_debug_intel Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.023248 - 0: The maximum resident set size (KB) = 995292 + 0: The total amount of wall time = 278.164174 + 0: The maximum resident set size (KB) = 995012 Test 091 hrrr_control_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_gf_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_gf_debug_intel Checking test 092 hrrr_gf_debug_intel 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.016987 - 0: The maximum resident set size (KB) = 1000424 + 0: The total amount of wall time = 281.777779 + 0: The maximum resident set size (KB) = 1000196 Test 092 hrrr_gf_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_c3_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_c3_debug_intel Checking test 093 hrrr_c3_debug_intel 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.742925 - 0: The maximum resident set size (KB) = 999996 + 0: The total amount of wall time = 283.073747 + 0: The maximum resident set size (KB) = 1000028 Test 093 hrrr_c3_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_unified_drag_suite_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_unified_drag_suite_debug_intel Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.300088 - 0: The maximum resident set size (KB) = 1000712 + 0: The total amount of wall time = 283.726681 + 0: The maximum resident set size (KB) = 1000384 Test 094 rap_unified_drag_suite_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_diag_debug_intel Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.686792 - 0: The maximum resident set size (KB) = 1084264 + 0: The total amount of wall time = 298.506684 + 0: The maximum resident set size (KB) = 1084416 Test 095 rap_diag_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_cires_ugwp_debug_intel Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.912571 - 0: The maximum resident set size (KB) = 1000568 + 0: The total amount of wall time = 289.053863 + 0: The maximum resident set size (KB) = 1000464 Test 096 rap_cires_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_unified_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_unified_ugwp_debug_intel Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.486481 - 0: The maximum resident set size (KB) = 1000524 + 0: The total amount of wall time = 289.320053 + 0: The maximum resident set size (KB) = 1000480 Test 097 rap_unified_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_lndp_debug_intel Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.333369 - 0: The maximum resident set size (KB) = 1000268 + 0: The total amount of wall time = 285.808451 + 0: The maximum resident set size (KB) = 999936 Test 098 rap_lndp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_progcld_thompson_debug_intel Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.221581 - 0: The maximum resident set size (KB) = 1000420 + 0: The total amount of wall time = 306.807932 + 0: The maximum resident set size (KB) = 1000076 Test 099 rap_progcld_thompson_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_noah_debug_intel Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.610897 - 0: The maximum resident set size (KB) = 1000380 + 0: The total amount of wall time = 277.823087 + 0: The maximum resident set size (KB) = 1000684 Test 100 rap_noah_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_sfcdiff_debug_intel Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.213496 - 0: The maximum resident set size (KB) = 1001908 + 0: The total amount of wall time = 283.548247 + 0: The maximum resident set size (KB) = 1001656 Test 101 rap_sfcdiff_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 467.481002 - 0: The maximum resident set size (KB) = 997788 + 0: The total amount of wall time = 468.520714 + 0: The maximum resident set size (KB) = 997560 Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rrfs_v1beta_debug_intel Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.275665 - 0: The maximum resident set size (KB) = 993476 + 0: The total amount of wall time = 279.603607 + 0: The maximum resident set size (KB) = 993584 Test 103 rrfs_v1beta_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_clm_lake_debug_intel Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.117159 - 0: The maximum resident set size (KB) = 1004164 + 0: The total amount of wall time = 351.183844 + 0: The maximum resident set size (KB) = 1004224 Test 104 rap_clm_lake_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_flake_debug_intel Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.940696 - 0: The maximum resident set size (KB) = 1000276 + 0: The total amount of wall time = 283.374972 + 0: The maximum resident set size (KB) = 1000056 Test 105 rap_flake_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/gnv1_c96_no_nest_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/gnv1_c96_no_nest_debug_intel Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3885,26 +3885,26 @@ Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.646575 - 0: The maximum resident set size (KB) = 1003220 + 0: The total amount of wall time = 495.748289 + 0: The maximum resident set size (KB) = 1002900 Test 106 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 288.027507 - 0: The maximum resident set size (KB) = 234904 + 0: The total amount of wall time = 288.191547 + 0: The maximum resident set size (KB) = 234992 Test 107 control_wam_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 239.364556 - 0: The maximum resident set size (KB) = 871676 + 0: The total amount of wall time = 239.821370 + 0: The maximum resident set size (KB) = 871884 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3969,14 +3969,14 @@ Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.177811 - 0: The maximum resident set size (KB) = 714816 + 0: The total amount of wall time = 371.755630 + 0: The maximum resident set size (KB) = 715168 Test 109 rap_control_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4023,14 +4023,14 @@ Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.489832 - 0: The maximum resident set size (KB) = 712116 + 0: The total amount of wall time = 191.066442 + 0: The maximum resident set size (KB) = 712088 Test 110 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_2threads_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_2threads_dyn32_phy32_intel Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4077,14 +4077,14 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.847247 - 0: The maximum resident set size (KB) = 773880 + 0: The total amount of wall time = 350.648819 + 0: The maximum resident set size (KB) = 773356 Test 111 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_2threads_dyn32_phy32_intel Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4131,14 +4131,14 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.457957 - 0: The maximum resident set size (KB) = 770828 + 0: The total amount of wall time = 175.366384 + 0: The maximum resident set size (KB) = 769728 Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_decomp_dyn32_phy32_intel Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4185,14 +4185,14 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.877778 - 0: The maximum resident set size (KB) = 712804 + 0: The total amount of wall time = 197.125287 + 0: The maximum resident set size (KB) = 712932 Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_restart_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_restart_dyn32_phy32_intel Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4231,28 +4231,28 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.090773 - 0: The maximum resident set size (KB) = 566808 + 0: The total amount of wall time = 278.820353 + 0: The maximum resident set size (KB) = 566568 Test 114 rap_restart_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_restart_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_restart_dyn32_phy32_intel Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.084999 - 0: The maximum resident set size (KB) = 560600 + 0: The total amount of wall time = 100.062851 + 0: The maximum resident set size (KB) = 560508 Test 115 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_control_intel Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4268,40 +4268,40 @@ Checking test 116 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 120.310708 - 0: The maximum resident set size (KB) = 938432 + 0: The total amount of wall time = 124.934563 + 0: The maximum resident set size (KB) = 938552 Test 116 conus13km_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_2threads_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_2threads_intel Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 46.274206 - 0: The maximum resident set size (KB) = 946440 + 0: The total amount of wall time = 45.704974 + 0: The maximum resident set size (KB) = 946188 Test 117 conus13km_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_restart_mismatch_intel Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.969323 - 0: The maximum resident set size (KB) = 884004 + 0: The total amount of wall time = 65.859782 + 0: The maximum resident set size (KB) = 883600 Test 118 conus13km_restart_mismatch_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_control_dyn64_phy32_intel Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4348,42 +4348,42 @@ Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.916311 - 0: The maximum resident set size (KB) = 738012 + 0: The total amount of wall time = 253.966664 + 0: The maximum resident set size (KB) = 737980 Test 119 rap_control_dyn64_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_control_debug_dyn32_phy32_intel Checking test 120 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.445227 - 0: The maximum resident set size (KB) = 879836 + 0: The total amount of wall time = 282.478109 + 0: The maximum resident set size (KB) = 879676 Test 120 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hrrr_control_debug_dyn32_phy32_intel Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.458899 - 0: The maximum resident set size (KB) = 876608 + 0: The total amount of wall time = 275.006940 + 0: The maximum resident set size (KB) = 876548 Test 121 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_debug_intel Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4397,14 +4397,14 @@ Checking test 122 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 867.607585 - 0: The maximum resident set size (KB) = 969248 + 0: The total amount of wall time = 868.387390 + 0: The maximum resident set size (KB) = 969184 Test 122 conus13km_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_debug_qr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_debug_qr_intel Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4418,81 +4418,81 @@ Checking test 123 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 895.195006 - 0: The maximum resident set size (KB) = 639768 + 0: The total amount of wall time = 897.358143 + 0: The maximum resident set size (KB) = 640296 Test 123 conus13km_debug_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_debug_2threads_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_debug_2threads_intel Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 509.855689 - 0: The maximum resident set size (KB) = 976752 + 0: The total amount of wall time = 493.599556 + 0: The maximum resident set size (KB) = 976964 Test 124 conus13km_debug_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/conus13km_radar_tten_debug_intel Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 871.745950 - 0: The maximum resident set size (KB) = 1039404 + 0: The total amount of wall time = 868.304439 + 0: The maximum resident set size (KB) = 1039412 Test 125 conus13km_radar_tten_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/rap_control_dyn64_phy32_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/rap_control_dyn64_phy32_debug_intel Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.302779 - 0: The maximum resident set size (KB) = 904736 + 0: The total amount of wall time = 285.413852 + 0: The maximum resident set size (KB) = 904884 Test 126 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_atm_intel Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 323.354253 - 0: The maximum resident set size (KB) = 511628 + 0: The total amount of wall time = 324.680586 + 0: The maximum resident set size (KB) = 511636 Test 127 hafs_regional_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_atm_thompson_gfdlsf_intel Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 301.333406 - 0: The maximum resident set size (KB) = 861276 + 0: The total amount of wall time = 293.355543 + 0: The maximum resident set size (KB) = 861348 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4501,14 +4501,14 @@ Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 469.860059 - 0: The maximum resident set size (KB) = 541412 + 0: The total amount of wall time = 450.020749 + 0: The maximum resident set size (KB) = 541208 Test 129 hafs_regional_atm_ocn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4517,14 +4517,14 @@ Checking test 130 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 940.273735 - 0: The maximum resident set size (KB) = 572268 + 0: The total amount of wall time = 939.201606 + 0: The maximum resident set size (KB) = 574896 Test 130 hafs_regional_atm_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4535,14 +4535,14 @@ Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1055.520483 - 0: The maximum resident set size (KB) = 597880 + 0: The total amount of wall time = 1050.174162 + 0: The maximum resident set size (KB) = 595792 Test 131 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4564,14 +4564,14 @@ Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 404.334529 - 0: The maximum resident set size (KB) = 299796 + 0: The total amount of wall time = 364.326748 + 0: The maximum resident set size (KB) = 299804 Test 132 hafs_regional_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_telescopic_2nests_atm_intel Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4580,14 +4580,14 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 493.611945 - 0: The maximum resident set size (KB) = 316224 + 0: The total amount of wall time = 447.761150 + 0: The maximum resident set size (KB) = 316764 Test 133 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_global_1nest_atm_intel Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4597,7 +4597,7 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -4605,7 +4605,7 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK @@ -4634,14 +4634,14 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 201.715337 - 0: The maximum resident set size (KB) = 214600 + 0: The total amount of wall time = 193.193962 + 0: The maximum resident set size (KB) = 215776 Test 134 hafs_global_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4668,7 +4668,7 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -4680,25 +4680,25 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK @@ -4706,8 +4706,8 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -4723,14 +4723,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 584.592849 - 0: The maximum resident set size (KB) = 269284 + 0: The total amount of wall time = 530.221465 + 0: The maximum resident set size (KB) = 259408 Test 135 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_specified_moving_1nest_atm_intel Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4739,14 +4739,14 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 283.568191 - 0: The maximum resident set size (KB) = 331976 + 0: The total amount of wall time = 242.475248 + 0: The maximum resident set size (KB) = 337116 Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_storm_following_1nest_atm_intel Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4756,7 +4756,7 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK @@ -4768,14 +4768,14 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 268.371545 - 0: The maximum resident set size (KB) = 330928 + 0: The total amount of wall time = 231.380516 + 0: The maximum resident set size (KB) = 333272 Test 137 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4784,28 +4784,28 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 313.461468 - 0: The maximum resident set size (KB) = 364884 + 0: The total amount of wall time = 281.267397 + 0: The maximum resident set size (KB) = 368716 Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_global_storm_following_1nest_atm_intel Checking test 139 hafs_global_storm_following_1nest_atm_intel 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 - 0: The total amount of wall time = 104.707641 - 0: The maximum resident set size (KB) = 248580 + 0: The total amount of wall time = 99.613330 + 0: The maximum resident set size (KB) = 248624 Test 139 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/gnv1_nested_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/gnv1_nested_intel Checking test 140 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4852,28 +4852,28 @@ Checking test 140 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 330.292866 - 0: The maximum resident set size (KB) = 602948 + 0: The total amount of wall time = 278.812498 + 0: The maximum resident set size (KB) = 603172 Test 140 gnv1_nested_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc ............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 - 0: The total amount of wall time = 809.265815 - 0: The maximum resident set size (KB) = 384676 + 0: The total amount of wall time = 802.836182 + 0: The maximum resident set size (KB) = 382792 Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4884,14 +4884,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 682.054028 - 0: The maximum resident set size (KB) = 408440 + 0: The total amount of wall time = 669.303287 + 0: The maximum resident set size (KB) = 409732 Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_docn_intel Checking test 143 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4899,14 +4899,14 @@ Checking test 143 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 403.420514 - 0: The maximum resident set size (KB) = 540184 + 0: The total amount of wall time = 398.409889 + 0: The maximum resident set size (KB) = 540840 Test 143 hafs_regional_docn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_docn_oisst_intel Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4914,131 +4914,131 @@ Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 401.591316 - 0: The maximum resident set size (KB) = 528052 + 0: The total amount of wall time = 398.610904 + 0: The maximum resident set size (KB) = 525312 Test 144 hafs_regional_docn_oisst_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/hafs_regional_datm_cdeps_intel Checking test 145 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1190.188147 - 0: The maximum resident set size (KB) = 847140 + 0: The total amount of wall time = 1178.837559 + 0: The maximum resident set size (KB) = 847068 Test 145 hafs_regional_datm_cdeps_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_control_cfsr_intel Checking test 146 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.541498 - 0: The maximum resident set size (KB) = 729960 + 0: The total amount of wall time = 167.022109 + 0: The maximum resident set size (KB) = 730024 Test 146 datm_cdeps_control_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_restart_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_restart_cfsr_intel Checking test 147 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.418936 - 0: The maximum resident set size (KB) = 719000 + 0: The total amount of wall time = 96.650276 + 0: The maximum resident set size (KB) = 707304 Test 147 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_control_gefs_intel Checking test 148 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.958741 - 0: The maximum resident set size (KB) = 611836 + 0: The total amount of wall time = 157.014888 + 0: The maximum resident set size (KB) = 614196 Test 148 datm_cdeps_control_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_iau_gefs_intel Checking test 149 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.080023 - 0: The maximum resident set size (KB) = 611644 + 0: The total amount of wall time = 157.169773 + 0: The maximum resident set size (KB) = 614316 Test 149 datm_cdeps_iau_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_stochy_gefs_intel Checking test 150 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.714437 - 0: The maximum resident set size (KB) = 611036 + 0: The total amount of wall time = 157.620204 + 0: The maximum resident set size (KB) = 610008 Test 150 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_ciceC_cfsr_intel Checking test 151 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.867242 + 0: The total amount of wall time = 162.400496 0: The maximum resident set size (KB) = 729912 Test 151 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_bulk_cfsr_intel Checking test 152 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.310470 - 0: The maximum resident set size (KB) = 729760 + 0: The total amount of wall time = 162.578235 + 0: The maximum resident set size (KB) = 718384 Test 152 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_bulk_gefs_intel Checking test 153 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.670859 - 0: The maximum resident set size (KB) = 612508 + 0: The total amount of wall time = 154.684951 + 0: The maximum resident set size (KB) = 610220 Test 153 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_mx025_cfsr_intel Checking test 154 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5047,14 +5047,14 @@ Checking test 154 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 380.578171 - 0: The maximum resident set size (KB) = 514360 + 0: The total amount of wall time = 380.906268 + 0: The maximum resident set size (KB) = 512120 Test 154 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_mx025_gefs_intel Checking test 155 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5063,77 +5063,77 @@ Checking test 155 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 378.408354 - 0: The maximum resident set size (KB) = 494668 + 0: The total amount of wall time = 376.920669 + 0: The maximum resident set size (KB) = 494516 Test 155 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_multiple_files_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_multiple_files_cfsr_intel Checking test 156 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.888902 - 0: The maximum resident set size (KB) = 727864 + 0: The total amount of wall time = 164.768332 + 0: The maximum resident set size (KB) = 729748 Test 156 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_3072x1536_cfsr_intel Checking test 157 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 266.736714 - 0: The maximum resident set size (KB) = 1959872 + 0: The total amount of wall time = 266.413796 + 0: The maximum resident set size (KB) = 1958772 Test 157 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_gfs_intel Checking test 158 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.503857 - 0: The maximum resident set size (KB) = 1959420 + 0: The total amount of wall time = 292.413411 + 0: The maximum resident set size (KB) = 1961988 Test 158 datm_cdeps_gfs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_debug_cfsr_intel Checking test 159 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 369.065561 - 0: The maximum resident set size (KB) = 719076 + 0: The total amount of wall time = 368.942638 + 0: The maximum resident set size (KB) = 719092 Test 159 datm_cdeps_debug_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_control_cfsr_faster_intel Checking test 160 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.466823 - 0: The maximum resident set size (KB) = 729948 + 0: The total amount of wall time = 162.305659 + 0: The maximum resident set size (KB) = 729924 Test 160 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_lnd_gswp3_intel Checking test 161 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5142,14 +5142,14 @@ Checking test 161 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.105056 - 0: The maximum resident set size (KB) = 116732 + 0: The total amount of wall time = 6.299675 + 0: The maximum resident set size (KB) = 116740 Test 161 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/datm_cdeps_lnd_gswp3_rst_intel Checking test 162 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5158,14 +5158,14 @@ Checking test 162 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.761721 - 0: The maximum resident set size (KB) = 114652 + 0: The total amount of wall time = 11.448030 + 0: The maximum resident set size (KB) = 115048 Test 162 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_p8_atmlnd_sbs_intel Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5250,14 +5250,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 202.975072 - 0: The maximum resident set size (KB) = 1466784 + 0: The total amount of wall time = 202.983292 + 0: The maximum resident set size (KB) = 1466996 Test 163 control_p8_atmlnd_sbs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/atmwav_control_noaero_p8_intel Checking test 164 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5300,14 +5300,14 @@ Checking test 164 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 90.802242 - 0: The maximum resident set size (KB) = 1446540 + 0: The total amount of wall time = 90.868589 + 0: The maximum resident set size (KB) = 1446880 Test 164 atmwav_control_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/control_atmwav_intel Checking test 165 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5351,14 +5351,14 @@ Checking test 165 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.794002 - 0: The maximum resident set size (KB) = 470844 + 0: The total amount of wall time = 90.692038 + 0: The maximum resident set size (KB) = 470860 Test 165 control_atmwav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/atmaero_control_p8_intel Checking test 166 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5402,14 +5402,14 @@ Checking test 166 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.222784 - 0: The maximum resident set size (KB) = 1504940 + 0: The total amount of wall time = 232.331254 + 0: The maximum resident set size (KB) = 1494472 Test 166 atmaero_control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/atmaero_control_p8_rad_intel Checking test 167 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5453,14 +5453,14 @@ Checking test 167 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.193079 - 0: The maximum resident set size (KB) = 1514848 + 0: The total amount of wall time = 282.298608 + 0: The maximum resident set size (KB) = 1514696 Test 167 atmaero_control_p8_rad_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/atmaero_control_p8_rad_micro_intel Checking test 168 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5504,14 +5504,14 @@ Checking test 168 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.472545 - 0: The maximum resident set size (KB) = 1524312 + 0: The total amount of wall time = 298.212734 + 0: The maximum resident set size (KB) = 1546772 Test 168 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_atmaq_intel Checking test 169 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5527,14 +5527,14 @@ Checking test 169 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 699.053837 - 0: The maximum resident set size (KB) = 4691164 + 0: The total amount of wall time = 664.642230 + 0: The maximum resident set size (KB) = 4741304 Test 169 regional_atmaq_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_18218/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_6448/regional_atmaq_faster_intel Checking test 170 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5550,12 +5550,12 @@ Checking test 170 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 955.743905 - 0: The maximum resident set size (KB) = 4690704 + 0: The total amount of wall time = 869.498701 + 0: The maximum resident set size (KB) = 4720032 Test 170 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 30 Nov 2023 11:59:32 AM EST -Elapsed time: 01h:35m:42s. Have a nice day! +Sun 03 Dec 2023 03:45:28 PM EST +Elapsed time: 01h:31m:39s. Have a nice day! From 5db63feefc393758964548df401a21bf451726cf Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 4 Dec 2023 08:22:30 -0600 Subject: [PATCH 23/30] add orion RT logs: passed --- tests/logs/RegressionTests_orion.log | 1182 +++++++++++++------------- 1 file changed, 591 insertions(+), 591 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 426d38e0e7..4bfb81cfb2 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Thu Nov 30 12:02:01 CST 2023 +Mon Dec 4 06:53:42 CST 2023 Start Regression test -Testing UFSWM Hash: 2da35b78e361e5e57a993cd4b7a2575942e8abd6 +Testing UFSWM Hash: 29aa3bcd27bc0b1f1633c659fcfd81be157b29df Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atmaero_intel elapsed time 631 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 213 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 645 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 625 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atmaq_intel elapsed time 617 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 291 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 629 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 686 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 679 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 231 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 685 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 282 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 753 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 645 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 673 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 659 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 129 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 212 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 699 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafsw_debug_intel elapsed time 223 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 695 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 739 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 746 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 745 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 752 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 813 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 280 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1012 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 289 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1062 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 833 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 279 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 779 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1091 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 717 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 765 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 790 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 329 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 680 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 751 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 767 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 820 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 319 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1281 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 311 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1115 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 841 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 282 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 793 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 256 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1157 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.812097 - 0: The maximum resident set size (KB) = 3107720 + 0: The total amount of wall time = 296.619889 + 0: The maximum resident set size (KB) = 3169936 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 956.662007 - 0: The maximum resident set size (KB) = 1741728 + 0: The total amount of wall time = 958.531146 + 0: The maximum resident set size (KB) = 1742436 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -208,14 +208,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 655.645643 - 0: The maximum resident set size (KB) = 1122668 + 0: The total amount of wall time = 658.715244 + 0: The maximum resident set size (KB) = 1123800 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_restart_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -268,14 +268,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.494170 - 0: The maximum resident set size (KB) = 1109804 + 0: The total amount of wall time = 479.642995 + 0: The maximum resident set size (KB) = 1110968 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_mpi_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -339,14 +339,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1079.627413 - 0: The maximum resident set size (KB) = 1652432 + 0: The total amount of wall time = 1088.204890 + 0: The maximum resident set size (KB) = 1654352 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -398,14 +398,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1165.049015 - 0: The maximum resident set size (KB) = 1687240 + 0: The total amount of wall time = 1168.318129 + 0: The maximum resident set size (KB) = 1681584 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -470,14 +470,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.524404 - 0: The maximum resident set size (KB) = 3202508 + 0: The total amount of wall time = 325.923118 + 0: The maximum resident set size (KB) = 3199068 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -530,14 +530,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.690088 - 0: The maximum resident set size (KB) = 3252824 + 0: The total amount of wall time = 186.686295 + 0: The maximum resident set size (KB) = 3251336 Test 008 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -602,14 +602,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.646788 - 0: The maximum resident set size (KB) = 3235496 + 0: The total amount of wall time = 326.349800 + 0: The maximum resident set size (KB) = 3234368 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_restart_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -662,14 +662,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 195.711728 - 0: The maximum resident set size (KB) = 3099056 + 0: The total amount of wall time = 193.181873 + 0: The maximum resident set size (KB) = 3097116 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -722,14 +722,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.843247 - 0: The maximum resident set size (KB) = 3544020 + 0: The total amount of wall time = 348.652073 + 0: The maximum resident set size (KB) = 3541696 Test 011 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -782,14 +782,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.745218 - 0: The maximum resident set size (KB) = 3196064 + 0: The total amount of wall time = 327.225339 + 0: The maximum resident set size (KB) = 3185364 Test 012 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_mpi_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -842,14 +842,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.258620 - 0: The maximum resident set size (KB) = 3057492 + 0: The total amount of wall time = 265.619062 + 0: The maximum resident set size (KB) = 3051812 Test 013 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -914,14 +914,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.833589 - 0: The maximum resident set size (KB) = 3200140 + 0: The total amount of wall time = 324.154352 + 0: The maximum resident set size (KB) = 3202280 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -974,14 +974,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 589.465806 - 0: The maximum resident set size (KB) = 3325128 + 0: The total amount of wall time = 580.943569 + 0: The maximum resident set size (KB) = 3327112 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_restart_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1034,14 +1034,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 379.531038 - 0: The maximum resident set size (KB) = 3622104 + 0: The total amount of wall time = 375.519343 + 0: The maximum resident set size (KB) = 3623512 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1089,14 +1089,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 740.119335 - 0: The maximum resident set size (KB) = 4114872 + 0: The total amount of wall time = 737.166138 + 0: The maximum resident set size (KB) = 4105172 Test 017 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_restart_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.626590 - 0: The maximum resident set size (KB) = 4372484 + 0: The total amount of wall time = 481.839222 + 0: The maximum resident set size (KB) = 4365684 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1215,14 +1215,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 247.557719 - 0: The maximum resident set size (KB) = 1734592 + 0: The total amount of wall time = 248.574344 + 0: The maximum resident set size (KB) = 1728532 Test 019 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_nowave_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1284,14 +1284,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 246.531410 - 0: The maximum resident set size (KB) = 1780064 + 0: The total amount of wall time = 245.676337 + 0: The maximum resident set size (KB) = 1775844 Test 020 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_debug_p8_intel Checking test 021 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 021 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 505.649183 - 0: The maximum resident set size (KB) = 3173016 + 0: The total amount of wall time = 501.650407 + 0: The maximum resident set size (KB) = 3232512 Test 021 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_debug_noaero_p8_intel Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1403,14 +1403,14 @@ Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.028254 - 0: The maximum resident set size (KB) = 1756672 + 0: The total amount of wall time = 337.919523 + 0: The maximum resident set size (KB) = 1759196 Test 022 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_noaero_p8_agrid_intel Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1472,14 +1472,14 @@ Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 246.852575 - 0: The maximum resident set size (KB) = 1774152 + 0: The total amount of wall time = 245.503097 + 0: The maximum resident set size (KB) = 1779212 Test 023 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_c48_intel Checking test 024 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 024 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 475.626687 - 0: The maximum resident set size (KB) = 2825880 + 0: The total amount of wall time = 474.577881 + 0: The maximum resident set size (KB) = 2825984 Test 024 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_p8_faster_intel Checking test 025 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1601,14 +1601,14 @@ Checking test 025 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.204292 - 0: The maximum resident set size (KB) = 3200148 + 0: The total amount of wall time = 304.824922 + 0: The maximum resident set size (KB) = 3194004 Test 025 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_control_pdlib_p8_intel Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1672,14 +1672,14 @@ Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 969.372910 - 0: The maximum resident set size (KB) = 1771392 + 0: The total amount of wall time = 975.087726 + 0: The maximum resident set size (KB) = 1769868 Test 026 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_restart_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_restart_pdlib_p8_intel Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1731,14 +1731,14 @@ Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.418852 - 0: The maximum resident set size (KB) = 1156592 + 0: The total amount of wall time = 474.082636 + 0: The maximum resident set size (KB) = 1151036 Test 027 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_mpi_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_mpi_pdlib_p8_intel Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1107.851949 - 0: The maximum resident set size (KB) = 1670256 + 0: The total amount of wall time = 1097.984415 + 0: The maximum resident set size (KB) = 1685808 Test 028 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/cpld_debug_pdlib_p8_intel Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1861,14 +1861,14 @@ Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1426.283509 - 0: The maximum resident set size (KB) = 1719316 + 0: The total amount of wall time = 1427.382624 + 0: The maximum resident set size (KB) = 1725136 Test 029 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_flake_intel Checking test 030 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1879,14 +1879,14 @@ Checking test 030 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.385000 - 0: The maximum resident set size (KB) = 701364 + 0: The total amount of wall time = 196.185362 + 0: The maximum resident set size (KB) = 692584 Test 030 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_CubedSphereGrid_intel Checking test 031 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1913,14 +1913,14 @@ Checking test 031 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.758884 - 0: The maximum resident set size (KB) = 650268 + 0: The total amount of wall time = 134.269923 + 0: The maximum resident set size (KB) = 646880 Test 031 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_CubedSphereGrid_parallel_intel Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,14 +1935,14 @@ Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.324138 - 0: The maximum resident set size (KB) = 648164 + 0: The total amount of wall time = 143.225756 + 0: The maximum resident set size (KB) = 655068 Test 032 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_latlon_intel Checking test 033 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 033 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.063375 - 0: The maximum resident set size (KB) = 645828 + 0: The total amount of wall time = 136.948326 + 0: The maximum resident set size (KB) = 647004 Test 033 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_wrtGauss_netcdf_parallel_intel Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1971,14 +1971,14 @@ Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.182941 - 0: The maximum resident set size (KB) = 648692 + 0: The total amount of wall time = 140.484069 + 0: The maximum resident set size (KB) = 647664 Test 034 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_c48_intel Checking test 035 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2017,14 +2017,14 @@ Checking test 035 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.698128 -0: The maximum resident set size (KB) = 869960 +0: The total amount of wall time = 346.569910 +0: The maximum resident set size (KB) = 870416 Test 035 control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_c192_intel Checking test 036 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 036 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.036360 - 0: The maximum resident set size (KB) = 845120 + 0: The total amount of wall time = 530.911188 + 0: The maximum resident set size (KB) = 858408 Test 036 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_c384_intel Checking test 037 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2053,14 +2053,14 @@ Checking test 037 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 591.978555 - 0: The maximum resident set size (KB) = 1250748 + 0: The total amount of wall time = 599.289676 + 0: The maximum resident set size (KB) = 1245172 Test 037 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_c384gdas_intel Checking test 038 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2072,13 +2072,13 @@ Checking test 038 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 038 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 518.760459 - 0: The maximum resident set size (KB) = 1349264 + 0: The total amount of wall time = 518.088167 + 0: The maximum resident set size (KB) = 1355308 Test 038 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_stochy_intel Checking test 039 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2121,28 +2121,28 @@ Checking test 039 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.789239 - 0: The maximum resident set size (KB) = 651164 + 0: The total amount of wall time = 89.991239 + 0: The maximum resident set size (KB) = 654924 Test 039 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_stochy_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_stochy_restart_intel Checking test 040 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.712988 - 0: The maximum resident set size (KB) = 471168 + 0: The total amount of wall time = 49.539628 + 0: The maximum resident set size (KB) = 468180 Test 040 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_lndp_intel Checking test 041 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2153,14 +2153,14 @@ Checking test 041 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.862166 - 0: The maximum resident set size (KB) = 652932 + 0: The total amount of wall time = 83.334936 + 0: The maximum resident set size (KB) = 651360 Test 041 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_iovr4_intel Checking test 042 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 042 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.639090 - 0: The maximum resident set size (KB) = 646872 + 0: The total amount of wall time = 138.327469 + 0: The maximum resident set size (KB) = 651608 Test 042 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_iovr5_intel Checking test 043 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2197,14 +2197,14 @@ Checking test 043 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.492750 - 0: The maximum resident set size (KB) = 648236 + 0: The total amount of wall time = 138.215349 + 0: The maximum resident set size (KB) = 644308 Test 043 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_intel Checking test 044 control_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2251,14 +2251,14 @@ Checking test 044 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.895126 - 0: The maximum resident set size (KB) = 1587956 + 0: The total amount of wall time = 166.824071 + 0: The maximum resident set size (KB) = 1622624 Test 044 control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2305,14 +2305,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.215670 - 0: The maximum resident set size (KB) = 1628900 + 0: The total amount of wall time = 162.356985 + 0: The maximum resident set size (KB) = 1629556 Test 045 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2351,14 +2351,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 87.364495 - 0: The maximum resident set size (KB) = 885300 + 0: The total amount of wall time = 88.469540 + 0: The maximum resident set size (KB) = 874192 Test 046 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_noqr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2405,14 +2405,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.904736 - 0: The maximum resident set size (KB) = 1616008 + 0: The total amount of wall time = 163.295953 + 0: The maximum resident set size (KB) = 1612416 Test 047 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_restart_noqr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2451,14 +2451,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 87.991057 - 0: The maximum resident set size (KB) = 892320 + 0: The total amount of wall time = 87.517575 + 0: The maximum resident set size (KB) = 935532 Test 048 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2501,14 +2501,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.912710 - 0: The maximum resident set size (KB) = 1601572 + 0: The total amount of wall time = 174.145730 + 0: The maximum resident set size (KB) = 1612976 Test 049 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2551,14 +2551,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.286251 - 0: The maximum resident set size (KB) = 1709488 + 0: The total amount of wall time = 170.561005 + 0: The maximum resident set size (KB) = 1717276 Test 050 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 304.198514 - 0: The maximum resident set size (KB) = 1622548 + 0: The total amount of wall time = 299.588065 + 0: The maximum resident set size (KB) = 1631064 Test 051 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2631,14 +2631,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.551800 - 0: The maximum resident set size (KB) = 1647516 + 0: The total amount of wall time = 223.536943 + 0: The maximum resident set size (KB) = 1690148 Test 052 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2685,14 +2685,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.190455 - 0: The maximum resident set size (KB) = 1626396 + 0: The total amount of wall time = 169.077896 + 0: The maximum resident set size (KB) = 1626580 Test 053 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2739,14 +2739,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.385398 - 0: The maximum resident set size (KB) = 1640344 + 0: The total amount of wall time = 194.911778 + 0: The maximum resident set size (KB) = 1642268 Test 054 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2757,28 +2757,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.661322 - 0: The maximum resident set size (KB) = 854100 + 0: The total amount of wall time = 295.779643 + 0: The maximum resident set size (KB) = 850596 Test 055 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.388376 - 0: The maximum resident set size (KB) = 851904 + 0: The total amount of wall time = 153.764688 + 0: The maximum resident set size (KB) = 851984 Test 056 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2789,14 +2789,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.899170 - 0: The maximum resident set size (KB) = 850092 + 0: The total amount of wall time = 316.830218 + 0: The maximum resident set size (KB) = 850884 Test 057 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2807,14 +2807,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.031507 - 0: The maximum resident set size (KB) = 841284 + 0: The total amount of wall time = 205.533382 + 0: The maximum resident set size (KB) = 843788 Test 058 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2822,28 +2822,28 @@ Checking test 059 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.323420 - 0: The maximum resident set size (KB) = 1361248 + 0: The total amount of wall time = 294.057177 + 0: The maximum resident set size (KB) = 1365560 Test 059 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 296.159140 - 0: The maximum resident set size (KB) = 851796 + 0: The total amount of wall time = 293.224164 + 0: The maximum resident set size (KB) = 851840 Test 060 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_2dwrtdecomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.962331 - 0: The maximum resident set size (KB) = 853092 + 0: The total amount of wall time = 295.212919 + 0: The maximum resident set size (KB) = 852852 Test 061 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2872,14 +2872,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.746760 - 0: The maximum resident set size (KB) = 1918344 + 0: The total amount of wall time = 382.110135 + 0: The maximum resident set size (KB) = 1917808 Test 062 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2926,14 +2926,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.646089 - 0: The maximum resident set size (KB) = 1098280 + 0: The total amount of wall time = 452.948966 + 0: The maximum resident set size (KB) = 1107532 Test 063 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2944,14 +2944,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 270.945031 - 0: The maximum resident set size (KB) = 1305232 + 0: The total amount of wall time = 272.562576 + 0: The maximum resident set size (KB) = 1295940 Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2998,14 +2998,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.213135 - 0: The maximum resident set size (KB) = 1026276 + 0: The total amount of wall time = 479.095228 + 0: The maximum resident set size (KB) = 1032052 Test 065 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3052,14 +3052,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.321029 - 0: The maximum resident set size (KB) = 1176876 + 0: The total amount of wall time = 462.324763 + 0: The maximum resident set size (KB) = 1177292 Test 066 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3098,14 +3098,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.488261 - 0: The maximum resident set size (KB) = 985852 + 0: The total amount of wall time = 234.976911 + 0: The maximum resident set size (KB) = 986372 Test 067 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3152,14 +3152,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.331095 - 0: The maximum resident set size (KB) = 1106020 + 0: The total amount of wall time = 454.419460 + 0: The maximum resident set size (KB) = 1101820 Test 068 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_sfcdiff_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3206,14 +3206,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.512630 - 0: The maximum resident set size (KB) = 1038800 + 0: The total amount of wall time = 476.695453 + 0: The maximum resident set size (KB) = 1030952 Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_sfcdiff_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3252,14 +3252,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.784773 - 0: The maximum resident set size (KB) = 1033512 + 0: The total amount of wall time = 339.558076 + 0: The maximum resident set size (KB) = 1030096 Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3306,14 +3306,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.729270 - 0: The maximum resident set size (KB) = 1037360 + 0: The total amount of wall time = 228.647252 + 0: The maximum resident set size (KB) = 1036588 Test 071 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3360,14 +3360,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.847416 - 0: The maximum resident set size (KB) = 1026948 + 0: The total amount of wall time = 235.797386 + 0: The maximum resident set size (KB) = 1026732 Test 072 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3414,28 +3414,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.459272 - 0: The maximum resident set size (KB) = 1106912 + 0: The total amount of wall time = 191.980316 + 0: The maximum resident set size (KB) = 1111216 Test 073 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 122.715618 - 0: The maximum resident set size (KB) = 921460 + 0: The total amount of wall time = 122.331098 + 0: The maximum resident set size (KB) = 914240 Test 074 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3482,14 +3482,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.776249 - 0: The maximum resident set size (KB) = 1091952 + 0: The total amount of wall time = 445.740074 + 0: The maximum resident set size (KB) = 1098300 Test 075 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 545.015709 - 0: The maximum resident set size (KB) = 1982188 + 0: The total amount of wall time = 539.186370 + 0: The maximum resident set size (KB) = 1988340 Test 076 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3526,14 +3526,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.129562 - 0: The maximum resident set size (KB) = 2037232 + 0: The total amount of wall time = 527.790144 + 0: The maximum resident set size (KB) = 2076964 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3544,14 +3544,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.242670 - 0: The maximum resident set size (KB) = 747856 + 0: The total amount of wall time = 346.926604 + 0: The maximum resident set size (KB) = 745524 Test 078 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3562,14 +3562,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.073928 - 0: The maximum resident set size (KB) = 744008 + 0: The total amount of wall time = 337.587667 + 0: The maximum resident set size (KB) = 748068 Test 079 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3580,26 +3580,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.466109 - 0: The maximum resident set size (KB) = 743088 + 0: The total amount of wall time = 188.520176 + 0: The maximum resident set size (KB) = 736748 Test 080 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.898597 - 0: The maximum resident set size (KB) = 656888 + 0: The total amount of wall time = 116.162227 + 0: The maximum resident set size (KB) = 657348 Test 081 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3646,14 +3646,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.169363 - 0: The maximum resident set size (KB) = 1630176 + 0: The total amount of wall time = 147.248050 + 0: The maximum resident set size (KB) = 1620604 Test 082 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3664,14 +3664,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.893376 - 0: The maximum resident set size (KB) = 845308 + 0: The total amount of wall time = 271.063481 + 0: The maximum resident set size (KB) = 847680 Test 083 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3698,364 +3698,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 152.383689 - 0: The maximum resident set size (KB) = 813608 + 0: The total amount of wall time = 151.220038 + 0: The maximum resident set size (KB) = 810340 Test 084 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.568870 - 0: The maximum resident set size (KB) = 806960 + 0: The total amount of wall time = 155.453474 + 0: The maximum resident set size (KB) = 812140 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.546319 - 0: The maximum resident set size (KB) = 811396 + 0: The total amount of wall time = 170.659787 + 0: The maximum resident set size (KB) = 811648 Test 086 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.466967 - 0: The maximum resident set size (KB) = 816784 + 0: The total amount of wall time = 156.434361 + 0: The maximum resident set size (KB) = 815104 Test 087 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.065007 - 0: The maximum resident set size (KB) = 862664 + 0: The total amount of wall time = 236.314076 + 0: The maximum resident set size (KB) = 859996 Test 088 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.742409 - 0: The maximum resident set size (KB) = 866260 + 0: The total amount of wall time = 236.468769 + 0: The maximum resident set size (KB) = 861328 Test 089 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.747000 - 0: The maximum resident set size (KB) = 824536 + 0: The total amount of wall time = 154.086576 + 0: The maximum resident set size (KB) = 822260 Test 090 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.553324 - 0: The maximum resident set size (KB) = 872344 + 0: The total amount of wall time = 162.001625 + 0: The maximum resident set size (KB) = 865888 Test 091 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.237488 - 0: The maximum resident set size (KB) = 1640960 + 0: The total amount of wall time = 162.954353 + 0: The maximum resident set size (KB) = 1644536 Test 092 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_debug_intel Checking test 093 regional_debug_intel 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 - 0: The total amount of wall time = 1032.564445 - 0: The maximum resident set size (KB) = 838032 + 0: The total amount of wall time = 1026.132804 + 0: The maximum resident set size (KB) = 838348 Test 093 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.043094 - 0: The maximum resident set size (KB) = 1197868 + 0: The total amount of wall time = 278.575818 + 0: The maximum resident set size (KB) = 1205544 Test 094 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.969446 - 0: The maximum resident set size (KB) = 1199220 + 0: The total amount of wall time = 279.840907 + 0: The maximum resident set size (KB) = 1193944 Test 095 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel 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.017857 - 0: The maximum resident set size (KB) = 1200384 + 0: The total amount of wall time = 282.281126 + 0: The maximum resident set size (KB) = 1198960 Test 096 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel 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.558209 - 0: The maximum resident set size (KB) = 1199936 + 0: The total amount of wall time = 278.949813 + 0: The maximum resident set size (KB) = 1200980 Test 097 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_unified_drag_suite_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.100748 - 0: The maximum resident set size (KB) = 1201276 + 0: The total amount of wall time = 287.120057 + 0: The maximum resident set size (KB) = 1209688 Test 098 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.841745 - 0: The maximum resident set size (KB) = 1288412 + 0: The total amount of wall time = 303.470774 + 0: The maximum resident set size (KB) = 1295240 Test 099 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.871112 - 0: The maximum resident set size (KB) = 1199484 + 0: The total amount of wall time = 290.268426 + 0: The maximum resident set size (KB) = 1209036 Test 100 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_unified_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.180516 - 0: The maximum resident set size (KB) = 1209128 + 0: The total amount of wall time = 282.802378 + 0: The maximum resident set size (KB) = 1197824 Test 101 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.417094 - 0: The maximum resident set size (KB) = 1198332 + 0: The total amount of wall time = 282.936212 + 0: The maximum resident set size (KB) = 1194876 Test 102 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.886774 - 0: The maximum resident set size (KB) = 1200972 + 0: The total amount of wall time = 282.841884 + 0: The maximum resident set size (KB) = 1208608 Test 103 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.795974 - 0: The maximum resident set size (KB) = 1200604 + 0: The total amount of wall time = 299.801950 + 0: The maximum resident set size (KB) = 1200248 Test 104 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.377473 - 0: The maximum resident set size (KB) = 1209700 + 0: The total amount of wall time = 280.663921 + 0: The maximum resident set size (KB) = 1203440 Test 105 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.317223 - 0: The maximum resident set size (KB) = 1204996 + 0: The total amount of wall time = 475.264908 + 0: The maximum resident set size (KB) = 1206236 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.378065 - 0: The maximum resident set size (KB) = 1194700 + 0: The total amount of wall time = 279.053680 + 0: The maximum resident set size (KB) = 1193488 Test 107 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.178804 - 0: The maximum resident set size (KB) = 1197948 + 0: The total amount of wall time = 352.092093 + 0: The maximum resident set size (KB) = 1199472 Test 108 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.540299 - 0: The maximum resident set size (KB) = 1199940 + 0: The total amount of wall time = 287.493648 + 0: The maximum resident set size (KB) = 1200076 Test 109 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4096,26 +4096,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.234597 - 0: The maximum resident set size (KB) = 1206616 + 0: The total amount of wall time = 492.862140 + 0: The maximum resident set size (KB) = 1205576 Test 110 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_wam_debug_intel Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.856712 - 0: The maximum resident set size (KB) = 500904 + 0: The total amount of wall time = 286.321766 + 0: The maximum resident set size (KB) = 509092 Test 111 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4126,14 +4126,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 257.469644 - 0: The maximum resident set size (KB) = 1160372 + 0: The total amount of wall time = 251.563290 + 0: The maximum resident set size (KB) = 1159440 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4180,14 +4180,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.601656 - 0: The maximum resident set size (KB) = 1012628 + 0: The total amount of wall time = 375.193586 + 0: The maximum resident set size (KB) = 1047636 Test 113 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.404427 - 0: The maximum resident set size (KB) = 982616 + 0: The total amount of wall time = 196.672184 + 0: The maximum resident set size (KB) = 990520 Test 114 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4288,14 +4288,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.028345 - 0: The maximum resident set size (KB) = 1086060 + 0: The total amount of wall time = 385.274961 + 0: The maximum resident set size (KB) = 1087788 Test 115 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4342,14 +4342,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.085221 - 0: The maximum resident set size (KB) = 965164 + 0: The total amount of wall time = 163.658337 + 0: The maximum resident set size (KB) = 965820 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.413932 - 0: The maximum resident set size (KB) = 923552 + 0: The total amount of wall time = 204.438963 + 0: The maximum resident set size (KB) = 925776 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4442,28 +4442,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.721566 - 0: The maximum resident set size (KB) = 987984 + 0: The total amount of wall time = 283.061668 + 0: The maximum resident set size (KB) = 989668 Test 118 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 103.033547 - 0: The maximum resident set size (KB) = 893924 + 0: The total amount of wall time = 101.491633 + 0: The maximum resident set size (KB) = 889432 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4479,40 +4479,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.391163 - 0: The maximum resident set size (KB) = 1245388 + 0: The total amount of wall time = 114.700639 + 0: The maximum resident set size (KB) = 1249896 Test 120 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.815995 - 0: The maximum resident set size (KB) = 1173372 + 0: The total amount of wall time = 50.146202 + 0: The maximum resident set size (KB) = 1169616 Test 121 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.244238 - 0: The maximum resident set size (KB) = 1186852 + 0: The total amount of wall time = 65.441243 + 0: The maximum resident set size (KB) = 1187856 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4559,42 +4559,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.940326 - 0: The maximum resident set size (KB) = 986176 + 0: The total amount of wall time = 245.905351 + 0: The maximum resident set size (KB) = 990764 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.834302 - 0: The maximum resident set size (KB) = 1080900 + 0: The total amount of wall time = 281.036377 + 0: The maximum resident set size (KB) = 1077636 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.734678 - 0: The maximum resident set size (KB) = 1077768 + 0: The total amount of wall time = 270.875959 + 0: The maximum resident set size (KB) = 1072576 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4608,14 +4608,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 854.648776 - 0: The maximum resident set size (KB) = 1271936 + 0: The total amount of wall time = 838.448550 + 0: The maximum resident set size (KB) = 1275392 Test 126 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_debug_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4629,81 +4629,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 854.908214 - 0: The maximum resident set size (KB) = 918868 + 0: The total amount of wall time = 883.793535 + 0: The maximum resident set size (KB) = 933744 Test 127 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_debug_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 486.018415 - 0: The maximum resident set size (KB) = 1196352 + 0: The total amount of wall time = 491.033579 + 0: The maximum resident set size (KB) = 1202244 Test 128 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 863.276860 - 0: The maximum resident set size (KB) = 1348532 + 0: The total amount of wall time = 865.366216 + 0: The maximum resident set size (KB) = 1341964 Test 129 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/rap_control_dyn64_phy32_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.960900 - 0: The maximum resident set size (KB) = 1129836 + 0: The total amount of wall time = 286.331285 + 0: The maximum resident set size (KB) = 1121944 Test 130 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 320.353603 - 0: The maximum resident set size (KB) = 740560 + 0: The total amount of wall time = 318.290731 + 0: The maximum resident set size (KB) = 747884 Test 131 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 352.275358 - 0: The maximum resident set size (KB) = 1126316 + 0: The total amount of wall time = 348.565203 + 0: The maximum resident set size (KB) = 1124316 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4712,14 +4712,14 @@ Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 402.214574 - 0: The maximum resident set size (KB) = 834372 + 0: The total amount of wall time = 406.442491 + 0: The maximum resident set size (KB) = 836068 Test 133 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4728,14 +4728,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 767.350875 - 0: The maximum resident set size (KB) = 865256 + 0: The total amount of wall time = 756.948170 + 0: The maximum resident set size (KB) = 863124 Test 134 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4746,14 +4746,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 858.079697 - 0: The maximum resident set size (KB) = 882576 + 0: The total amount of wall time = 858.023984 + 0: The maximum resident set size (KB) = 883764 Test 135 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4775,14 +4775,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 350.652127 - 0: The maximum resident set size (KB) = 501932 + 0: The total amount of wall time = 348.702688 + 0: The maximum resident set size (KB) = 499772 Test 136 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4791,14 +4791,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 432.309903 - 0: The maximum resident set size (KB) = 518868 + 0: The total amount of wall time = 435.116815 + 0: The maximum resident set size (KB) = 527796 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4808,19 +4808,19 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 172.495982 - 0: The maximum resident set size (KB) = 373112 + 0: The total amount of wall time = 172.317337 + 0: The maximum resident set size (KB) = 379836 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4882,18 +4882,18 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK @@ -4911,8 +4911,8 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK @@ -4934,14 +4934,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 465.543404 - 0: The maximum resident set size (KB) = 470976 + 0: The total amount of wall time = 453.749896 + 0: The maximum resident set size (KB) = 484400 Test 139 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4950,14 +4950,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 234.215570 - 0: The maximum resident set size (KB) = 535184 + 0: The total amount of wall time = 232.838425 + 0: The maximum resident set size (KB) = 538888 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4967,7 +4967,7 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 220.897166 - 0: The maximum resident set size (KB) = 532144 + 0: The total amount of wall time = 220.495958 + 0: The maximum resident set size (KB) = 534488 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4995,28 +4995,28 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 302.696794 - 0: The maximum resident set size (KB) = 590744 + 0: The total amount of wall time = 305.412636 + 0: The maximum resident set size (KB) = 597368 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 - 0: The total amount of wall time = 72.240100 - 0: The maximum resident set size (KB) = 408888 + 0: The total amount of wall time = 75.305358 + 0: The maximum resident set size (KB) = 410192 Test 143 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/gnv1_nested_intel Checking test 144 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5027,18 +5027,18 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5063,28 +5063,28 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 260.942575 - 0: The maximum resident set size (KB) = 808728 + 0: The total amount of wall time = 253.890182 + 0: The maximum resident set size (KB) = 806480 -Test 144 gnv1_nested_intel PASS +Test 144 gnv1_nested_intel PASS Tries: 2 baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc ............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 - 0: The total amount of wall time = 780.679933 - 0: The maximum resident set size (KB) = 568992 + 0: The total amount of wall time = 761.760923 + 0: The maximum resident set size (KB) = 577512 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5095,14 +5095,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 541.401928 - 0: The maximum resident set size (KB) = 673516 + 0: The total amount of wall time = 548.053104 + 0: The maximum resident set size (KB) = 653924 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5110,14 +5110,14 @@ Checking test 147 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.361900 - 0: The maximum resident set size (KB) = 827760 + 0: The total amount of wall time = 371.603661 + 0: The maximum resident set size (KB) = 824560 Test 147 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5125,131 +5125,131 @@ Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.508905 - 0: The maximum resident set size (KB) = 811228 + 0: The total amount of wall time = 372.136130 + 0: The maximum resident set size (KB) = 810740 Test 148 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/hafs_regional_datm_cdeps_intel Checking test 149 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 945.664208 - 0: The maximum resident set size (KB) = 1150544 + 0: The total amount of wall time = 965.721510 + 0: The maximum resident set size (KB) = 1157076 Test 149 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_control_cfsr_intel Checking test 150 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.635358 - 0: The maximum resident set size (KB) = 1091096 + 0: The total amount of wall time = 147.999522 + 0: The maximum resident set size (KB) = 1116568 Test 150 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_restart_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_restart_cfsr_intel Checking test 151 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.359206 - 0: The maximum resident set size (KB) = 1078736 + 0: The total amount of wall time = 89.811138 + 0: The maximum resident set size (KB) = 1088064 Test 151 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_control_gefs_intel Checking test 152 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.073881 - 0: The maximum resident set size (KB) = 1001040 + 0: The total amount of wall time = 145.072430 + 0: The maximum resident set size (KB) = 1008404 Test 152 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_iau_gefs_intel Checking test 153 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.267583 - 0: The maximum resident set size (KB) = 975912 + 0: The total amount of wall time = 150.872928 + 0: The maximum resident set size (KB) = 1010696 Test 153 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_stochy_gefs_intel Checking test 154 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.998071 - 0: The maximum resident set size (KB) = 1008820 + 0: The total amount of wall time = 149.503317 + 0: The maximum resident set size (KB) = 1006008 Test 154 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_ciceC_cfsr_intel Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.625938 - 0: The maximum resident set size (KB) = 1113144 + 0: The total amount of wall time = 151.058798 + 0: The maximum resident set size (KB) = 1127752 Test 155 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_bulk_cfsr_intel Checking test 156 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.230163 - 0: The maximum resident set size (KB) = 1125168 + 0: The total amount of wall time = 150.648696 + 0: The maximum resident set size (KB) = 1125604 Test 156 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_bulk_gefs_intel Checking test 157 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.303155 - 0: The maximum resident set size (KB) = 1002180 + 0: The total amount of wall time = 141.570171 + 0: The maximum resident set size (KB) = 1020268 Test 157 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_mx025_cfsr_intel Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5258,14 +5258,14 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 464.480784 - 0: The maximum resident set size (KB) = 1011092 + 0: The total amount of wall time = 429.680654 + 0: The maximum resident set size (KB) = 1040312 Test 158 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_mx025_gefs_intel Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5274,77 +5274,77 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 427.255881 - 0: The maximum resident set size (KB) = 1030116 + 0: The total amount of wall time = 432.429080 + 0: The maximum resident set size (KB) = 1016996 Test 159 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_multiple_files_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_multiple_files_cfsr_intel Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.864107 - 0: The maximum resident set size (KB) = 1088988 + 0: The total amount of wall time = 147.091728 + 0: The maximum resident set size (KB) = 1128832 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_3072x1536_cfsr_intel Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 213.430342 - 0: The maximum resident set size (KB) = 2455768 + 0: The total amount of wall time = 201.380050 + 0: The maximum resident set size (KB) = 2420020 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_gfs_intel Checking test 162 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 209.098503 - 0: The maximum resident set size (KB) = 2421376 + 0: The total amount of wall time = 207.169668 + 0: The maximum resident set size (KB) = 2405664 Test 162 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_debug_cfsr_intel Checking test 163 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 361.905357 - 0: The maximum resident set size (KB) = 1046656 + 0: The total amount of wall time = 354.541696 + 0: The maximum resident set size (KB) = 1045532 Test 163 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.450848 - 0: The maximum resident set size (KB) = 1119968 + 0: The total amount of wall time = 147.995758 + 0: The maximum resident set size (KB) = 1118880 Test 164 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5353,14 +5353,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.400017 - 0: The maximum resident set size (KB) = 258648 + 0: The total amount of wall time = 6.380509 + 0: The maximum resident set size (KB) = 256660 Test 165 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/datm_cdeps_lnd_gswp3_rst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/datm_cdeps_lnd_gswp3_rst_intel Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5369,14 +5369,14 @@ Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.993552 - 0: The maximum resident set size (KB) = 254548 + 0: The total amount of wall time = 9.856387 + 0: The maximum resident set size (KB) = 256636 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5461,14 +5461,14 @@ Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 194.667321 - 0: The maximum resident set size (KB) = 1633364 + 0: The total amount of wall time = 193.744627 + 0: The maximum resident set size (KB) = 1637480 Test 167 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5511,14 +5511,14 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 91.849893 - 0: The maximum resident set size (KB) = 1665572 + 0: The total amount of wall time = 91.401965 + 0: The maximum resident set size (KB) = 1659004 Test 168 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5562,14 +5562,14 @@ Checking test 169 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.949959 - 0: The maximum resident set size (KB) = 672240 + 0: The total amount of wall time = 88.892923 + 0: The maximum resident set size (KB) = 675268 Test 169 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5613,14 +5613,14 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.313994 - 0: The maximum resident set size (KB) = 3020264 + 0: The total amount of wall time = 224.582004 + 0: The maximum resident set size (KB) = 3010288 Test 170 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5664,14 +5664,14 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.649213 - 0: The maximum resident set size (KB) = 3076712 + 0: The total amount of wall time = 281.039027 + 0: The maximum resident set size (KB) = 3087912 Test 171 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5715,14 +5715,14 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.472586 - 0: The maximum resident set size (KB) = 3094532 + 0: The total amount of wall time = 290.984201 + 0: The maximum resident set size (KB) = 3100616 Test 172 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_atmaq_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5733,19 +5733,19 @@ Checking test 173 regional_atmaq_intel results .... 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 ............ALT CHECK......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 = 659.847629 - 0: The maximum resident set size (KB) = 5267140 + 0: The total amount of wall time = 647.028117 + 0: The maximum resident set size (KB) = 5271028 Test 173 regional_atmaq_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_atmaq_debug_intel Checking test 174 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5759,14 +5759,14 @@ Checking test 174 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1263.872402 - 0: The maximum resident set size (KB) = 4593672 + 0: The total amount of wall time = 1223.586616 + 0: The maximum resident set size (KB) = 4597392 Test 174 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_168385/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85582/regional_atmaq_faster_intel Checking test 175 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5782,12 +5782,12 @@ Checking test 175 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 799.163312 - 0: The maximum resident set size (KB) = 5269408 + 0: The total amount of wall time = 798.933304 + 0: The maximum resident set size (KB) = 5276076 Test 175 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 30 13:26:30 CST 2023 -Elapsed time: 01h:24m:30s. Have a nice day! +Mon Dec 4 08:17:36 CST 2023 +Elapsed time: 01h:23m:55s. Have a nice day! From b0eb93b611b53c7deae6b99610fa7c48a6b7e464 Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Mon, 4 Dec 2023 06:41:33 -0800 Subject: [PATCH 24/30] Load nccmp in c5 lua file --- modulefiles/ufs_gaea-c5.intel.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modulefiles/ufs_gaea-c5.intel.lua b/modulefiles/ufs_gaea-c5.intel.lua index c0c2f78def..2d1c18b022 100644 --- a/modulefiles/ufs_gaea-c5.intel.lua +++ b/modulefiles/ufs_gaea-c5.intel.lua @@ -23,6 +23,7 @@ stack_python_ver=os.getenv("stack_python_ver") or "3.10.8" load(pathJoin("stack-python", stack_python_ver)) load("ufs_common") +load("nccmp/1.9.0.1") unload("darshan-runtime") unload("cray-libsci") From f9adb7f739d570495d4c9536b5580b53f70bb75f Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 4 Dec 2023 15:47:02 +0000 Subject: [PATCH 25/30] add control_p8 gnu logs: passed --- tests/logs/OpnReqTests_control_p8_hera.log | 48 +++++++++++----------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 1ac6f5d2ae..3274b5515a 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Oct 26 18:02:41 UTC 2023 +Mon Dec 4 14:30:51 UTC 2023 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.324722 - 0: The maximum resident set size (KB) = 1287376 + 0: The total amount of wall time = 281.662628 + 0: The maximum resident set size (KB) = 1302480 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 950.779343 - 0: The maximum resident set size (KB) = 1271732 + 0: The total amount of wall time = 909.259942 + 0: The maximum resident set size (KB) = 1289656 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.372254 - 0: The maximum resident set size (KB) = 1270624 + 0: The total amount of wall time = 249.181311 + 0: The maximum resident set size (KB) = 1281316 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.586894 - 0: The maximum resident set size (KB) = 1271300 + 0: The total amount of wall time = 250.654118 + 0: The maximum resident set size (KB) = 1279188 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.166194 - 0: The maximum resident set size (KB) = 1271756 + 0: The total amount of wall time = 252.596116 + 0: The maximum resident set size (KB) = 1279660 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.273140 - 0: The maximum resident set size (KB) = 1271588 + 0: The total amount of wall time = 250.001003 + 0: The maximum resident set size (KB) = 1280812 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_110447/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_45674/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 269.636095 - 0: The maximum resident set size (KB) = 1271256 + 0: The total amount of wall time = 250.574652 + 0: The maximum resident set size (KB) = 1283668 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Oct 26 19:33:06 UTC 2023 -Elapsed time: 01h:30m:25s. Have a nice day! +Mon Dec 4 15:39:13 UTC 2023 +Elapsed time: 01h:08m:22s. Have a nice day! From 92914bf08f523482d2033cbb19b1a8f64601f7e7 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 4 Dec 2023 15:47:39 +0000 Subject: [PATCH 26/30] add regional_control gnu logs: passed --- .../OpnReqTests_regional_control_hera.log | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 09cffced51..a32e9a4b5d 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Oct 26 19:59:56 UTC 2023 +Mon Dec 4 13:01:50 UTC 2023 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_144173/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_20393/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 545.127195 - 0: The maximum resident set size (KB) = 806200 + 0: The total amount of wall time = 527.808815 + 0: The maximum resident set size (KB) = 587160 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_144173/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_20393/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 617.079757 - 0: The maximum resident set size (KB) = 806524 + 0: The total amount of wall time = 519.287964 + 0: The maximum resident set size (KB) = 588100 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_144173/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_20393/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 549.675272 - 0: The maximum resident set size (KB) = 806640 + 0: The total amount of wall time = 508.172814 + 0: The maximum resident set size (KB) = 585988 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Oct 26 20:41:41 UTC 2023 -Elapsed time: 00h:41m:46s. Have a nice day! +Mon Dec 4 13:37:44 UTC 2023 +Elapsed time: 00h:35m:55s. Have a nice day! From 5d2ca22ece2b4bfcbfec0d75469bb315b6797870 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 4 Dec 2023 15:48:30 +0000 Subject: [PATCH 27/30] add cpld_control_nowave_noaero_p8 gnu logs: passed --- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 9ad3001e44..b35abcb835 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Thu Oct 26 21:28:55 UTC 2023 +Mon Dec 4 13:38:49 UTC 2023 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_65977/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221447/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1290.914205 - 0: The maximum resident set size (KB) = 1405340 + 0: The total amount of wall time = 1255.630972 + 0: The maximum resident set size (KB) = 1411232 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_65977/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221447/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 404.189648 - 0: The maximum resident set size (KB) = 1396372 + 0: The total amount of wall time = 388.631231 + 0: The maximum resident set size (KB) = 1406476 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_65977/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221447/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 419.610070 - 0: The maximum resident set size (KB) = 1397268 + 0: The total amount of wall time = 387.397993 + 0: The maximum resident set size (KB) = 1400340 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Oct 26 22:19:38 UTC 2023 -Elapsed time: 00h:50m:44s. Have a nice day! +Mon Dec 4 14:28:11 UTC 2023 +Elapsed time: 00h:49m:22s. Have a nice day! From 91a6d91ef76aed1dfbe6d84590f96f4086543c77 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 4 Dec 2023 09:53:57 -0600 Subject: [PATCH 28/30] add hercules RT logs: passed --- tests/logs/RegressionTests_hercules.log | 1814 ++++++++++++----------- 1 file changed, 912 insertions(+), 902 deletions(-) diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 44cc75a814..4764836638 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Thu Nov 30 12:15:37 CST 2023 +Mon Dec 4 06:52:22 CST 2023 Start Regression test -Testing UFSWM Hash: 2da35b78e361e5e57a993cd4b7a2575942e8abd6 +Testing UFSWM Hash: 29aa3bcd27bc0b1f1633c659fcfd81be157b29df Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 55611866d585b64d2dd615fa06da3e229a30d07a FV3 (remotes/origin/feature/refconv) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atm_debug_dyn32_intel 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_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 420 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 414 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 454 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 478 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 403 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 534 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 378 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 392 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 519 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 549 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 169 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 308 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 168 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 571 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 163 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 588 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 595 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 501 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 146 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 451 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 479 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 227 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 657 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 197 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 198 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 286 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 999 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 700 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1083 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 424 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 275 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 691 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 496 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 155 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 353 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 214 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 211 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 384 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 516 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 441 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 387 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 532 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 375 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 556 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 590 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 118 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 557 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 177 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 587 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 586 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 525 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 435 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 468 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 249 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 622 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 525 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 183 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 594 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 928 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 678 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 267 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 982 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 562 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 243 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 581 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 647 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 123 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.164171 - 0: The maximum resident set size (KB) = 1904204 + 0: The total amount of wall time = 443.168411 + 0: The maximum resident set size (KB) = 1896124 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 783.810469 - 0: The maximum resident set size (KB) = 1769680 + 0: The total amount of wall time = 808.473525 + 0: The maximum resident set size (KB) = 1761836 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -222,14 +222,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.662728 - 0: The maximum resident set size (KB) = 1187716 + 0: The total amount of wall time = 528.688294 + 0: The maximum resident set size (KB) = 1177956 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_restart_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -282,14 +282,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.507650 - 0: The maximum resident set size (KB) = 1157912 + 0: The total amount of wall time = 380.012583 + 0: The maximum resident set size (KB) = 1168004 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_mpi_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,14 +353,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 879.550205 - 0: The maximum resident set size (KB) = 1676800 + 0: The total amount of wall time = 914.576494 + 0: The maximum resident set size (KB) = 1687892 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -412,14 +412,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1018.540514 - 0: The maximum resident set size (KB) = 1738144 + 0: The total amount of wall time = 1024.890250 + 0: The maximum resident set size (KB) = 1726944 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.618574 - 0: The maximum resident set size (KB) = 2049128 + 0: The total amount of wall time = 456.912383 + 0: The maximum resident set size (KB) = 2039524 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -544,14 +544,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 244.206214 - 0: The maximum resident set size (KB) = 1931920 + 0: The total amount of wall time = 241.634993 + 0: The maximum resident set size (KB) = 1919836 Test 008 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.697569 - 0: The maximum resident set size (KB) = 1980108 + 0: The total amount of wall time = 450.315832 + 0: The maximum resident set size (KB) = 1981696 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_restart_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 248.940358 - 0: The maximum resident set size (KB) = 1559752 + 0: The total amount of wall time = 249.395091 + 0: The maximum resident set size (KB) = 1563160 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -736,14 +736,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 513.208045 - 0: The maximum resident set size (KB) = 2479384 + 0: The total amount of wall time = 521.395066 + 0: The maximum resident set size (KB) = 2469652 Test 011 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 490.986952 - 0: The maximum resident set size (KB) = 2052244 + 0: The total amount of wall time = 448.580708 + 0: The maximum resident set size (KB) = 2037848 Test 012 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_mpi_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -856,14 +856,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.489411 - 0: The maximum resident set size (KB) = 1863480 + 0: The total amount of wall time = 381.290667 + 0: The maximum resident set size (KB) = 1877828 Test 013 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 440.044408 - 0: The maximum resident set size (KB) = 2042952 + 0: The total amount of wall time = 450.095225 + 0: The maximum resident set size (KB) = 2048556 -Test 014 cpld_control_ciceC_p8_intel PASS Tries: 2 +Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -988,14 +988,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 937.719616 - 0: The maximum resident set size (KB) = 2793460 + 0: The total amount of wall time = 913.653633 + 0: The maximum resident set size (KB) = 2798484 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_restart_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1048,14 +1048,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 331.191520 - 0: The maximum resident set size (KB) = 2826588 + 0: The total amount of wall time = 331.493751 + 0: The maximum resident set size (KB) = 2822280 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1103,14 +1103,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 515.221454 - 0: The maximum resident set size (KB) = 3613804 + 0: The total amount of wall time = 518.918558 + 0: The maximum resident set size (KB) = 3619248 Test 017 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_restart_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1158,14 +1158,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 298.159210 - 0: The maximum resident set size (KB) = 3516608 + 0: The total amount of wall time = 291.763573 + 0: The maximum resident set size (KB) = 3518648 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1229,14 +1229,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.480996 - 0: The maximum resident set size (KB) = 1775260 + 0: The total amount of wall time = 413.901987 + 0: The maximum resident set size (KB) = 1773612 Test 019 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_nowave_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 230.564106 - 0: The maximum resident set size (KB) = 1817356 + 0: The total amount of wall time = 238.463538 + 0: The maximum resident set size (KB) = 1824176 Test 020 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_debug_p8_intel Checking test 021 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1358,14 +1358,14 @@ Checking test 021 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.015459 - 0: The maximum resident set size (KB) = 2020844 + 0: The total amount of wall time = 390.719643 + 0: The maximum resident set size (KB) = 2036040 Test 021 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_debug_noaero_p8_intel Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 273.541682 - 0: The maximum resident set size (KB) = 1790824 + 0: The total amount of wall time = 264.819626 + 0: The maximum resident set size (KB) = 1787360 Test 022 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_noaero_p8_agrid_intel Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1486,14 +1486,14 @@ Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 227.299511 - 0: The maximum resident set size (KB) = 1816136 + 0: The total amount of wall time = 230.483108 + 0: The maximum resident set size (KB) = 1817564 Test 023 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_c48_intel Checking test 024 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1543,14 +1543,14 @@ Checking test 024 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 430.274618 - 0: The maximum resident set size (KB) = 2835896 + 0: The total amount of wall time = 431.297681 + 0: The maximum resident set size (KB) = 2833252 Test 024 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_p8_faster_intel Checking test 025 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 025 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 422.495761 - 0: The maximum resident set size (KB) = 2060884 + 0: The total amount of wall time = 420.911576 + 0: The maximum resident set size (KB) = 2071576 Test 025 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_pdlib_p8_intel Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1686,14 +1686,14 @@ Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 859.760794 - 0: The maximum resident set size (KB) = 1805816 + 0: The total amount of wall time = 813.392720 + 0: The maximum resident set size (KB) = 1810500 Test 026 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_restart_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_restart_pdlib_p8_intel Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 389.562835 - 0: The maximum resident set size (KB) = 1246388 + 0: The total amount of wall time = 409.090008 + 0: The maximum resident set size (KB) = 1254940 Test 027 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_mpi_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_mpi_pdlib_p8_intel Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1816,14 +1816,14 @@ Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 912.119292 - 0: The maximum resident set size (KB) = 1738836 + 0: The total amount of wall time = 903.075933 + 0: The maximum resident set size (KB) = 1730724 Test 028 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_debug_pdlib_p8_intel Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1875,14 +1875,14 @@ Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1293.060904 - 0: The maximum resident set size (KB) = 1772444 + 0: The total amount of wall time = 1304.937642 + 0: The maximum resident set size (KB) = 1776384 Test 029 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_flake_intel Checking test 030 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 030 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 159.857900 - 0: The maximum resident set size (KB) = 713052 + 0: The total amount of wall time = 170.291269 + 0: The maximum resident set size (KB) = 713612 Test 030 control_flake_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_CubedSphereGrid_intel Checking test 031 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1927,14 +1927,14 @@ Checking test 031 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 112.732514 - 0: The maximum resident set size (KB) = 662752 + 0: The total amount of wall time = 112.527073 + 0: The maximum resident set size (KB) = 667384 Test 031 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_CubedSphereGrid_parallel_intel Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1949,14 +1949,14 @@ Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1048.170282 - 0: The maximum resident set size (KB) = 658144 + 0: The total amount of wall time = 971.056272 + 0: The maximum resident set size (KB) = 667936 Test 032 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_latlon_intel Checking test 033 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1967,21 +1967,32 @@ Checking test 033 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.012268 - 0: The maximum resident set size (KB) = 668724 + 0: The total amount of wall time = 168.620633 + 0: The maximum resident set size (KB) = 667880 Test 033 control_latlon_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_wrtGauss_netcdf_parallel_intel Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......ERROR + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 144.357864 + 0: The maximum resident set size (KB) = 657500 + +Test 034 control_wrtGauss_netcdf_parallel_intel PASS Tries: 2 + baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_c48_intel Checking test 035 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2020,14 +2031,14 @@ Checking test 035 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.674538 -0: The maximum resident set size (KB) = 855880 +0: The total amount of wall time = 339.016715 +0: The maximum resident set size (KB) = 859784 Test 035 control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_c192_intel Checking test 036 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2038,14 +2049,14 @@ Checking test 036 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.412645 - 0: The maximum resident set size (KB) = 978400 + 0: The total amount of wall time = 453.795991 + 0: The maximum resident set size (KB) = 990560 Test 036 control_c192_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_c384_intel Checking test 037 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2056,14 +2067,14 @@ Checking test 037 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 475.166139 - 0: The maximum resident set size (KB) = 1426904 + 0: The total amount of wall time = 480.887890 + 0: The maximum resident set size (KB) = 1437268 Test 037 control_c384_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_c384gdas_intel Checking test 038 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2075,30 +2086,30 @@ Checking test 038 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK @@ -2106,14 +2117,14 @@ Checking test 038 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.315475 - 0: The maximum resident set size (KB) = 1518364 + 0: The total amount of wall time = 436.565630 + 0: The maximum resident set size (KB) = 1520108 Test 038 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_stochy_intel Checking test 039 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2124,28 +2135,28 @@ Checking test 039 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.841647 - 0: The maximum resident set size (KB) = 666080 + 0: The total amount of wall time = 88.779242 + 0: The maximum resident set size (KB) = 666324 Test 039 control_stochy_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_stochy_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_stochy_restart_intel Checking test 040 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 43.404545 - 0: The maximum resident set size (KB) = 504444 + 0: The total amount of wall time = 44.109528 + 0: The maximum resident set size (KB) = 512928 Test 040 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_lndp_intel Checking test 041 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2156,14 +2167,14 @@ Checking test 041 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 70.455639 - 0: The maximum resident set size (KB) = 666520 + 0: The total amount of wall time = 72.143236 + 0: The maximum resident set size (KB) = 667728 Test 041 control_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_iovr4_intel Checking test 042 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2178,14 +2189,14 @@ Checking test 042 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 115.981903 - 0: The maximum resident set size (KB) = 662748 + 0: The total amount of wall time = 120.231952 + 0: The maximum resident set size (KB) = 661332 Test 042 control_iovr4_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_iovr5_intel Checking test 043 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2211,14 @@ Checking test 043 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 115.699940 - 0: The maximum resident set size (KB) = 664040 + 0: The total amount of wall time = 119.211833 + 0: The maximum resident set size (KB) = 665092 Test 043 control_iovr5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_intel Checking test 044 control_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2254,14 +2265,14 @@ Checking test 044 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.670671 - 0: The maximum resident set size (KB) = 1641824 + 0: The total amount of wall time = 194.671583 + 0: The maximum resident set size (KB) = 1632324 Test 044 control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2308,14 +2319,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.856068 - 0: The maximum resident set size (KB) = 1640436 + 0: The total amount of wall time = 157.354767 + 0: The maximum resident set size (KB) = 1634376 Test 045 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2354,14 +2365,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.505522 - 0: The maximum resident set size (KB) = 909824 + 0: The total amount of wall time = 78.286910 + 0: The maximum resident set size (KB) = 903808 Test 046 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_noqr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2408,14 +2419,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 138.364139 - 0: The maximum resident set size (KB) = 1626276 + 0: The total amount of wall time = 144.959297 + 0: The maximum resident set size (KB) = 1621628 Test 047 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_restart_noqr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2454,14 +2465,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 73.207400 - 0: The maximum resident set size (KB) = 989148 + 0: The total amount of wall time = 127.957383 + 0: The maximum resident set size (KB) = 983208 Test 048 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2504,14 +2515,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 145.490836 - 0: The maximum resident set size (KB) = 1616564 + 0: The total amount of wall time = 144.464510 + 0: The maximum resident set size (KB) = 1618748 Test 049 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2554,14 +2565,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 132.026996 - 0: The maximum resident set size (KB) = 1720752 + 0: The total amount of wall time = 134.481081 + 0: The maximum resident set size (KB) = 1725148 Test 050 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2580,14 +2591,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 267.560998 - 0: The maximum resident set size (KB) = 1650772 + 0: The total amount of wall time = 255.944638 + 0: The maximum resident set size (KB) = 1641072 Test 051 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2634,14 +2645,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.951712 - 0: The maximum resident set size (KB) = 1710664 + 0: The total amount of wall time = 195.745051 + 0: The maximum resident set size (KB) = 1705544 Test 052 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2699,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.354020 - 0: The maximum resident set size (KB) = 1637240 + 0: The total amount of wall time = 143.230618 + 0: The maximum resident set size (KB) = 1631464 Test 053 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2742,14 +2753,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.315932 - 0: The maximum resident set size (KB) = 1647372 + 0: The total amount of wall time = 167.843283 + 0: The maximum resident set size (KB) = 1657824 Test 054 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2760,28 +2771,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 262.633193 - 0: The maximum resident set size (KB) = 955860 + 0: The total amount of wall time = 261.058591 + 0: The maximum resident set size (KB) = 949760 Test 055 regional_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 142.184303 - 0: The maximum resident set size (KB) = 931928 + 0: The total amount of wall time = 141.874807 + 0: The maximum resident set size (KB) = 929612 Test 056 regional_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2792,14 +2803,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 278.857973 - 0: The maximum resident set size (KB) = 945536 + 0: The total amount of wall time = 279.156467 + 0: The maximum resident set size (KB) = 948404 Test 057 regional_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2810,14 +2821,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 164.808123 - 0: The maximum resident set size (KB) = 909056 + 0: The total amount of wall time = 160.266345 + 0: The maximum resident set size (KB) = 913980 Test 058 regional_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2825,28 +2836,21 @@ Checking test 059 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 251.799223 - 0: The maximum resident set size (KB) = 1495872 + 0: The total amount of wall time = 255.935755 + 0: The maximum resident set size (KB) = 1493292 Test 059 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 264.301546 - 0: The maximum resident set size (KB) = 956000 - -Test 060 regional_netcdf_parallel_intel PASS Tries: 2 - + Comparing phyf000.nc ............ALT CHECK......ERROR baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_2dwrtdecomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2857,14 +2861,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.202427 - 0: The maximum resident set size (KB) = 951264 + 0: The total amount of wall time = 267.501945 + 0: The maximum resident set size (KB) = 955792 Test 061 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2875,14 +2879,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.498203 - 0: The maximum resident set size (KB) = 2094428 + 0: The total amount of wall time = 322.653934 + 0: The maximum resident set size (KB) = 2102160 Test 062 regional_wofs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2929,14 +2933,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.221048 - 0: The maximum resident set size (KB) = 1196244 + 0: The total amount of wall time = 378.696366 + 0: The maximum resident set size (KB) = 1196236 Test 063 rap_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2947,14 +2951,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 241.479508 - 0: The maximum resident set size (KB) = 1455052 + 0: The total amount of wall time = 246.135138 + 0: The maximum resident set size (KB) = 1402600 Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3001,14 +3005,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.380713 - 0: The maximum resident set size (KB) = 1129564 + 0: The total amount of wall time = 400.004986 + 0: The maximum resident set size (KB) = 1122036 Test 065 rap_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3055,14 +3059,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.648312 - 0: The maximum resident set size (KB) = 1363252 + 0: The total amount of wall time = 359.435249 + 0: The maximum resident set size (KB) = 1364568 Test 066 rap_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3101,14 +3105,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.565803 - 0: The maximum resident set size (KB) = 1018132 + 0: The total amount of wall time = 200.432109 + 0: The maximum resident set size (KB) = 1011564 Test 067 rap_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3155,14 +3159,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.197173 - 0: The maximum resident set size (KB) = 1185672 + 0: The total amount of wall time = 381.971107 + 0: The maximum resident set size (KB) = 1195176 Test 068 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3209,14 +3213,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 407.101391 - 0: The maximum resident set size (KB) = 1162412 + 0: The total amount of wall time = 399.197749 + 0: The maximum resident set size (KB) = 1135712 Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3255,14 +3259,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.193298 - 0: The maximum resident set size (KB) = 1110720 + 0: The total amount of wall time = 294.105084 + 0: The maximum resident set size (KB) = 1094112 Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3309,14 +3313,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.741129 - 0: The maximum resident set size (KB) = 1079536 + 0: The total amount of wall time = 192.396474 + 0: The maximum resident set size (KB) = 1082744 Test 071 hrrr_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3363,14 +3367,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.705101 - 0: The maximum resident set size (KB) = 1049544 + 0: The total amount of wall time = 197.504597 + 0: The maximum resident set size (KB) = 1035484 Test 072 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3417,28 +3421,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.395087 - 0: The maximum resident set size (KB) = 1128352 + 0: The total amount of wall time = 181.020998 + 0: The maximum resident set size (KB) = 1116288 Test 073 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.162237 - 0: The maximum resident set size (KB) = 939572 + 0: The total amount of wall time = 106.884868 + 0: The maximum resident set size (KB) = 932636 Test 074 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3485,14 +3489,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.044277 - 0: The maximum resident set size (KB) = 1192684 + 0: The total amount of wall time = 364.447277 + 0: The maximum resident set size (KB) = 1209736 Test 075 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3507,14 +3511,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 452.757249 - 0: The maximum resident set size (KB) = 2003756 + 0: The total amount of wall time = 449.752625 + 0: The maximum resident set size (KB) = 2004152 Test 076 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3529,14 +3533,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 441.424411 - 0: The maximum resident set size (KB) = 2191848 + 0: The total amount of wall time = 437.137219 + 0: The maximum resident set size (KB) = 2168836 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3547,14 +3551,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 301.574728 - 0: The maximum resident set size (KB) = 827028 + 0: The total amount of wall time = 296.614517 + 0: The maximum resident set size (KB) = 812756 Test 078 control_csawmg_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3565,14 +3569,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 298.668920 - 0: The maximum resident set size (KB) = 844168 + 0: The total amount of wall time = 297.833618 + 0: The maximum resident set size (KB) = 838728 Test 079 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3583,26 +3587,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 161.550022 - 0: The maximum resident set size (KB) = 813236 + 0: The total amount of wall time = 162.005903 + 0: The maximum resident set size (KB) = 816340 Test 080 control_ras_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 103.000198 - 0: The maximum resident set size (KB) = 775968 + 0: The total amount of wall time = 101.303196 + 0: The maximum resident set size (KB) = 791924 Test 081 control_wam_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3649,14 +3653,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.956777 - 0: The maximum resident set size (KB) = 1645976 + 0: The total amount of wall time = 131.014986 + 0: The maximum resident set size (KB) = 1640736 Test 082 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3667,14 +3671,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 236.152191 - 0: The maximum resident set size (KB) = 955620 + 0: The total amount of wall time = 236.109910 + 0: The maximum resident set size (KB) = 953680 Test 083 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3701,357 +3705,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 123.704439 - 0: The maximum resident set size (KB) = 821876 + 0: The total amount of wall time = 124.751795 + 0: The maximum resident set size (KB) = 829652 Test 084 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......ERROR + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 143.254080 + 0: The maximum resident set size (KB) = 822208 + +Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS + baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.025669 - 0: The maximum resident set size (KB) = 827884 + 0: The total amount of wall time = 139.828054 + 0: The maximum resident set size (KB) = 826296 Test 086 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.800486 - 0: The maximum resident set size (KB) = 831720 + 0: The total amount of wall time = 126.404983 + 0: The maximum resident set size (KB) = 823944 Test 087 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.249048 - 0: The maximum resident set size (KB) = 873900 + 0: The total amount of wall time = 192.487855 + 0: The maximum resident set size (KB) = 866800 Test 088 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.935116 - 0: The maximum resident set size (KB) = 868952 + 0: The total amount of wall time = 189.065320 + 0: The maximum resident set size (KB) = 873140 Test 089 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.416213 - 0: The maximum resident set size (KB) = 840528 + 0: The total amount of wall time = 126.227773 + 0: The maximum resident set size (KB) = 832572 Test 090 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.880696 - 0: The maximum resident set size (KB) = 879540 + 0: The total amount of wall time = 129.631897 + 0: The maximum resident set size (KB) = 880300 Test 091 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 134.249819 - 0: The maximum resident set size (KB) = 1651008 + 0: The total amount of wall time = 132.837671 + 0: The maximum resident set size (KB) = 1659760 Test 092 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_debug_intel Checking test 093 regional_debug_intel 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 - 0: The total amount of wall time = 848.370363 - 0: The maximum resident set size (KB) = 890300 + 0: The total amount of wall time = 828.601626 + 0: The maximum resident set size (KB) = 890032 Test 093 regional_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.524320 - 0: The maximum resident set size (KB) = 1218940 + 0: The total amount of wall time = 228.031694 + 0: The maximum resident set size (KB) = 1213528 Test 094 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.631096 - 0: The maximum resident set size (KB) = 1214080 + 0: The total amount of wall time = 230.055783 + 0: The maximum resident set size (KB) = 1215248 Test 095 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel 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.642431 - 0: The maximum resident set size (KB) = 1214212 + 0: The total amount of wall time = 230.483843 + 0: The maximum resident set size (KB) = 1210408 Test 096 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 328.104526 - 0: The maximum resident set size (KB) = 1216064 + 0: The total amount of wall time = 231.093473 + 0: The maximum resident set size (KB) = 1212796 Test 097 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_unified_drag_suite_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.723595 - 0: The maximum resident set size (KB) = 1220896 + 0: The total amount of wall time = 233.558136 + 0: The maximum resident set size (KB) = 1224468 Test 098 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.465679 - 0: The maximum resident set size (KB) = 1296948 + 0: The total amount of wall time = 239.363996 + 0: The maximum resident set size (KB) = 1294548 Test 099 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.926430 - 0: The maximum resident set size (KB) = 1210096 + 0: The total amount of wall time = 235.055042 + 0: The maximum resident set size (KB) = 1216220 Test 100 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_unified_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.876398 - 0: The maximum resident set size (KB) = 1215420 + 0: The total amount of wall time = 236.398434 + 0: The maximum resident set size (KB) = 1210744 Test 101 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.047578 - 0: The maximum resident set size (KB) = 1214144 + 0: The total amount of wall time = 233.656753 + 0: The maximum resident set size (KB) = 1214276 Test 102 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.916030 - 0: The maximum resident set size (KB) = 1215880 + 0: The total amount of wall time = 229.258761 + 0: The maximum resident set size (KB) = 1225868 Test 103 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.309106 - 0: The maximum resident set size (KB) = 1219444 + 0: The total amount of wall time = 225.515796 + 0: The maximum resident set size (KB) = 1221804 Test 104 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.592484 - 0: The maximum resident set size (KB) = 1214328 + 0: The total amount of wall time = 229.631077 + 0: The maximum resident set size (KB) = 1217440 Test 105 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.535875 - 0: The maximum resident set size (KB) = 1208080 + 0: The total amount of wall time = 380.553140 + 0: The maximum resident set size (KB) = 1213576 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.007679 - 0: The maximum resident set size (KB) = 1211532 + 0: The total amount of wall time = 226.738180 + 0: The maximum resident set size (KB) = 1213932 Test 107 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.739114 - 0: The maximum resident set size (KB) = 1220460 + 0: The total amount of wall time = 300.781751 + 0: The maximum resident set size (KB) = 1210064 Test 108 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.981533 - 0: The maximum resident set size (KB) = 1217420 + 0: The total amount of wall time = 231.204939 + 0: The maximum resident set size (KB) = 1214008 Test 109 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4092,14 +4103,14 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.406479 - 0: The maximum resident set size (KB) = 1221020 + 0: The total amount of wall time = 400.701016 + 0: The maximum resident set size (KB) = 1225188 Test 110 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4110,14 +4121,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 184.356141 - 0: The maximum resident set size (KB) = 1267520 + 0: The total amount of wall time = 186.741928 + 0: The maximum resident set size (KB) = 1304184 Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_dyn32_phy32_intel Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4164,14 +4175,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.922108 - 0: The maximum resident set size (KB) = 1148112 + 0: The total amount of wall time = 316.286669 + 0: The maximum resident set size (KB) = 1140324 Test 112 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_dyn32_phy32_intel Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4218,14 +4229,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.893137 - 0: The maximum resident set size (KB) = 1008080 + 0: The total amount of wall time = 165.427454 + 0: The maximum resident set size (KB) = 1026216 Test 113 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4272,14 +4283,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.796844 - 0: The maximum resident set size (KB) = 1253516 + 0: The total amount of wall time = 309.143116 + 0: The maximum resident set size (KB) = 1274924 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4326,14 +4337,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.232577 - 0: The maximum resident set size (KB) = 1016404 + 0: The total amount of wall time = 156.775704 + 0: The maximum resident set size (KB) = 1048584 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4380,14 +4391,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.656950 - 0: The maximum resident set size (KB) = 982584 + 0: The total amount of wall time = 174.851101 + 0: The maximum resident set size (KB) = 970012 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4426,28 +4437,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.926343 - 0: The maximum resident set size (KB) = 1032308 + 0: The total amount of wall time = 241.573140 + 0: The maximum resident set size (KB) = 1069388 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.545312 - 0: The maximum resident set size (KB) = 907772 + 0: The total amount of wall time = 89.768348 + 0: The maximum resident set size (KB) = 923180 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_control_intel Checking test 119 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4463,40 +4474,40 @@ Checking test 119 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 92.492358 - 0: The maximum resident set size (KB) = 1359712 + 0: The total amount of wall time = 93.991159 + 0: The maximum resident set size (KB) = 1349776 Test 119 conus13km_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_2threads_intel Checking test 120 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 37.362867 - 0: The maximum resident set size (KB) = 1256204 + 0: The total amount of wall time = 37.010969 + 0: The maximum resident set size (KB) = 1252128 Test 120 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_restart_mismatch_intel Checking test 121 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 54.051377 - 0: The maximum resident set size (KB) = 1230640 + 0: The total amount of wall time = 55.044913 + 0: The maximum resident set size (KB) = 1233084 Test 121 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4543,42 +4554,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.433689 - 0: The maximum resident set size (KB) = 1075860 + 0: The total amount of wall time = 213.163062 + 0: The maximum resident set size (KB) = 1109104 Test 122 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_debug_dyn32_phy32_intel Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.277873 - 0: The maximum resident set size (KB) = 1090988 + 0: The total amount of wall time = 228.925091 + 0: The maximum resident set size (KB) = 1100380 Test 123 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_debug_dyn32_phy32_intel Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.096076 - 0: The maximum resident set size (KB) = 1088956 + 0: The total amount of wall time = 223.910953 + 0: The maximum resident set size (KB) = 1084940 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_debug_intel Checking test 125 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4592,14 +4603,14 @@ Checking test 125 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 966.504829 - 0: The maximum resident set size (KB) = 1407888 + 0: The total amount of wall time = 711.384981 + 0: The maximum resident set size (KB) = 1390840 Test 125 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_debug_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_debug_qr_intel Checking test 126 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4613,81 +4624,81 @@ Checking test 126 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 714.006709 - 0: The maximum resident set size (KB) = 989876 + 0: The total amount of wall time = 716.848958 + 0: The maximum resident set size (KB) = 997008 Test 126 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_debug_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 395.972511 - 0: The maximum resident set size (KB) = 1280508 + 0: The total amount of wall time = 393.333639 + 0: The maximum resident set size (KB) = 1283592 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 701.715009 - 0: The maximum resident set size (KB) = 1463844 + 0: The total amount of wall time = 705.861897 + 0: The maximum resident set size (KB) = 1460596 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_dyn64_phy32_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.675693 - 0: The maximum resident set size (KB) = 1162200 + 0: The total amount of wall time = 230.748547 + 0: The maximum resident set size (KB) = 1159028 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 279.297325 - 0: The maximum resident set size (KB) = 866592 + 0: The total amount of wall time = 280.404561 + 0: The maximum resident set size (KB) = 873232 Test 130 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 259.102741 - 0: The maximum resident set size (KB) = 1276580 + 0: The total amount of wall time = 264.803281 + 0: The maximum resident set size (KB) = 1269704 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4696,14 +4707,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 388.189792 - 0: The maximum resident set size (KB) = 937748 + 0: The total amount of wall time = 390.431274 + 0: The maximum resident set size (KB) = 948560 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4712,14 +4723,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 853.580674 - 0: The maximum resident set size (KB) = 980560 + 0: The total amount of wall time = 853.327532 + 0: The maximum resident set size (KB) = 963568 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4730,14 +4741,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 902.759426 - 0: The maximum resident set size (KB) = 1000980 + 0: The total amount of wall time = 910.922772 + 0: The maximum resident set size (KB) = 1009916 Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4759,14 +4770,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 297.003850 - 0: The maximum resident set size (KB) = 602332 + 0: The total amount of wall time = 298.579455 + 0: The maximum resident set size (KB) = 596180 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_telescopic_2nests_atm_intel Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4775,14 +4786,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 374.098776 - 0: The maximum resident set size (KB) = 611232 + 0: The total amount of wall time = 371.721133 + 0: The maximum resident set size (KB) = 607988 Test 136 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_global_1nest_atm_intel Checking test 137 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4792,51 +4803,51 @@ Checking test 137 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 150.291969 - 0: The maximum resident set size (KB) = 431552 + 0: The total amount of wall time = 163.149964 + 0: The maximum resident set size (KB) = 434360 Test 137 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4863,7 +4874,7 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK @@ -4873,9 +4884,9 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK @@ -4884,20 +4895,20 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK @@ -4918,18 +4929,30 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 411.220394 - 0: The maximum resident set size (KB) = 538644 + 0: The total amount of wall time = 413.818570 + 0: The maximum resident set size (KB) = 535580 Test 138 hafs_global_multiple_4nests_atm_intel PASS -Test 139 hafs_regional_specified_moving_1nest_atm_intel FAIL -Test 139 hafs_regional_specified_moving_1nest_atm_intel FAIL +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_specified_moving_1nest_atm_intel +Checking test 139 hafs_regional_specified_moving_1nest_atm_intel 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 HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + + 0: The total amount of wall time = 199.561227 + 0: The maximum resident set size (KB) = 615020 + +Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_storm_following_1nest_atm_intel Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4951,14 +4974,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 190.264478 - 0: The maximum resident set size (KB) = 614420 + 0: The total amount of wall time = 190.834782 + 0: The maximum resident set size (KB) = 614436 Test 140 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4967,28 +4990,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 260.000876 - 0: The maximum resident set size (KB) = 669168 + 0: The total amount of wall time = 253.884698 + 0: The maximum resident set size (KB) = 665676 Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_global_storm_following_1nest_atm_intel Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 - 0: The total amount of wall time = 83.431235 - 0: The maximum resident set size (KB) = 447860 + 0: The total amount of wall time = 72.144686 + 0: The maximum resident set size (KB) = 450196 Test 142 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/gnv1_nested_intel Checking test 143 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4999,23 +5022,23 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK @@ -5023,7 +5046,7 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK @@ -5035,28 +5058,28 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 222.614898 - 0: The maximum resident set size (KB) = 898316 + 0: The total amount of wall time = 223.286185 + 0: The maximum resident set size (KB) = 896864 Test 143 gnv1_nested_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel 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 - 0: The total amount of wall time = 643.299660 - 0: The maximum resident set size (KB) = 624984 + 0: The total amount of wall time = 649.700734 + 0: The maximum resident set size (KB) = 624736 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5067,14 +5090,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 940.955041 - 0: The maximum resident set size (KB) = 739372 + 0: The total amount of wall time = 975.695313 + 0: The maximum resident set size (KB) = 760196 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_docn_intel Checking test 146 hafs_regional_docn_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5082,14 +5105,14 @@ Checking test 146 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 332.384135 - 0: The maximum resident set size (KB) = 935068 + 0: The total amount of wall time = 330.611764 + 0: The maximum resident set size (KB) = 961080 Test 146 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_docn_oisst_intel Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -5097,131 +5120,131 @@ Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 336.000843 - 0: The maximum resident set size (KB) = 915180 + 0: The total amount of wall time = 331.279436 + 0: The maximum resident set size (KB) = 908192 Test 147 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hafs_regional_datm_cdeps_intel Checking test 148 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 979.740021 - 0: The maximum resident set size (KB) = 1338216 + 0: The total amount of wall time = 973.563665 + 0: The maximum resident set size (KB) = 1251864 Test 148 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_control_cfsr_intel Checking test 149 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.343140 - 0: The maximum resident set size (KB) = 1142016 + 0: The total amount of wall time = 124.524455 + 0: The maximum resident set size (KB) = 1142764 Test 149 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_restart_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_restart_cfsr_intel Checking test 150 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 73.659654 - 0: The maximum resident set size (KB) = 1088752 + 0: The total amount of wall time = 73.360360 + 0: The maximum resident set size (KB) = 1091748 Test 150 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_control_gefs_intel Checking test 151 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.468712 - 0: The maximum resident set size (KB) = 998008 + 0: The total amount of wall time = 117.784950 + 0: The maximum resident set size (KB) = 999984 Test 151 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_iau_gefs_intel Checking test 152 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.880455 - 0: The maximum resident set size (KB) = 1002440 + 0: The total amount of wall time = 118.852173 + 0: The maximum resident set size (KB) = 1012344 Test 152 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_stochy_gefs_intel Checking test 153 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.129807 - 0: The maximum resident set size (KB) = 1001476 + 0: The total amount of wall time = 119.955133 + 0: The maximum resident set size (KB) = 986820 Test 153 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_ciceC_cfsr_intel Checking test 154 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.815072 - 0: The maximum resident set size (KB) = 1126200 + 0: The total amount of wall time = 123.385592 + 0: The maximum resident set size (KB) = 1127624 Test 154 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_bulk_cfsr_intel Checking test 155 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.953497 - 0: The maximum resident set size (KB) = 1130360 + 0: The total amount of wall time = 124.131979 + 0: The maximum resident set size (KB) = 1115108 Test 155 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_bulk_gefs_intel Checking test 156 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.994707 - 0: The maximum resident set size (KB) = 997540 + 0: The total amount of wall time = 117.441596 + 0: The maximum resident set size (KB) = 1002320 Test 156 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_mx025_cfsr_intel Checking test 157 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5230,14 +5253,14 @@ Checking test 157 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 316.249929 - 0: The maximum resident set size (KB) = 1133056 + 0: The total amount of wall time = 312.624300 + 0: The maximum resident set size (KB) = 1128968 Test 157 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_mx025_gefs_intel Checking test 158 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5246,77 +5269,77 @@ Checking test 158 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 310.120358 - 0: The maximum resident set size (KB) = 1135492 + 0: The total amount of wall time = 313.043925 + 0: The maximum resident set size (KB) = 1143628 Test 158 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_multiple_files_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_multiple_files_cfsr_intel Checking test 159 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.259463 - 0: The maximum resident set size (KB) = 1140352 + 0: The total amount of wall time = 121.166397 + 0: The maximum resident set size (KB) = 1140976 Test 159 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_3072x1536_cfsr_intel Checking test 160 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.855775 - 0: The maximum resident set size (KB) = 2415612 + 0: The total amount of wall time = 175.485906 + 0: The maximum resident set size (KB) = 2416876 Test 160 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_gfs_intel Checking test 161 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 175.904778 - 0: The maximum resident set size (KB) = 2406092 + 0: The total amount of wall time = 176.415268 + 0: The maximum resident set size (KB) = 2416904 Test 161 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_debug_cfsr_intel Checking test 162 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 295.128342 - 0: The maximum resident set size (KB) = 1057532 + 0: The total amount of wall time = 294.264292 + 0: The maximum resident set size (KB) = 1064024 Test 162 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_control_cfsr_faster_intel Checking test 163 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.709846 - 0: The maximum resident set size (KB) = 1136108 + 0: The total amount of wall time = 121.431540 + 0: The maximum resident set size (KB) = 1138440 Test 163 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_lnd_gswp3_intel Checking test 164 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5325,14 +5348,14 @@ Checking test 164 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.351165 - 0: The maximum resident set size (KB) = 334304 + 0: The total amount of wall time = 6.386545 + 0: The maximum resident set size (KB) = 336568 Test 164 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_lnd_gswp3_rst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_lnd_gswp3_rst_intel Checking test 165 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5341,14 +5364,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 8.499304 - 0: The maximum resident set size (KB) = 341672 + 0: The total amount of wall time = 8.922676 + 0: The maximum resident set size (KB) = 337856 Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_atmlnd_sbs_intel Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5433,14 +5456,14 @@ Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 171.656687 - 0: The maximum resident set size (KB) = 1681672 + 0: The total amount of wall time = 169.952750 + 0: The maximum resident set size (KB) = 1691572 Test 166 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/atmwav_control_noaero_p8_intel Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5483,14 +5506,14 @@ Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 79.734341 - 0: The maximum resident set size (KB) = 1687276 + 0: The total amount of wall time = 79.797281 + 0: The maximum resident set size (KB) = 1699208 Test 167 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_atmwav_intel Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5534,14 +5557,14 @@ Checking test 168 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 76.000976 - 0: The maximum resident set size (KB) = 708696 + 0: The total amount of wall time = 77.845939 + 0: The maximum resident set size (KB) = 691308 Test 168 control_atmwav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/atmaero_control_p8_intel Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5585,14 +5608,14 @@ Checking test 169 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.107238 - 0: The maximum resident set size (KB) = 1771744 + 0: The total amount of wall time = 198.112059 + 0: The maximum resident set size (KB) = 1779040 Test 169 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/atmaero_control_p8_rad_intel Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5636,14 +5659,14 @@ Checking test 170 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.355905 - 0: The maximum resident set size (KB) = 1811960 + 0: The total amount of wall time = 253.055884 + 0: The maximum resident set size (KB) = 1800032 Test 170 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/atmaero_control_p8_rad_micro_intel Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5687,14 +5710,14 @@ Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.176042 - 0: The maximum resident set size (KB) = 1820432 + 0: The total amount of wall time = 258.980025 + 0: The maximum resident set size (KB) = 1825020 Test 171 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_atmaq_intel Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5704,20 +5727,20 @@ Checking test 172 regional_atmaq_intel results .... Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......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 = 600.647589 - 0: The maximum resident set size (KB) = 5123904 + 0: The total amount of wall time = 582.666336 + 0: The maximum resident set size (KB) = 5116956 Test 172 regional_atmaq_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_atmaq_debug_intel Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5725,20 +5748,20 @@ Checking test 173 regional_atmaq_debug_intel results .... Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 989.163467 - 0: The maximum resident set size (KB) = 4552968 + 0: The total amount of wall time = 974.575125 + 0: The maximum resident set size (KB) = 4601884 Test 173 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5754,14 +5777,14 @@ Checking test 174 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 724.538731 - 0: The maximum resident set size (KB) = 5148372 + 0: The total amount of wall time = 705.302805 + 0: The maximum resident set size (KB) = 5127656 Test 174 regional_atmaq_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_c48_gnu Checking test 175 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5800,14 +5823,14 @@ Checking test 175 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 579.748247 -0: The maximum resident set size (KB) = 861596 +0: The total amount of wall time = 561.735466 +0: The maximum resident set size (KB) = 865416 Test 175 control_c48_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_stochy_gnu Checking test 176 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5818,14 +5841,14 @@ Checking test 176 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.927285 - 0: The maximum resident set size (KB) = 729880 + 0: The total amount of wall time = 127.466206 + 0: The maximum resident set size (KB) = 726556 Test 176 control_stochy_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_ras_gnu Checking test 177 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5836,14 +5859,14 @@ Checking test 177 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 214.091648 - 0: The maximum resident set size (KB) = 733400 + 0: The total amount of wall time = 214.536212 + 0: The maximum resident set size (KB) = 728116 Test 177 control_ras_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_gnu Checking test 178 control_p8_gnu results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -5890,14 +5913,14 @@ Checking test 178 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.237188 - 0: The maximum resident set size (KB) = 1510712 + 0: The total amount of wall time = 202.087079 + 0: The maximum resident set size (KB) = 1509760 Test 178 control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_p8_ugwpv1_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_p8_ugwpv1_gnu Checking test 179 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5944,14 +5967,14 @@ Checking test 179 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.778100 - 0: The maximum resident set size (KB) = 1511776 + 0: The total amount of wall time = 196.556405 + 0: The maximum resident set size (KB) = 1514752 Test 179 control_p8_ugwpv1_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_flake_gnu Checking test 180 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5962,14 +5985,14 @@ Checking test 180 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.898830 - 0: The maximum resident set size (KB) = 807660 + 0: The total amount of wall time = 253.020505 + 0: The maximum resident set size (KB) = 810280 Test 180 control_flake_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_gnu Checking test 181 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6016,14 +6039,14 @@ Checking test 181 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.901534 - 0: The maximum resident set size (KB) = 1089356 + 0: The total amount of wall time = 445.855592 + 0: The maximum resident set size (KB) = 1089020 Test 181 rap_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_decomp_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_decomp_gnu Checking test 182 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6070,14 +6093,14 @@ Checking test 182 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.032285 - 0: The maximum resident set size (KB) = 1091036 + 0: The total amount of wall time = 450.782521 + 0: The maximum resident set size (KB) = 1089280 Test 182 rap_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_2threads_gnu Checking test 183 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6124,14 +6147,14 @@ Checking test 183 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 416.255808 - 0: The maximum resident set size (KB) = 1125864 + 0: The total amount of wall time = 416.579085 + 0: The maximum resident set size (KB) = 1128812 Test 183 rap_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_restart_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_restart_gnu Checking test 184 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6170,14 +6193,14 @@ Checking test 184 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.516842 - 0: The maximum resident set size (KB) = 881220 + 0: The total amount of wall time = 233.112989 + 0: The maximum resident set size (KB) = 881036 Test 184 rap_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_gnu Checking test 185 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6224,14 +6247,14 @@ Checking test 185 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.266045 - 0: The maximum resident set size (KB) = 1091836 + 0: The total amount of wall time = 448.389033 + 0: The maximum resident set size (KB) = 1089992 Test 185 rap_sfcdiff_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_decomp_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_decomp_gnu Checking test 186 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6278,14 +6301,14 @@ Checking test 186 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.805171 - 0: The maximum resident set size (KB) = 1086848 + 0: The total amount of wall time = 461.674530 + 0: The maximum resident set size (KB) = 1096128 Test 186 rap_sfcdiff_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_sfcdiff_restart_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_sfcdiff_restart_gnu Checking test 187 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6324,14 +6347,14 @@ Checking test 187 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.266901 + 0: The total amount of wall time = 336.247462 0: The maximum resident set size (KB) = 880996 Test 187 rap_sfcdiff_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_gnu Checking test 188 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6378,14 +6401,14 @@ Checking test 188 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.288605 - 0: The maximum resident set size (KB) = 1079904 + 0: The total amount of wall time = 232.264896 + 0: The maximum resident set size (KB) = 1076932 Test 188 hrrr_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_noqr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_noqr_gnu Checking test 189 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6432,14 +6455,14 @@ Checking test 189 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.223796 - 0: The maximum resident set size (KB) = 1140656 + 0: The total amount of wall time = 233.393820 + 0: The maximum resident set size (KB) = 1140696 Test 189 hrrr_control_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_2threads_gnu Checking test 190 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6486,14 +6509,14 @@ Checking test 190 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.978794 - 0: The maximum resident set size (KB) = 1030332 + 0: The total amount of wall time = 206.320282 + 0: The maximum resident set size (KB) = 1038392 Test 190 hrrr_control_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_decomp_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_decomp_gnu Checking test 191 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6540,42 +6563,42 @@ Checking test 191 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.231622 - 0: The maximum resident set size (KB) = 1076752 + 0: The total amount of wall time = 234.357084 + 0: The maximum resident set size (KB) = 1084404 Test 191 hrrr_control_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_restart_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_restart_gnu Checking test 192 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.482026 - 0: The maximum resident set size (KB) = 880504 + 0: The total amount of wall time = 117.229202 + 0: The maximum resident set size (KB) = 881900 Test 192 hrrr_control_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_restart_noqr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_restart_noqr_gnu Checking test 193 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.412906 - 0: The maximum resident set size (KB) = 935916 + 0: The total amount of wall time = 116.944659 + 0: The maximum resident set size (KB) = 934436 Test 193 hrrr_control_restart_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rrfs_v1beta_gnu Checking test 194 rrfs_v1beta_gnu results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -6622,224 +6645,224 @@ Checking test 194 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.394289 - 0: The maximum resident set size (KB) = 1085888 + 0: The total amount of wall time = 444.411551 + 0: The maximum resident set size (KB) = 1085316 Test 194 rrfs_v1beta_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_diag_debug_gnu Checking test 195 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 64.268631 - 0: The maximum resident set size (KB) = 767016 + 0: The total amount of wall time = 65.616221 + 0: The maximum resident set size (KB) = 769060 Test 195 control_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/regional_debug_gnu Checking test 196 regional_debug_gnu 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 - 0: The total amount of wall time = 368.183888 - 0: The maximum resident set size (KB) = 944968 + 0: The total amount of wall time = 366.009507 + 0: The maximum resident set size (KB) = 945104 Test 196 regional_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_debug_gnu Checking test 197 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.770478 - 0: The maximum resident set size (KB) = 1098952 + 0: The total amount of wall time = 111.006489 + 0: The maximum resident set size (KB) = 1099912 Test 197 rap_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_debug_gnu Checking test 198 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.701747 - 0: The maximum resident set size (KB) = 1090192 + 0: The total amount of wall time = 107.320991 + 0: The maximum resident set size (KB) = 1088992 Test 198 hrrr_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_gf_debug_gnu Checking test 199 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.966765 - 0: The maximum resident set size (KB) = 1094344 + 0: The total amount of wall time = 108.818659 + 0: The maximum resident set size (KB) = 1093768 Test 199 hrrr_gf_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_c3_debug_gnu Checking test 200 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.901859 - 0: The maximum resident set size (KB) = 1095796 + 0: The total amount of wall time = 108.880349 + 0: The maximum resident set size (KB) = 1096348 Test 200 hrrr_c3_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_diag_debug_gnu Checking test 201 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.184645 - 0: The maximum resident set size (KB) = 1269196 + 0: The total amount of wall time = 116.197057 + 0: The maximum resident set size (KB) = 1268984 Test 201 rap_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 202 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.226346 - 0: The maximum resident set size (KB) = 1097600 + 0: The total amount of wall time = 178.182314 + 0: The maximum resident set size (KB) = 1095604 Test 202 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_progcld_thompson_debug_gnu Checking test 203 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.323061 - 0: The maximum resident set size (KB) = 1097304 + 0: The total amount of wall time = 110.611266 + 0: The maximum resident set size (KB) = 1097108 Test 203 rap_progcld_thompson_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rrfs_v1beta_debug_gnu Checking test 204 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.917690 - 0: The maximum resident set size (KB) = 1091048 + 0: The total amount of wall time = 109.267998 + 0: The maximum resident set size (KB) = 1091656 Test 204 rrfs_v1beta_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_ras_debug_gnu Checking test 205 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 62.118626 - 0: The maximum resident set size (KB) = 721228 + 0: The total amount of wall time = 63.433026 + 0: The maximum resident set size (KB) = 721684 Test 205 control_ras_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_stochy_debug_gnu Checking test 206 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.890753 - 0: The maximum resident set size (KB) = 722204 + 0: The total amount of wall time = 68.664131 + 0: The maximum resident set size (KB) = 717276 Test 206 control_stochy_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/control_debug_p8_gnu Checking test 207 control_debug_p8_gnu 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 = 69.416700 - 0: The maximum resident set size (KB) = 1506684 + 0: The total amount of wall time = 67.512935 + 0: The maximum resident set size (KB) = 1502968 Test 207 control_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_flake_debug_gnu Checking test 208 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.716068 - 0: The maximum resident set size (KB) = 1097784 + 0: The total amount of wall time = 114.274498 + 0: The maximum resident set size (KB) = 1098488 Test 208 rap_flake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_clm_lake_debug_gnu Checking test 209 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.934914 - 0: The maximum resident set size (KB) = 1103400 + 0: The total amount of wall time = 123.306115 + 0: The maximum resident set size (KB) = 1099140 Test 209 rap_clm_lake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/gnv1_c96_no_nest_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/gnv1_c96_no_nest_debug_gnu Checking test 210 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6880,14 +6903,14 @@ Checking test 210 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.445877 - 0: The maximum resident set size (KB) = 1106112 + 0: The total amount of wall time = 191.069398 + 0: The maximum resident set size (KB) = 1100536 Test 210 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_dyn32_phy32_gnu Checking test 211 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6934,14 +6957,14 @@ Checking test 211 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.981626 - 0: The maximum resident set size (KB) = 967720 + 0: The total amount of wall time = 425.896556 + 0: The maximum resident set size (KB) = 962996 Test 211 rap_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_dyn32_phy32_gnu Checking test 212 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6988,14 +7011,14 @@ Checking test 212 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.667529 - 0: The maximum resident set size (KB) = 953584 + 0: The total amount of wall time = 222.016155 + 0: The maximum resident set size (KB) = 954960 Test 212 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_2threads_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_2threads_dyn32_phy32_gnu Checking test 213 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7042,14 +7065,14 @@ Checking test 213 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.780431 - 0: The maximum resident set size (KB) = 969748 + 0: The total amount of wall time = 402.037851 + 0: The maximum resident set size (KB) = 994944 Test 213 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_2threads_dyn32_phy32_gnu Checking test 214 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7096,14 +7119,14 @@ Checking test 214 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.372718 - 0: The maximum resident set size (KB) = 874172 + 0: The total amount of wall time = 202.719634 + 0: The maximum resident set size (KB) = 896544 Test 214 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_decomp_dyn32_phy32_gnu Checking test 215 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7150,14 +7173,14 @@ Checking test 215 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.103004 - 0: The maximum resident set size (KB) = 953432 + 0: The total amount of wall time = 224.226362 + 0: The maximum resident set size (KB) = 951252 Test 215 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_restart_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_restart_dyn32_phy32_gnu Checking test 216 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7196,28 +7219,28 @@ Checking test 216 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.862291 - 0: The maximum resident set size (KB) = 846676 + 0: The total amount of wall time = 323.897376 + 0: The maximum resident set size (KB) = 847156 Test 216 rap_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_restart_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_restart_dyn32_phy32_gnu Checking test 217 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.645164 - 0: The maximum resident set size (KB) = 849600 + 0: The total amount of wall time = 112.326899 + 0: The maximum resident set size (KB) = 848004 Test 217 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_control_gnu Checking test 218 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7233,40 +7256,40 @@ Checking test 218 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 144.974021 - 0: The maximum resident set size (KB) = 1315348 + 0: The total amount of wall time = 151.028332 + 0: The maximum resident set size (KB) = 1315876 Test 218 conus13km_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_2threads_gnu Checking test 219 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 57.194207 - 0: The maximum resident set size (KB) = 1230152 + 0: The total amount of wall time = 55.540604 + 0: The maximum resident set size (KB) = 1224964 Test 219 conus13km_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_restart_mismatch_gnu Checking test 220 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 80.603233 - 0: The maximum resident set size (KB) = 950664 + 0: The total amount of wall time = 79.090711 + 0: The maximum resident set size (KB) = 929724 Test 220 conus13km_restart_mismatch_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_dyn64_phy32_gnu Checking test 221 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7313,42 +7336,42 @@ Checking test 221 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.926096 - 0: The maximum resident set size (KB) = 991892 + 0: The total amount of wall time = 255.382268 + 0: The maximum resident set size (KB) = 991500 Test 221 rap_control_dyn64_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_debug_dyn32_phy32_gnu Checking test 222 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.018852 - 0: The maximum resident set size (KB) = 976948 + 0: The total amount of wall time = 111.873727 + 0: The maximum resident set size (KB) = 977200 Test 222 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/hrrr_control_debug_dyn32_phy32_gnu Checking test 223 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.596871 - 0: The maximum resident set size (KB) = 968540 + 0: The total amount of wall time = 106.323740 + 0: The maximum resident set size (KB) = 969764 Test 223 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_debug_gnu Checking test 224 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7362,14 +7385,14 @@ Checking test 224 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 312.344850 - 0: The maximum resident set size (KB) = 1331432 + 0: The total amount of wall time = 312.446839 + 0: The maximum resident set size (KB) = 1332888 Test 224 conus13km_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_debug_qr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_debug_qr_gnu Checking test 225 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7383,56 +7406,56 @@ Checking test 225 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 320.668390 - 0: The maximum resident set size (KB) = 976372 + 0: The total amount of wall time = 324.995583 + 0: The maximum resident set size (KB) = 977904 Test 225 conus13km_debug_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_debug_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_debug_2threads_gnu Checking test 226 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.131702 - 0: The maximum resident set size (KB) = 1237172 + 0: The total amount of wall time = 184.209802 + 0: The maximum resident set size (KB) = 1239036 Test 226 conus13km_debug_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/conus13km_radar_tten_debug_gnu Checking test 227 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 321.573368 - 0: The maximum resident set size (KB) = 1399640 + 0: The total amount of wall time = 316.079636 + 0: The maximum resident set size (KB) = 1401756 Test 227 conus13km_radar_tten_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/rap_control_dyn64_phy32_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/rap_control_dyn64_phy32_debug_gnu Checking test 228 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.362846 - 0: The maximum resident set size (KB) = 1000408 + 0: The total amount of wall time = 109.855926 + 0: The maximum resident set size (KB) = 1004940 Test 228 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_p8_gnu Checking test 229 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7497,14 +7520,14 @@ Checking test 229 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.357370 - 0: The maximum resident set size (KB) = 4846192 + 0: The total amount of wall time = 374.848219 + 0: The maximum resident set size (KB) = 4850448 -Test 229 cpld_control_p8_gnu PASS Tries: 2 +Test 229 cpld_control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_nowave_noaero_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_nowave_noaero_p8_gnu Checking test 230 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7566,74 +7589,18 @@ Checking test 230 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.967657 - 0: The maximum resident set size (KB) = 2561484 + 0: The total amount of wall time = 261.045831 + 0: The maximum resident set size (KB) = 2562836 Test 230 cpld_control_nowave_noaero_p8_gnu PASS +Test 231 cpld_debug_p8_gnu FAIL -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_debug_p8_gnu -Checking test 231 cpld_debug_p8_gnu 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 = 202.877952 - 0: The maximum resident set size (KB) = 4866184 - -Test 231 cpld_debug_p8_gnu PASS +Test 231 cpld_debug_p8_gnu FAIL baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_control_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_control_pdlib_p8_gnu Checking test 232 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7697,14 +7664,14 @@ Checking test 232 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 987.383141 - 0: The maximum resident set size (KB) = 2895060 + 0: The total amount of wall time = 1010.330409 + 0: The maximum resident set size (KB) = 2893572 Test 232 cpld_control_pdlib_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/cpld_debug_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/cpld_debug_pdlib_p8_gnu Checking test 233 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7756,72 +7723,115 @@ Checking test 233 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 544.442040 - 0: The maximum resident set size (KB) = 2760656 + 0: The total amount of wall time = 542.016433 + 0: The maximum resident set size (KB) = 2765768 Test 233 cpld_debug_pdlib_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_371767/datm_cdeps_control_cfsr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_768134/datm_cdeps_control_cfsr_gnu Checking test 234 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 172.388643 - 0: The maximum resident set size (KB) = 756416 + 0: The total amount of wall time = 129.424397 + 0: The maximum resident set size (KB) = 755324 Test 234 datm_cdeps_control_cfsr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_544193/control_wrtGauss_netcdf_parallel_intel -Checking test 001 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 206.688025 - 0: The maximum resident set size (KB) = 664812 - -Test 235 control_wrtGauss_netcdf_parallel_intel PASS - +Testing UFSWM Hash: 29aa3bcd27bc0b1f1633c659fcfd81be157b29df +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) + e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_dyn32_intel elapsed time 443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_debug_gnu elapsed time 229 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_544193/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 002 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_936200/regional_netcdf_parallel_intel +Checking test 001 regional_netcdf_parallel_intel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 158.004607 - 0: The maximum resident set size (KB) = 826464 + 0: The total amount of wall time = 269.996775 + 0: The maximum resident set size (KB) = 960388 -Test 236 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 001 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_544193/hafs_regional_specified_moving_1nest_atm_intel -Checking test 003 hafs_regional_specified_moving_1nest_atm_intel 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 HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_936200/cpld_debug_p8_gnu +Checking test 002 cpld_debug_p8_gnu 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 = 204.015326 - 0: The maximum resident set size (KB) = 612064 + 0: The total amount of wall time = 201.647529 + 0: The maximum resident set size (KB) = 4868540 -Test 237 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 002 cpld_debug_p8_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 30 14:20:23 CST 2023 -Elapsed time: 00h:14m:53s. Have a nice day! +Mon Dec 4 09:42:11 CST 2023 +Elapsed time: 00h:39m:42s. Have a nice day! From 46857d8c6d7d3e2afab7149951dc3c66a5149db8 Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Mon, 4 Dec 2023 11:05:08 -0500 Subject: [PATCH 29/30] add gaea-c5 RT log: passed --- tests/logs/RegressionTests_gaea-c5.log | 3041 +++++++++++++++++------- 1 file changed, 2127 insertions(+), 914 deletions(-) diff --git a/tests/logs/RegressionTests_gaea-c5.log b/tests/logs/RegressionTests_gaea-c5.log index 360f02253e..acfb7bfdea 100644 --- a/tests/logs/RegressionTests_gaea-c5.log +++ b/tests/logs/RegressionTests_gaea-c5.log @@ -1,58 +1,62 @@ -Tue 14 Nov 2023 07:20:25 AM EST +Fri 01 Dec 2023 07:51:16 PM EST Start Regression test -Testing UFSWM Hash: a0707e9e504ece93aff8f4a913e617caf8d8395b +Testing UFSWM Hash: a592791359b83c8998f4f516e4f8769efaf3e96b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 36500b6084014eb862176c810914206d2ddf2170 FV3 (heads/develop) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9803-g02d4dc455) + a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atmaero_intel elapsed time 606 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 399 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 805 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 600 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 493 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 611 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 632 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 658 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 312 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 383 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 388 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 152 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 711 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 443 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 689 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 726 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 766 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 748 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 896 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 587 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1101 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 879 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 539 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 819 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 579 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 393 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 789 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 589 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 440 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 599 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 625 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 379 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 381 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 145 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 692 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 420 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 827 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 678 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,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 694 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 712 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 708 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 812 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 532 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1226 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 532 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1025 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 823 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 498 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 766 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 473 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1127 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Moving baseline 001 cpld_control_p8_mixedmode_intel files .... Moving sfcf021.tile1.nc .........OK @@ -118,16 +122,165 @@ Moving baseline 001 cpld_control_p8_mixedmode_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.613774 - 0: The maximum resident set size (KB) = 3045044 + 0: The total amount of wall time = 309.895803 + 0: The maximum resident set size (KB) = 3045808 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_p8_intel -Checking test 002 cpld_control_p8_intel results .... -Moving baseline 002 cpld_control_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_gfsv17_intel +Checking test 002 cpld_control_gfsv17_intel results .... +Moving baseline 002 cpld_control_gfsv17_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 803.288958 + 0: The maximum resident set size (KB) = 1675304 + +Test 002 cpld_control_gfsv17_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_gfsv17_iau_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_gfsv17_iau_intel +Checking test 003 cpld_control_gfsv17_iau_intel results .... +Moving baseline 003 cpld_control_gfsv17_iau_intel files .... + Moving sfcf012.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving 20210323.000000.out_pnt.ww3 .........OK + Moving 20210323.000000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 548.579384 + 0: The maximum resident set size (KB) = 934288 + +Test 003 cpld_control_gfsv17_iau_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_debug_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_debug_gfsv17_intel +Checking test 004 cpld_debug_gfsv17_intel results .... +Moving baseline 004 cpld_debug_gfsv17_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1215.174156 + 0: The maximum resident set size (KB) = 1679480 + +Test 004 cpld_debug_gfsv17_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_p8_intel +Checking test 005 cpld_control_p8_intel results .... +Moving baseline 005 cpld_control_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -191,16 +344,16 @@ Moving baseline 002 cpld_control_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.896166 - 0: The maximum resident set size (KB) = 3070608 + 0: The total amount of wall time = 354.839421 + 0: The maximum resident set size (KB) = 3073476 -Test 002 cpld_control_p8_intel PASS +Test 005 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_ciceC_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_ciceC_p8_intel -Checking test 003 cpld_control_ciceC_p8_intel results .... -Moving baseline 003 cpld_control_ciceC_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_ciceC_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_ciceC_p8_intel +Checking test 006 cpld_control_ciceC_p8_intel results .... +Moving baseline 006 cpld_control_ciceC_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -264,16 +417,16 @@ Moving baseline 003 cpld_control_ciceC_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.361497 - 0: The maximum resident set size (KB) = 3072296 + 0: The total amount of wall time = 355.235147 + 0: The maximum resident set size (KB) = 3070004 -Test 003 cpld_control_ciceC_p8_intel PASS +Test 006 cpld_control_ciceC_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_c192_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_c192_p8_intel -Checking test 004 cpld_control_c192_p8_intel results .... -Moving baseline 004 cpld_control_c192_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_c192_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_c192_p8_intel +Checking test 007 cpld_control_c192_p8_intel results .... +Moving baseline 007 cpld_control_c192_p8_intel files .... Moving sfcf030.tile1.nc .........OK Moving sfcf030.tile2.nc .........OK Moving sfcf030.tile3.nc .........OK @@ -325,16 +478,16 @@ Moving baseline 004 cpld_control_c192_p8_intel files .... Moving 20210323.120000.out_grd.ww3 .........OK Moving 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 594.808545 - 0: The maximum resident set size (KB) = 3255244 + 0: The total amount of wall time = 601.456801 + 0: The maximum resident set size (KB) = 3249716 -Test 004 cpld_control_c192_p8_intel PASS +Test 007 cpld_control_c192_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_bmark_p8_intel -Checking test 005 cpld_bmark_p8_intel results .... -Moving baseline 005 cpld_bmark_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_bmark_p8_intel +Checking test 008 cpld_bmark_p8_intel results .... +Moving baseline 008 cpld_bmark_p8_intel files .... Moving sfcf006.nc .........OK Moving atmf006.nc .........OK Moving GFSFLX.GrbF06 .........OK @@ -381,16 +534,16 @@ Moving baseline 005 cpld_bmark_p8_intel files .... Moving 20130401.060000.out_pnt.ww3 .........OK Moving 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 753.438685 - 0: The maximum resident set size (KB) = 4020296 + 0: The total amount of wall time = 758.568396 + 0: The maximum resident set size (KB) = 4025804 -Test 005 cpld_bmark_p8_intel PASS +Test 008 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_noaero_p8_intel -Checking test 006 cpld_control_noaero_p8_intel results .... -Moving baseline 006 cpld_control_noaero_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_noaero_p8_intel +Checking test 009 cpld_control_noaero_p8_intel results .... +Moving baseline 009 cpld_control_noaero_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -453,16 +606,16 @@ Moving baseline 006 cpld_control_noaero_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.106472 - 0: The maximum resident set size (KB) = 1657592 + 0: The total amount of wall time = 261.300172 + 0: The maximum resident set size (KB) = 1671420 -Test 006 cpld_control_noaero_p8_intel PASS +Test 009 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_nowave_noaero_p8_intel -Checking test 007 cpld_control_nowave_noaero_p8_intel results .... -Moving baseline 007 cpld_control_nowave_noaero_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_nowave_noaero_p8_intel +Checking test 010 cpld_control_nowave_noaero_p8_intel results .... +Moving baseline 010 cpld_control_nowave_noaero_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -523,16 +676,16 @@ Moving baseline 007 cpld_control_nowave_noaero_p8_intel files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.423103 - 0: The maximum resident set size (KB) = 1718916 + 0: The total amount of wall time = 265.037892 + 0: The maximum resident set size (KB) = 1718036 -Test 007 cpld_control_nowave_noaero_p8_intel PASS +Test 010 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_debug_p8_intel -Checking test 008 cpld_debug_p8_intel results .... -Moving baseline 008 cpld_debug_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_debug_p8_intel +Checking test 011 cpld_debug_p8_intel results .... +Moving baseline 011 cpld_debug_p8_intel files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -584,16 +737,16 @@ Moving baseline 008 cpld_debug_p8_intel files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.911757 - 0: The maximum resident set size (KB) = 3085556 + 0: The total amount of wall time = 482.569544 + 0: The maximum resident set size (KB) = 3086052 -Test 008 cpld_debug_p8_intel PASS +Test 011 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_debug_noaero_p8_intel -Checking test 009 cpld_debug_noaero_p8_intel results .... -Moving baseline 009 cpld_debug_noaero_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_debug_noaero_p8_intel +Checking test 012 cpld_debug_noaero_p8_intel results .... +Moving baseline 012 cpld_debug_noaero_p8_intel files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -644,16 +797,16 @@ Moving baseline 009 cpld_debug_noaero_p8_intel files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.775138 - 0: The maximum resident set size (KB) = 1659460 + 0: The total amount of wall time = 324.494628 + 0: The maximum resident set size (KB) = 1682936 -Test 009 cpld_debug_noaero_p8_intel PASS +Test 012 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_noaero_p8_agrid_intel -Checking test 010 cpld_control_noaero_p8_agrid_intel results .... -Moving baseline 010 cpld_control_noaero_p8_agrid_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_noaero_p8_agrid_intel +Checking test 013 cpld_control_noaero_p8_agrid_intel results .... +Moving baseline 013 cpld_control_noaero_p8_agrid_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -714,16 +867,16 @@ Moving baseline 010 cpld_control_noaero_p8_agrid_intel files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.374451 - 0: The maximum resident set size (KB) = 1715328 + 0: The total amount of wall time = 270.934112 + 0: The maximum resident set size (KB) = 1722432 -Test 010 cpld_control_noaero_p8_agrid_intel PASS +Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_c48_intel -Checking test 011 cpld_control_c48_intel results .... -Moving baseline 011 cpld_control_c48_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_c48_intel +Checking test 014 cpld_control_c48_intel results .... +Moving baseline 014 cpld_control_c48_intel files .... Moving sfcf024.tile1.nc .........OK Moving sfcf024.tile2.nc .........OK Moving sfcf024.tile3.nc .........OK @@ -772,16 +925,16 @@ Moving baseline 011 cpld_control_c48_intel files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 407.359359 - 0: The maximum resident set size (KB) = 2642412 + 0: The total amount of wall time = 416.197215 + 0: The maximum resident set size (KB) = 2638068 -Test 011 cpld_control_c48_intel PASS +Test 014 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/cpld_control_p8_faster_intel -Checking test 012 cpld_control_p8_faster_intel results .... -Moving baseline 012 cpld_control_p8_faster_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_p8_faster_intel +Checking test 015 cpld_control_p8_faster_intel results .... +Moving baseline 015 cpld_control_p8_faster_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -845,16 +998,148 @@ Moving baseline 012 cpld_control_p8_faster_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.552872 - 0: The maximum resident set size (KB) = 3072280 + 0: The total amount of wall time = 349.088038 + 0: The maximum resident set size (KB) = 3070168 + +Test 015 cpld_control_p8_faster_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_pdlib_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_control_pdlib_p8_intel +Checking test 016 cpld_control_pdlib_p8_intel results .... +Moving baseline 016 cpld_control_pdlib_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 908.151357 + 0: The maximum resident set size (KB) = 1671808 -Test 012 cpld_control_p8_faster_intel PASS +Test 016 cpld_control_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_flake_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_flake_intel -Checking test 013 control_flake_intel results .... -Moving baseline 013 control_flake_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_debug_pdlib_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/cpld_debug_pdlib_p8_intel +Checking test 017 cpld_debug_pdlib_p8_intel results .... +Moving baseline 017 cpld_debug_pdlib_p8_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1547.525706 + 0: The maximum resident set size (KB) = 1699260 + +Test 017 cpld_debug_pdlib_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_flake_intel +Checking test 018 control_flake_intel results .... +Moving baseline 018 control_flake_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -864,16 +1149,16 @@ Moving baseline 013 control_flake_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.671876 - 0: The maximum resident set size (KB) = 651340 + 0: The total amount of wall time = 199.757736 + 0: The maximum resident set size (KB) = 658864 -Test 013 control_flake_intel PASS +Test 018 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_CubedSphereGrid_intel -Checking test 014 control_CubedSphereGrid_intel results .... -Moving baseline 014 control_CubedSphereGrid_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_CubedSphereGrid_intel +Checking test 019 control_CubedSphereGrid_intel results .... +Moving baseline 019 control_CubedSphereGrid_intel files .... Moving sfcf000.tile1.nc .........OK Moving sfcf000.tile2.nc .........OK Moving sfcf000.tile3.nc .........OK @@ -899,16 +1184,16 @@ Moving baseline 014 control_CubedSphereGrid_intel files .... Moving atmf024.tile5.nc .........OK Moving atmf024.tile6.nc .........OK - 0: The total amount of wall time = 122.748210 - 0: The maximum resident set size (KB) = 602964 + 0: The total amount of wall time = 126.799631 + 0: The maximum resident set size (KB) = 608792 -Test 014 control_CubedSphereGrid_intel PASS +Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_CubedSphereGrid_parallel_intel -Checking test 015 control_CubedSphereGrid_parallel_intel results .... -Moving baseline 015 control_CubedSphereGrid_parallel_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_CubedSphereGrid_parallel_intel +Checking test 020 control_CubedSphereGrid_parallel_intel results .... +Moving baseline 020 control_CubedSphereGrid_parallel_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -922,16 +1207,16 @@ Moving baseline 015 control_CubedSphereGrid_parallel_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.010294 - 0: The maximum resident set size (KB) = 610508 + 0: The total amount of wall time = 138.280904 + 0: The maximum resident set size (KB) = 611320 -Test 015 control_CubedSphereGrid_parallel_intel PASS +Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_latlon_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_latlon_intel -Checking test 016 control_latlon_intel results .... -Moving baseline 016 control_latlon_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_latlon_intel +Checking test 021 control_latlon_intel results .... +Moving baseline 021 control_latlon_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -941,16 +1226,16 @@ Moving baseline 016 control_latlon_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 122.408922 - 0: The maximum resident set size (KB) = 610308 + 0: The total amount of wall time = 125.907663 + 0: The maximum resident set size (KB) = 610240 -Test 016 control_latlon_intel PASS +Test 021 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wrtGauss_netcdf_parallel_intel -Checking test 017 control_wrtGauss_netcdf_parallel_intel results .... -Moving baseline 017 control_wrtGauss_netcdf_parallel_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_wrtGauss_netcdf_parallel_intel +Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... +Moving baseline 022 control_wrtGauss_netcdf_parallel_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -960,16 +1245,16 @@ Moving baseline 017 control_wrtGauss_netcdf_parallel_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.092182 - 0: The maximum resident set size (KB) = 606676 + 0: The total amount of wall time = 129.120582 + 0: The maximum resident set size (KB) = 610636 -Test 017 control_wrtGauss_netcdf_parallel_intel PASS +Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c48_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c48_intel -Checking test 018 control_c48_intel results .... -Moving baseline 018 control_c48_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_c48_intel +Checking test 023 control_c48_intel results .... +Moving baseline 023 control_c48_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1007,16 +1292,16 @@ Moving baseline 018 control_c48_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 334.581142 -0: The maximum resident set size (KB) = 680916 +0: The total amount of wall time = 334.822581 +0: The maximum resident set size (KB) = 717708 -Test 018 control_c48_intel PASS +Test 023 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c192_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c192_intel -Checking test 019 control_c192_intel results .... -Moving baseline 019 control_c192_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_c192_intel +Checking test 024 control_c192_intel results .... +Moving baseline 024 control_c192_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1026,16 +1311,16 @@ Moving baseline 019 control_c192_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 499.231788 - 0: The maximum resident set size (KB) = 705256 + 0: The total amount of wall time = 505.597816 + 0: The maximum resident set size (KB) = 727044 -Test 019 control_c192_intel PASS +Test 024 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c384_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c384_intel -Checking test 020 control_c384_intel results .... -Moving baseline 020 control_c384_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_c384_intel +Checking test 025 control_c384_intel results .... +Moving baseline 025 control_c384_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -1045,16 +1330,16 @@ Moving baseline 020 control_c384_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 954.278228 - 0: The maximum resident set size (KB) = 1105504 + 0: The total amount of wall time = 995.992020 + 0: The maximum resident set size (KB) = 1022468 -Test 020 control_c384_intel PASS +Test 025 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_c384gdas_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_c384gdas_intel -Checking test 021 control_c384gdas_intel results .... -Moving baseline 021 control_c384gdas_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_c384gdas_intel +Checking test 026 control_c384gdas_intel results .... +Moving baseline 026 control_c384gdas_intel files .... Moving sfcf000.nc .........OK Moving sfcf006.nc .........OK Moving atmf000.nc .........OK @@ -1096,16 +1381,16 @@ Moving baseline 021 control_c384gdas_intel files .... Moving RESTART/20210322.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 812.448838 - 0: The maximum resident set size (KB) = 1239568 + 0: The total amount of wall time = 865.698906 + 0: The maximum resident set size (KB) = 1165272 -Test 021 control_c384gdas_intel PASS +Test 026 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_stochy_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_stochy_intel -Checking test 022 control_stochy_intel results .... -Moving baseline 022 control_stochy_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_stochy_intel +Checking test 027 control_stochy_intel results .... +Moving baseline 027 control_stochy_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -1115,16 +1400,16 @@ Moving baseline 022 control_stochy_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.372298 - 0: The maximum resident set size (KB) = 609984 + 0: The total amount of wall time = 85.469810 + 0: The maximum resident set size (KB) = 615840 -Test 022 control_stochy_intel PASS +Test 027 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_lndp_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_lndp_intel -Checking test 023 control_lndp_intel results .... -Moving baseline 023 control_lndp_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_lndp_intel +Checking test 028 control_lndp_intel results .... +Moving baseline 028 control_lndp_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -1134,16 +1419,16 @@ Moving baseline 023 control_lndp_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.966999 - 0: The maximum resident set size (KB) = 609956 + 0: The total amount of wall time = 79.082990 + 0: The maximum resident set size (KB) = 612276 -Test 023 control_lndp_intel PASS +Test 028 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_iovr4_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_iovr4_intel -Checking test 024 control_iovr4_intel results .... -Moving baseline 024 control_iovr4_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_iovr4_intel +Checking test 029 control_iovr4_intel results .... +Moving baseline 029 control_iovr4_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1157,16 +1442,16 @@ Moving baseline 024 control_iovr4_intel files .... Moving GFSPRS.GrbF21 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.324964 - 0: The maximum resident set size (KB) = 597916 + 0: The total amount of wall time = 127.129533 + 0: The maximum resident set size (KB) = 610768 -Test 024 control_iovr4_intel PASS +Test 029 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_iovr5_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_iovr5_intel -Checking test 025 control_iovr5_intel results .... -Moving baseline 025 control_iovr5_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_iovr5_intel +Checking test 030 control_iovr5_intel results .... +Moving baseline 030 control_iovr5_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1180,16 +1465,16 @@ Moving baseline 025 control_iovr5_intel files .... Moving GFSPRS.GrbF21 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.728136 - 0: The maximum resident set size (KB) = 607672 + 0: The total amount of wall time = 128.878418 + 0: The maximum resident set size (KB) = 610720 -Test 025 control_iovr5_intel PASS +Test 030 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_intel -Checking test 026 control_p8_intel results .... -Moving baseline 026 control_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_intel +Checking test 031 control_p8_intel results .... +Moving baseline 031 control_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1235,16 +1520,16 @@ Moving baseline 026 control_p8_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.929828 - 0: The maximum resident set size (KB) = 1578236 + 0: The total amount of wall time = 156.030117 + 0: The maximum resident set size (KB) = 1592200 -Test 026 control_p8_intel PASS +Test 031 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_ugwpv1_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_ugwpv1_intel -Checking test 027 control_p8_ugwpv1_intel results .... -Moving baseline 027 control_p8_ugwpv1_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_ugwpv1_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_ugwpv1_intel +Checking test 032 control_p8_ugwpv1_intel results .... +Moving baseline 032 control_p8_ugwpv1_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1290,16 +1575,16 @@ Moving baseline 027 control_p8_ugwpv1_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.523264 - 0: The maximum resident set size (KB) = 1577300 + 0: The total amount of wall time = 154.953049 + 0: The maximum resident set size (KB) = 1589124 -Test 027 control_p8_ugwpv1_intel PASS +Test 032 control_p8_ugwpv1_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_lndp_intel -Checking test 028 control_p8_lndp_intel results .... -Moving baseline 028 control_p8_lndp_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_lndp_intel +Checking test 033 control_p8_lndp_intel results .... +Moving baseline 033 control_p8_lndp_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1317,16 +1602,16 @@ Moving baseline 028 control_p8_lndp_intel files .... Moving GFSPRS.GrbF24 .........OK Moving GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 271.012782 - 0: The maximum resident set size (KB) = 1580632 + 0: The total amount of wall time = 280.246281 + 0: The maximum resident set size (KB) = 1592564 -Test 028 control_p8_lndp_intel PASS +Test 033 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_rrtmgp_intel -Checking test 029 control_p8_rrtmgp_intel results .... -Moving baseline 029 control_p8_rrtmgp_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_rrtmgp_intel +Checking test 034 control_p8_rrtmgp_intel results .... +Moving baseline 034 control_p8_rrtmgp_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1372,16 +1657,16 @@ Moving baseline 029 control_p8_rrtmgp_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.489100 - 0: The maximum resident set size (KB) = 1628316 + 0: The total amount of wall time = 206.276603 + 0: The maximum resident set size (KB) = 1646064 -Test 029 control_p8_rrtmgp_intel PASS +Test 034 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_mynn_intel -Checking test 030 control_p8_mynn_intel results .... -Moving baseline 030 control_p8_mynn_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_mynn_intel +Checking test 035 control_p8_mynn_intel results .... +Moving baseline 035 control_p8_mynn_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1427,16 +1712,16 @@ Moving baseline 030 control_p8_mynn_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.110627 - 0: The maximum resident set size (KB) = 1587148 + 0: The total amount of wall time = 157.434923 + 0: The maximum resident set size (KB) = 1590784 -Test 030 control_p8_mynn_intel PASS +Test 035 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/merra2_thompson_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/merra2_thompson_intel -Checking test 031 merra2_thompson_intel results .... -Moving baseline 031 merra2_thompson_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/merra2_thompson_intel +Checking test 036 merra2_thompson_intel results .... +Moving baseline 036 merra2_thompson_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1482,16 +1767,16 @@ Moving baseline 031 merra2_thompson_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.919615 - 0: The maximum resident set size (KB) = 1575596 + 0: The total amount of wall time = 185.887327 + 0: The maximum resident set size (KB) = 1600932 -Test 031 merra2_thompson_intel PASS +Test 036 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_control_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_control_intel -Checking test 032 regional_control_intel results .... -Moving baseline 032 regional_control_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_control_intel +Checking test 037 regional_control_intel results .... +Moving baseline 037 regional_control_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -1501,47 +1786,47 @@ Moving baseline 032 regional_control_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.229216 - 0: The maximum resident set size (KB) = 867000 + 0: The total amount of wall time = 282.791225 + 0: The maximum resident set size (KB) = 603364 -Test 032 regional_control_intel PASS +Test 037 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_noquilt_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_noquilt_intel -Checking test 033 regional_noquilt_intel results .... -Moving baseline 033 regional_noquilt_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_noquilt_intel +Checking test 038 regional_noquilt_intel results .... +Moving baseline 038 regional_noquilt_intel files .... Moving atmos_4xdaily.nc .........OK Moving fv3_history2d.nc .........OK Moving fv3_history.nc .........OK Moving RESTART/fv_core.res.tile1_new.nc .........OK Moving RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 256.017355 - 0: The maximum resident set size (KB) = 1151660 + 0: The total amount of wall time = 263.090395 + 0: The maximum resident set size (KB) = 1139988 -Test 033 regional_noquilt_intel PASS +Test 038 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_netcdf_parallel_intel -Checking test 034 regional_netcdf_parallel_intel results .... -Moving baseline 034 regional_netcdf_parallel_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_netcdf_parallel_intel +Checking test 039 regional_netcdf_parallel_intel results .... +Moving baseline 039 regional_netcdf_parallel_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK Moving phyf006.nc .........OK - 0: The total amount of wall time = 257.822253 - 0: The maximum resident set size (KB) = 861752 + 0: The total amount of wall time = 288.360856 + 0: The maximum resident set size (KB) = 605132 -Test 034 regional_netcdf_parallel_intel PASS +Test 039 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_wofs_intel -Checking test 035 regional_wofs_intel results .... -Moving baseline 035 regional_wofs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_wofs_intel +Checking test 040 regional_wofs_intel results .... +Moving baseline 040 regional_wofs_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -1551,16 +1836,16 @@ Moving baseline 035 regional_wofs_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 339.679929 - 0: The maximum resident set size (KB) = 1897452 + 0: The total amount of wall time = 373.865589 + 0: The maximum resident set size (KB) = 1574388 -Test 035 regional_wofs_intel PASS +Test 040 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_intel -Checking test 036 rap_control_intel results .... -Moving baseline 036 rap_control_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_control_intel +Checking test 041 rap_control_intel results .... +Moving baseline 041 rap_control_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1606,16 +1891,16 @@ Moving baseline 036 rap_control_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.878050 - 0: The maximum resident set size (KB) = 985392 + 0: The total amount of wall time = 384.130308 + 0: The maximum resident set size (KB) = 989416 -Test 036 rap_control_intel PASS +Test 041 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_spp_sppt_shum_skeb_intel -Checking test 037 regional_spp_sppt_shum_skeb_intel results .... -Moving baseline 037 regional_spp_sppt_shum_skeb_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_spp_sppt_shum_skeb_intel +Checking test 042 regional_spp_sppt_shum_skeb_intel results .... +Moving baseline 042 regional_spp_sppt_shum_skeb_intel files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK @@ -1625,16 +1910,16 @@ Moving baseline 037 regional_spp_sppt_shum_skeb_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.341726 - 0: The maximum resident set size (KB) = 1088716 + 0: The total amount of wall time = 227.635969 + 0: The maximum resident set size (KB) = 1171560 -Test 037 regional_spp_sppt_shum_skeb_intel PASS +Test 042 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_sfcdiff_intel -Checking test 038 rap_sfcdiff_intel results .... -Moving baseline 038 rap_sfcdiff_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_sfcdiff_intel +Checking test 043 rap_sfcdiff_intel results .... +Moving baseline 043 rap_sfcdiff_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1680,16 +1965,16 @@ Moving baseline 038 rap_sfcdiff_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.911939 - 0: The maximum resident set size (KB) = 983348 + 0: The total amount of wall time = 376.352814 + 0: The maximum resident set size (KB) = 989504 -Test 038 rap_sfcdiff_intel PASS +Test 043 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_intel -Checking test 039 hrrr_control_intel results .... -Moving baseline 039 hrrr_control_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hrrr_control_intel +Checking test 044 hrrr_control_intel results .... +Moving baseline 044 hrrr_control_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1735,16 +2020,16 @@ Moving baseline 039 hrrr_control_intel files .... Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.282165 - 0: The maximum resident set size (KB) = 980964 + 0: The total amount of wall time = 196.266152 + 0: The maximum resident set size (KB) = 991756 -Test 039 hrrr_control_intel PASS +Test 044 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1beta_intel -Checking test 040 rrfs_v1beta_intel results .... -Moving baseline 040 rrfs_v1beta_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rrfs_v1beta_intel +Checking test 045 rrfs_v1beta_intel results .... +Moving baseline 045 rrfs_v1beta_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1790,16 +2075,16 @@ Moving baseline 040 rrfs_v1beta_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.640434 - 0: The maximum resident set size (KB) = 982848 + 0: The total amount of wall time = 373.356430 + 0: The maximum resident set size (KB) = 991496 -Test 040 rrfs_v1beta_intel PASS +Test 045 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1nssl_intel -Checking test 041 rrfs_v1nssl_intel results .... -Moving baseline 041 rrfs_v1nssl_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rrfs_v1nssl_intel +Checking test 046 rrfs_v1nssl_intel results .... +Moving baseline 046 rrfs_v1nssl_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1813,16 +2098,16 @@ Moving baseline 041 rrfs_v1nssl_intel files .... Moving GFSPRS.GrbF09 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 441.830233 - 0: The maximum resident set size (KB) = 1946748 + 0: The total amount of wall time = 461.099388 + 0: The maximum resident set size (KB) = 1955700 -Test 041 rrfs_v1nssl_intel PASS +Test 046 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1nssl_nohailnoccn_intel -Checking test 042 rrfs_v1nssl_nohailnoccn_intel results .... -Moving baseline 042 rrfs_v1nssl_nohailnoccn_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rrfs_v1nssl_nohailnoccn_intel +Checking test 047 rrfs_v1nssl_nohailnoccn_intel results .... +Moving baseline 047 rrfs_v1nssl_nohailnoccn_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1836,16 +2121,16 @@ Moving baseline 042 rrfs_v1nssl_nohailnoccn_intel files .... Moving GFSPRS.GrbF09 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 436.416275 - 0: The maximum resident set size (KB) = 1932372 + 0: The total amount of wall time = 442.000207 + 0: The maximum resident set size (KB) = 1943208 -Test 042 rrfs_v1nssl_nohailnoccn_intel PASS +Test 047 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmg_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmg_intel -Checking test 043 control_csawmg_intel results .... -Moving baseline 043 control_csawmg_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_csawmg_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_csawmg_intel +Checking test 048 control_csawmg_intel results .... +Moving baseline 048 control_csawmg_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1855,16 +2140,16 @@ Moving baseline 043 control_csawmg_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.870381 - 0: The maximum resident set size (KB) = 670184 + 0: The total amount of wall time = 320.246465 + 0: The maximum resident set size (KB) = 676532 -Test 043 control_csawmg_intel PASS +Test 048 control_csawmg_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmgt_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmgt_intel -Checking test 044 control_csawmgt_intel results .... -Moving baseline 044 control_csawmgt_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_csawmgt_intel +Checking test 049 control_csawmgt_intel results .... +Moving baseline 049 control_csawmgt_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1874,16 +2159,16 @@ Moving baseline 044 control_csawmgt_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 316.508576 - 0: The maximum resident set size (KB) = 675832 + 0: The total amount of wall time = 316.480653 + 0: The maximum resident set size (KB) = 683768 -Test 044 control_csawmgt_intel PASS +Test 049 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_ras_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_ras_intel -Checking test 045 control_ras_intel results .... -Moving baseline 045 control_ras_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_ras_intel +Checking test 050 control_ras_intel results .... +Moving baseline 050 control_ras_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1893,29 +2178,29 @@ Moving baseline 045 control_ras_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.588049 - 0: The maximum resident set size (KB) = 633248 + 0: The total amount of wall time = 176.357947 + 0: The maximum resident set size (KB) = 649284 -Test 045 control_ras_intel PASS +Test 050 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wam_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wam_intel -Checking test 046 control_wam_intel results .... -Moving baseline 046 control_wam_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_wam_intel +Checking test 051 control_wam_intel results .... +Moving baseline 051 control_wam_intel files .... Moving sfcf024.nc .........OK Moving atmf024.nc .........OK - 0: The total amount of wall time = 114.657899 - 0: The maximum resident set size (KB) = 422232 + 0: The total amount of wall time = 115.793825 + 0: The maximum resident set size (KB) = 362596 -Test 046 control_wam_intel PASS +Test 051 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_faster_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_faster_intel -Checking test 047 control_p8_faster_intel results .... -Moving baseline 047 control_p8_faster_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_faster_intel +Checking test 052 control_p8_faster_intel results .... +Moving baseline 052 control_p8_faster_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1961,16 +2246,16 @@ Moving baseline 047 control_p8_faster_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.672810 - 0: The maximum resident set size (KB) = 1579664 + 0: The total amount of wall time = 146.969923 + 0: The maximum resident set size (KB) = 1590328 -Test 047 control_p8_faster_intel PASS +Test 052 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_control_faster_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_control_faster_intel -Checking test 048 regional_control_faster_intel results .... -Moving baseline 048 regional_control_faster_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_control_faster_intel +Checking test 053 regional_control_faster_intel results .... +Moving baseline 053 regional_control_faster_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -1980,16 +2265,16 @@ Moving baseline 048 regional_control_faster_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 248.663713 - 0: The maximum resident set size (KB) = 860408 + 0: The total amount of wall time = 274.730466 + 0: The maximum resident set size (KB) = 597556 -Test 048 regional_control_faster_intel PASS +Test 053 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_CubedSphereGrid_debug_intel -Checking test 049 control_CubedSphereGrid_debug_intel results .... -Moving baseline 049 control_CubedSphereGrid_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_CubedSphereGrid_debug_intel +Checking test 054 control_CubedSphereGrid_debug_intel results .... +Moving baseline 054 control_CubedSphereGrid_debug_intel files .... Moving sfcf000.tile1.nc .........OK Moving sfcf000.tile2.nc .........OK Moving sfcf000.tile3.nc .........OK @@ -2015,374 +2300,423 @@ Moving baseline 049 control_CubedSphereGrid_debug_intel files .... Moving atmf001.tile5.nc .........OK Moving atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.414170 - 0: The maximum resident set size (KB) = 755572 + 0: The total amount of wall time = 154.603624 + 0: The maximum resident set size (KB) = 757472 -Test 049 control_CubedSphereGrid_debug_intel PASS +Test 054 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 050 control_wrtGauss_netcdf_parallel_debug_intel results .... -Moving baseline 050 control_wrtGauss_netcdf_parallel_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 055 control_wrtGauss_netcdf_parallel_debug_intel results .... +Moving baseline 055 control_wrtGauss_netcdf_parallel_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 151.690428 - 0: The maximum resident set size (KB) = 753996 + 0: The total amount of wall time = 148.661733 + 0: The maximum resident set size (KB) = 758348 -Test 050 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 055 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_stochy_debug_intel -Checking test 051 control_stochy_debug_intel results .... -Moving baseline 051 control_stochy_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_stochy_debug_intel +Checking test 056 control_stochy_debug_intel results .... +Moving baseline 056 control_stochy_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 163.081869 - 0: The maximum resident set size (KB) = 758500 + 0: The total amount of wall time = 165.998525 + 0: The maximum resident set size (KB) = 750016 -Test 051 control_stochy_debug_intel PASS +Test 056 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_lndp_debug_intel -Checking test 052 control_lndp_debug_intel results .... -Moving baseline 052 control_lndp_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_lndp_debug_intel +Checking test 057 control_lndp_debug_intel results .... +Moving baseline 057 control_lndp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 148.051702 - 0: The maximum resident set size (KB) = 762888 + 0: The total amount of wall time = 149.267096 + 0: The maximum resident set size (KB) = 766988 -Test 052 control_lndp_debug_intel PASS +Test 057 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmg_debug_intel -Checking test 053 control_csawmg_debug_intel results .... -Moving baseline 053 control_csawmg_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_csawmg_debug_intel +Checking test 058 control_csawmg_debug_intel results .... +Moving baseline 058 control_csawmg_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 231.041517 - 0: The maximum resident set size (KB) = 779488 + 0: The total amount of wall time = 234.566785 + 0: The maximum resident set size (KB) = 804468 -Test 053 control_csawmg_debug_intel PASS +Test 058 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_csawmgt_debug_intel -Checking test 054 control_csawmgt_debug_intel results .... -Moving baseline 054 control_csawmgt_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_csawmgt_debug_intel +Checking test 059 control_csawmgt_debug_intel results .... +Moving baseline 059 control_csawmgt_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 229.065619 - 0: The maximum resident set size (KB) = 797244 + 0: The total amount of wall time = 230.035167 + 0: The maximum resident set size (KB) = 807868 -Test 054 control_csawmgt_debug_intel PASS +Test 059 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_ras_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_ras_debug_intel -Checking test 055 control_ras_debug_intel results .... -Moving baseline 055 control_ras_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_ras_debug_intel +Checking test 060 control_ras_debug_intel results .... +Moving baseline 060 control_ras_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 149.895120 - 0: The maximum resident set size (KB) = 771016 + 0: The total amount of wall time = 152.141656 + 0: The maximum resident set size (KB) = 774428 -Test 055 control_ras_debug_intel PASS +Test 060 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_diag_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_diag_debug_intel -Checking test 056 control_diag_debug_intel results .... -Moving baseline 056 control_diag_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_diag_debug_intel +Checking test 061 control_diag_debug_intel results .... +Moving baseline 061 control_diag_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 150.834168 - 0: The maximum resident set size (KB) = 815812 + 0: The total amount of wall time = 157.605433 + 0: The maximum resident set size (KB) = 817688 -Test 056 control_diag_debug_intel PASS +Test 061 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_debug_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_debug_p8_intel -Checking test 057 control_debug_p8_intel results .... -Moving baseline 057 control_debug_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_debug_p8_intel +Checking test 062 control_debug_p8_intel results .... +Moving baseline 062 control_debug_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 151.358733 - 0: The maximum resident set size (KB) = 1570416 + 0: The total amount of wall time = 155.440625 + 0: The maximum resident set size (KB) = 1598812 -Test 057 control_debug_p8_intel PASS +Test 062 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_debug_intel -Checking test 058 regional_debug_intel results .... -Moving baseline 058 regional_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_debug_intel +Checking test 063 regional_debug_intel results .... +Moving baseline 063 regional_debug_intel files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK Moving phyf001.nc .........OK - 0: The total amount of wall time = 943.785323 - 0: The maximum resident set size (KB) = 881860 + 0: The total amount of wall time = 968.277125 + 0: The maximum resident set size (KB) = 616228 -Test 058 regional_debug_intel PASS +Test 063 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_debug_intel -Checking test 059 rap_control_debug_intel results .... -Moving baseline 059 rap_control_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_control_debug_intel +Checking test 064 rap_control_debug_intel results .... +Moving baseline 064 rap_control_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 275.776938 - 0: The maximum resident set size (KB) = 1128696 + 0: The total amount of wall time = 279.579451 + 0: The maximum resident set size (KB) = 1131364 -Test 059 rap_control_debug_intel PASS +Test 064 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_debug_intel -Checking test 060 hrrr_control_debug_intel results .... -Moving baseline 060 hrrr_control_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hrrr_control_debug_intel +Checking test 065 hrrr_control_debug_intel results .... +Moving baseline 065 hrrr_control_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.672844 - 0: The maximum resident set size (KB) = 1126632 + 0: The total amount of wall time = 269.091472 + 0: The maximum resident set size (KB) = 1140680 -Test 060 hrrr_control_debug_intel PASS +Test 065 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_gf_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_gf_debug_intel -Checking test 061 hrrr_gf_debug_intel results .... -Moving baseline 061 hrrr_gf_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hrrr_gf_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hrrr_gf_debug_intel +Checking test 066 hrrr_gf_debug_intel results .... +Moving baseline 066 hrrr_gf_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 279.733330 - 0: The maximum resident set size (KB) = 1120844 + 0: The total amount of wall time = 282.435365 + 0: The maximum resident set size (KB) = 1145700 -Test 061 hrrr_gf_debug_intel PASS +Test 066 hrrr_gf_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_c3_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_c3_debug_intel -Checking test 062 hrrr_c3_debug_intel results .... -Moving baseline 062 hrrr_c3_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hrrr_c3_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hrrr_c3_debug_intel +Checking test 067 hrrr_c3_debug_intel results .... +Moving baseline 067 hrrr_c3_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 279.641216 - 0: The maximum resident set size (KB) = 1134992 + 0: The total amount of wall time = 276.249755 + 0: The maximum resident set size (KB) = 1131212 -Test 062 hrrr_c3_debug_intel PASS +Test 067 hrrr_c3_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_diag_debug_intel -Checking test 063 rap_diag_debug_intel results .... -Moving baseline 063 rap_diag_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_diag_debug_intel +Checking test 068 rap_diag_debug_intel results .... +Moving baseline 068 rap_diag_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 290.902090 - 0: The maximum resident set size (KB) = 1218400 + 0: The total amount of wall time = 292.707988 + 0: The maximum resident set size (KB) = 1214284 -Test 063 rap_diag_debug_intel PASS +Test 068 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_cires_ugwp_debug_intel -Checking test 064 rap_cires_ugwp_debug_intel results .... -Moving baseline 064 rap_cires_ugwp_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_cires_ugwp_debug_intel +Checking test 069 rap_cires_ugwp_debug_intel results .... +Moving baseline 069 rap_cires_ugwp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 280.992966 - 0: The maximum resident set size (KB) = 1132100 + 0: The total amount of wall time = 283.949535 + 0: The maximum resident set size (KB) = 1132032 -Test 064 rap_cires_ugwp_debug_intel PASS +Test 069 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_lndp_debug_intel -Checking test 065 rap_lndp_debug_intel results .... -Moving baseline 065 rap_lndp_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_lndp_debug_intel +Checking test 070 rap_lndp_debug_intel results .... +Moving baseline 070 rap_lndp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 276.424055 - 0: The maximum resident set size (KB) = 1118840 + 0: The total amount of wall time = 278.326392 + 0: The maximum resident set size (KB) = 1143744 -Test 065 rap_lndp_debug_intel PASS +Test 070 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_progcld_thompson_debug_intel -Checking test 066 rap_progcld_thompson_debug_intel results .... -Moving baseline 066 rap_progcld_thompson_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_progcld_thompson_debug_intel +Checking test 071 rap_progcld_thompson_debug_intel results .... +Moving baseline 071 rap_progcld_thompson_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 276.825644 - 0: The maximum resident set size (KB) = 1130660 + 0: The total amount of wall time = 276.285236 + 0: The maximum resident set size (KB) = 1145208 -Test 066 rap_progcld_thompson_debug_intel PASS +Test 071 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_noah_debug_intel -Checking test 067 rap_noah_debug_intel results .... -Moving baseline 067 rap_noah_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_noah_debug_intel +Checking test 072 rap_noah_debug_intel results .... +Moving baseline 072 rap_noah_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 268.328950 - 0: The maximum resident set size (KB) = 1128440 + 0: The total amount of wall time = 271.384524 + 0: The maximum resident set size (KB) = 1144728 -Test 067 rap_noah_debug_intel PASS +Test 072 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_sfcdiff_debug_intel -Checking test 068 rap_sfcdiff_debug_intel results .... -Moving baseline 068 rap_sfcdiff_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_sfcdiff_debug_intel +Checking test 073 rap_sfcdiff_debug_intel results .... +Moving baseline 073 rap_sfcdiff_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 270.935257 - 0: The maximum resident set size (KB) = 1132428 + 0: The total amount of wall time = 282.566146 + 0: The maximum resident set size (KB) = 1143400 -Test 068 rap_sfcdiff_debug_intel PASS +Test 073 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 069 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... -Moving baseline 069 rap_noah_sfcdiff_cires_ugwp_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 074 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +Moving baseline 074 rap_noah_sfcdiff_cires_ugwp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 447.053241 - 0: The maximum resident set size (KB) = 1133164 + 0: The total amount of wall time = 452.234247 + 0: The maximum resident set size (KB) = 1144288 -Test 069 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 074 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rrfs_v1beta_debug_intel -Checking test 070 rrfs_v1beta_debug_intel results .... -Moving baseline 070 rrfs_v1beta_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rrfs_v1beta_debug_intel +Checking test 075 rrfs_v1beta_debug_intel results .... +Moving baseline 075 rrfs_v1beta_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 269.772884 - 0: The maximum resident set size (KB) = 1127868 + 0: The total amount of wall time = 277.713179 + 0: The maximum resident set size (KB) = 1142788 -Test 070 rrfs_v1beta_debug_intel PASS +Test 075 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_clm_lake_debug_intel -Checking test 071 rap_clm_lake_debug_intel results .... -Moving baseline 071 rap_clm_lake_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_clm_lake_debug_intel +Checking test 076 rap_clm_lake_debug_intel results .... +Moving baseline 076 rap_clm_lake_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 327.670065 - 0: The maximum resident set size (KB) = 1133212 + 0: The total amount of wall time = 329.678975 + 0: The maximum resident set size (KB) = 1146320 -Test 071 rap_clm_lake_debug_intel PASS +Test 076 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_flake_debug_intel -Checking test 072 rap_flake_debug_intel results .... -Moving baseline 072 rap_flake_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_flake_debug_intel +Checking test 077 rap_flake_debug_intel results .... +Moving baseline 077 rap_flake_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.696727 - 0: The maximum resident set size (KB) = 1132148 + 0: The total amount of wall time = 282.603754 + 0: The maximum resident set size (KB) = 1132152 -Test 072 rap_flake_debug_intel PASS +Test 077 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_wam_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_wam_debug_intel -Checking test 073 control_wam_debug_intel results .... -Moving baseline 073 control_wam_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/gnv1_c96_no_nest_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/gnv1_c96_no_nest_debug_intel +Checking test 078 gnv1_c96_no_nest_debug_intel results .... +Moving baseline 078 gnv1_c96_no_nest_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK + Moving RESTART/20210322.070000.coupler.res .........OK + Moving RESTART/20210322.070000.fv_core.res.nc .........OK + Moving RESTART/20210322.070000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.070000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.070000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.070000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.070000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.070000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.070000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.070000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.070000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.070000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.070000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.070000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.070000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.070000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.070000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.070000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.070000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.070000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 478.361931 + 0: The maximum resident set size (KB) = 1152964 + +Test 078 gnv1_c96_no_nest_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_wam_debug_intel +Checking test 079 control_wam_debug_intel results .... +Moving baseline 079 control_wam_debug_intel files .... Moving sfcf019.nc .........OK Moving atmf019.nc .........OK - 0: The total amount of wall time = 283.694343 - 0: The maximum resident set size (KB) = 440108 + 0: The total amount of wall time = 270.557212 + 0: The maximum resident set size (KB) = 382252 -Test 073 control_wam_debug_intel PASS +Test 079 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... -Moving baseline 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 080 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +Moving baseline 080 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK @@ -2392,16 +2726,16 @@ Moving baseline 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 210.963429 - 0: The maximum resident set size (KB) = 984956 + 0: The total amount of wall time = 214.822066 + 0: The maximum resident set size (KB) = 1038364 -Test 074 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 080 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_dyn32_phy32_intel -Checking test 075 rap_control_dyn32_phy32_intel results .... -Moving baseline 075 rap_control_dyn32_phy32_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_control_dyn32_phy32_intel +Checking test 081 rap_control_dyn32_phy32_intel results .... +Moving baseline 081 rap_control_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2447,16 +2781,16 @@ Moving baseline 075 rap_control_dyn32_phy32_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.059016 - 0: The maximum resident set size (KB) = 867160 + 0: The total amount of wall time = 314.024508 + 0: The maximum resident set size (KB) = 877364 -Test 075 rap_control_dyn32_phy32_intel PASS +Test 081 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_dyn32_phy32_intel -Checking test 076 hrrr_control_dyn32_phy32_intel results .... -Moving baseline 076 hrrr_control_dyn32_phy32_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hrrr_control_dyn32_phy32_intel +Checking test 082 hrrr_control_dyn32_phy32_intel results .... +Moving baseline 082 hrrr_control_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2502,16 +2836,16 @@ Moving baseline 076 hrrr_control_dyn32_phy32_intel files .... Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.660354 - 0: The maximum resident set size (KB) = 866020 + 0: The total amount of wall time = 163.287200 + 0: The maximum resident set size (KB) = 869828 -Test 076 hrrr_control_dyn32_phy32_intel PASS +Test 082 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_control_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_control_intel -Checking test 077 conus13km_control_intel results .... -Moving baseline 077 conus13km_control_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/conus13km_control_intel +Checking test 083 conus13km_control_intel results .... +Moving baseline 083 conus13km_control_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving sfcf002.nc .........OK @@ -2526,29 +2860,29 @@ Moving baseline 077 conus13km_control_intel files .... Moving RESTART/20210512.170000.phy_data.nc .........OK Moving RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 106.130806 - 0: The maximum resident set size (KB) = 1140700 + 0: The total amount of wall time = 104.439901 + 0: The maximum resident set size (KB) = 1134624 -Test 077 conus13km_control_intel PASS +Test 083 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_restart_mismatch_intel -Checking test 078 conus13km_restart_mismatch_intel results .... -Moving baseline 078 conus13km_restart_mismatch_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/conus13km_restart_mismatch_intel +Checking test 084 conus13km_restart_mismatch_intel results .... +Moving baseline 084 conus13km_restart_mismatch_intel files .... Moving sfcf002.nc .........OK Moving atmf002.nc .........OK - 0: The total amount of wall time = 63.791744 - 0: The maximum resident set size (KB) = 1037896 + 0: The total amount of wall time = 66.172975 + 0: The maximum resident set size (KB) = 1034968 -Test 078 conus13km_restart_mismatch_intel PASS +Test 084 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_dyn64_phy32_intel -Checking test 079 rap_control_dyn64_phy32_intel results .... -Moving baseline 079 rap_control_dyn64_phy32_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_control_dyn64_phy32_intel +Checking test 085 rap_control_dyn64_phy32_intel results .... +Moving baseline 085 rap_control_dyn64_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2594,46 +2928,46 @@ Moving baseline 079 rap_control_dyn64_phy32_intel files .... Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.347471 - 0: The maximum resident set size (KB) = 895744 + 0: The total amount of wall time = 220.961573 + 0: The maximum resident set size (KB) = 904548 -Test 079 rap_control_dyn64_phy32_intel PASS +Test 085 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_debug_dyn32_phy32_intel -Checking test 080 rap_control_debug_dyn32_phy32_intel results .... -Moving baseline 080 rap_control_debug_dyn32_phy32_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_control_debug_dyn32_phy32_intel +Checking test 086 rap_control_debug_dyn32_phy32_intel results .... +Moving baseline 086 rap_control_debug_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 262.598944 - 0: The maximum resident set size (KB) = 1016068 + 0: The total amount of wall time = 270.210927 + 0: The maximum resident set size (KB) = 1024352 -Test 080 rap_control_debug_dyn32_phy32_intel PASS +Test 086 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hrrr_control_debug_dyn32_phy32_intel -Checking test 081 hrrr_control_debug_dyn32_phy32_intel results .... -Moving baseline 081 hrrr_control_debug_dyn32_phy32_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hrrr_control_debug_dyn32_phy32_intel +Checking test 087 hrrr_control_debug_dyn32_phy32_intel results .... +Moving baseline 087 hrrr_control_debug_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 273.871873 - 0: The maximum resident set size (KB) = 1011524 + 0: The total amount of wall time = 259.463149 + 0: The maximum resident set size (KB) = 1007588 -Test 081 hrrr_control_debug_dyn32_phy32_intel PASS +Test 087 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_debug_intel -Checking test 082 conus13km_debug_intel results .... -Moving baseline 082 conus13km_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/conus13km_debug_intel +Checking test 088 conus13km_debug_intel results .... +Moving baseline 088 conus13km_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK @@ -2646,73 +2980,73 @@ Moving baseline 082 conus13km_debug_intel files .... Moving RESTART/20210512.170000.phy_data.nc .........OK Moving RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 799.053443 - 0: The maximum resident set size (KB) = 1163952 + 0: The total amount of wall time = 820.910730 + 0: The maximum resident set size (KB) = 1159452 -Test 082 conus13km_debug_intel PASS +Test 088 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/conus13km_radar_tten_debug_intel -Checking test 083 conus13km_radar_tten_debug_intel results .... -Moving baseline 083 conus13km_radar_tten_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/conus13km_radar_tten_debug_intel +Checking test 089 conus13km_radar_tten_debug_intel results .... +Moving baseline 089 conus13km_radar_tten_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 816.283533 - 0: The maximum resident set size (KB) = 1235844 + 0: The total amount of wall time = 824.399126 + 0: The maximum resident set size (KB) = 1231856 -Test 083 conus13km_radar_tten_debug_intel PASS +Test 089 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/rap_control_dyn64_phy32_debug_intel -Checking test 084 rap_control_dyn64_phy32_debug_intel results .... -Moving baseline 084 rap_control_dyn64_phy32_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/rap_control_dyn64_phy32_debug_intel +Checking test 090 rap_control_dyn64_phy32_debug_intel results .... +Moving baseline 090 rap_control_dyn64_phy32_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.296556 - 0: The maximum resident set size (KB) = 1039748 + 0: The total amount of wall time = 271.007843 + 0: The maximum resident set size (KB) = 1048912 -Test 084 rap_control_dyn64_phy32_debug_intel PASS +Test 090 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_intel -Checking test 085 hafs_regional_atm_intel results .... -Moving baseline 085 hafs_regional_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_atm_intel +Checking test 091 hafs_regional_atm_intel results .... +Moving baseline 091 hafs_regional_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 237.406329 - 0: The maximum resident set size (KB) = 1061364 + 0: The total amount of wall time = 326.868984 + 0: The maximum resident set size (KB) = 689372 -Test 085 hafs_regional_atm_intel PASS +Test 091 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 086 hafs_regional_atm_thompson_gfdlsf_intel results .... -Moving baseline 086 hafs_regional_atm_thompson_gfdlsf_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 092 hafs_regional_atm_thompson_gfdlsf_intel results .... +Moving baseline 092 hafs_regional_atm_thompson_gfdlsf_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK - 0: The total amount of wall time = 300.711296 - 0: The maximum resident set size (KB) = 1398208 + 0: The total amount of wall time = 333.966699 + 0: The maximum resident set size (KB) = 1050424 -Test 086 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 092 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_ocn_intel -Checking test 087 hafs_regional_atm_ocn_intel results .... -Moving baseline 087 hafs_regional_atm_ocn_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_atm_ocn_intel +Checking test 093 hafs_regional_atm_ocn_intel results .... +Moving baseline 093 hafs_regional_atm_ocn_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving archv.2019_241_06.a .........OK @@ -2720,16 +3054,16 @@ Moving baseline 087 hafs_regional_atm_ocn_intel files .... Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 417.950762 - 0: The maximum resident set size (KB) = 1102596 + 0: The total amount of wall time = 462.172583 + 0: The maximum resident set size (KB) = 733768 -Test 087 hafs_regional_atm_ocn_intel PASS +Test 093 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_wav_intel -Checking test 088 hafs_regional_atm_wav_intel results .... -Moving baseline 088 hafs_regional_atm_wav_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_atm_wav_intel +Checking test 094 hafs_regional_atm_wav_intel results .... +Moving baseline 094 hafs_regional_atm_wav_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving 20190829.060000.out_grd.ww3 .........OK @@ -2737,16 +3071,16 @@ Moving baseline 088 hafs_regional_atm_wav_intel files .... Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 667.647878 - 0: The maximum resident set size (KB) = 1125364 + 0: The total amount of wall time = 725.143086 + 0: The maximum resident set size (KB) = 758672 -Test 088 hafs_regional_atm_wav_intel PASS +Test 094 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_atm_ocn_wav_intel -Checking test 089 hafs_regional_atm_ocn_wav_intel results .... -Moving baseline 089 hafs_regional_atm_ocn_wav_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_atm_ocn_wav_intel +Checking test 095 hafs_regional_atm_ocn_wav_intel results .... +Moving baseline 095 hafs_regional_atm_ocn_wav_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving archv.2019_241_06.a .........OK @@ -2756,16 +3090,16 @@ Moving baseline 089 hafs_regional_atm_ocn_wav_intel files .... Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 753.431383 - 0: The maximum resident set size (KB) = 1158464 + 0: The total amount of wall time = 791.327555 + 0: The maximum resident set size (KB) = 783708 -Test 089 hafs_regional_atm_ocn_wav_intel PASS +Test 095 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_1nest_atm_intel -Checking test 090 hafs_regional_1nest_atm_intel results .... -Moving baseline 090 hafs_regional_1nest_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_1nest_atm_intel +Checking test 096 hafs_regional_1nest_atm_intel results .... +Moving baseline 096 hafs_regional_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2786,16 +3120,16 @@ Moving baseline 090 hafs_regional_1nest_atm_intel files .... Moving RESTART/fv_BC_ne.res.nest02.nc .........OK Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 294.388594 - 0: The maximum resident set size (KB) = 613540 + 0: The total amount of wall time = 333.920916 + 0: The maximum resident set size (KB) = 460696 -Test 090 hafs_regional_1nest_atm_intel PASS +Test 096 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_telescopic_2nests_atm_intel -Checking test 091 hafs_regional_telescopic_2nests_atm_intel results .... -Moving baseline 091 hafs_regional_telescopic_2nests_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_telescopic_2nests_atm_intel +Checking test 097 hafs_regional_telescopic_2nests_atm_intel results .... +Moving baseline 097 hafs_regional_telescopic_2nests_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2803,16 +3137,16 @@ Moving baseline 091 hafs_regional_telescopic_2nests_atm_intel files .... Moving atm.nest03.f006.nc .........OK Moving sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 356.947558 - 0: The maximum resident set size (KB) = 622000 + 0: The total amount of wall time = 416.638273 + 0: The maximum resident set size (KB) = 480696 -Test 091 hafs_regional_telescopic_2nests_atm_intel PASS +Test 097 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_global_1nest_atm_intel -Checking test 092 hafs_global_1nest_atm_intel results .... -Moving baseline 092 hafs_global_1nest_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_global_1nest_atm_intel +Checking test 098 hafs_global_1nest_atm_intel results .... +Moving baseline 098 hafs_global_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2858,16 +3192,16 @@ Moving baseline 092 hafs_global_1nest_atm_intel files .... Moving RESTART/fv_BC_ne.res.nest02.nc .........OK Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 154.093465 - 0: The maximum resident set size (KB) = 372604 + 0: The total amount of wall time = 194.530872 + 0: The maximum resident set size (KB) = 359604 -Test 092 hafs_global_1nest_atm_intel PASS +Test 098 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_global_multiple_4nests_atm_intel -Checking test 093 hafs_global_multiple_4nests_atm_intel results .... -Moving baseline 093 hafs_global_multiple_4nests_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_global_multiple_4nests_atm_intel +Checking test 099 hafs_global_multiple_4nests_atm_intel results .... +Moving baseline 099 hafs_global_multiple_4nests_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2948,16 +3282,16 @@ Moving baseline 093 hafs_global_multiple_4nests_atm_intel files .... Moving RESTART/fv_BC_sw.res.nest04.nc .........OK Moving RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 442.431833 - 0: The maximum resident set size (KB) = 429416 + 0: The total amount of wall time = 533.311963 + 0: The maximum resident set size (KB) = 446060 -Test 093 hafs_global_multiple_4nests_atm_intel PASS +Test 099 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_specified_moving_1nest_atm_intel -Checking test 094 hafs_regional_specified_moving_1nest_atm_intel results .... -Moving baseline 094 hafs_regional_specified_moving_1nest_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_specified_moving_1nest_atm_intel +Checking test 100 hafs_regional_specified_moving_1nest_atm_intel results .... +Moving baseline 100 hafs_regional_specified_moving_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2965,16 +3299,16 @@ Moving baseline 094 hafs_regional_specified_moving_1nest_atm_intel files .... Moving HURPRS.GrbF06 .........OK Moving HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 198.685537 - 0: The maximum resident set size (KB) = 625824 + 0: The total amount of wall time = 224.651032 + 0: The maximum resident set size (KB) = 497144 -Test 094 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 100 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_intel -Checking test 095 hafs_regional_storm_following_1nest_atm_intel results .... -Moving baseline 095 hafs_regional_storm_following_1nest_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_storm_following_1nest_atm_intel +Checking test 101 hafs_regional_storm_following_1nest_atm_intel results .... +Moving baseline 101 hafs_regional_storm_following_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2995,16 +3329,16 @@ Moving baseline 095 hafs_regional_storm_following_1nest_atm_intel files .... Moving RESTART/fv_BC_ne.res.nest02.nc .........OK Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 182.977163 - 0: The maximum resident set size (KB) = 625888 + 0: The total amount of wall time = 216.944096 + 0: The maximum resident set size (KB) = 497860 -Test 095 hafs_regional_storm_following_1nest_atm_intel PASS +Test 101 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 096 hafs_regional_storm_following_1nest_atm_ocn_intel results .... -Moving baseline 096 hafs_regional_storm_following_1nest_atm_ocn_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 102 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +Moving baseline 102 hafs_regional_storm_following_1nest_atm_ocn_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3012,46 +3346,101 @@ Moving baseline 096 hafs_regional_storm_following_1nest_atm_ocn_intel files .... Moving archv.2020_238_18.a .........OK Moving archs.2020_238_18.a .........OK - 0: The total amount of wall time = 255.297187 - 0: The maximum resident set size (KB) = 672172 + 0: The total amount of wall time = 289.073659 + 0: The maximum resident set size (KB) = 554428 -Test 096 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 102 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_global_storm_following_1nest_atm_intel -Checking test 097 hafs_global_storm_following_1nest_atm_intel results .... -Moving baseline 097 hafs_global_storm_following_1nest_atm_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_global_storm_following_1nest_atm_intel +Checking test 103 hafs_global_storm_following_1nest_atm_intel results .... +Moving baseline 103 hafs_global_storm_following_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK Moving sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 80.217297 - 0: The maximum resident set size (KB) = 405456 + 0: The total amount of wall time = 110.105739 + 0: The maximum resident set size (KB) = 388172 + +Test 103 hafs_global_storm_following_1nest_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/gnv1_nested_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/gnv1_nested_intel +Checking test 104 gnv1_nested_intel results .... +Moving baseline 104 gnv1_nested_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile2.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile3.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile4.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile5.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile6.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 256.091841 + 0: The maximum resident set size (KB) = 754212 -Test 097 hafs_global_storm_following_1nest_atm_intel PASS +Test 104 gnv1_nested_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 098 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... -Moving baseline 098 hafs_regional_storm_following_1nest_atm_ocn_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 105 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +Moving baseline 105 hafs_regional_storm_following_1nest_atm_ocn_debug_intel files .... Moving atmf001.nc .........OK Moving sfcf001.nc .........OK Moving atm.nest02.f001.nc .........OK Moving sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 742.266006 - 0: The maximum resident set size (KB) = 691468 + 0: The total amount of wall time = 780.569488 + 0: The maximum resident set size (KB) = 565484 -Test 098 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 105 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... -Moving baseline 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +Moving baseline 106 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3061,160 +3450,160 @@ Moving baseline 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files Moving 20200825.180000.out_grd.ww3 .........OK Moving 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 430.849834 - 0: The maximum resident set size (KB) = 726708 + 0: The total amount of wall time = 462.557546 + 0: The maximum resident set size (KB) = 593472 -Test 099 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_docn_intel -Checking test 100 hafs_regional_docn_intel results .... -Moving baseline 100 hafs_regional_docn_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_docn_intel +Checking test 107 hafs_regional_docn_intel results .... +Moving baseline 107 hafs_regional_docn_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 322.881311 - 0: The maximum resident set size (KB) = 1092896 + 0: The total amount of wall time = 369.203885 + 0: The maximum resident set size (KB) = 722324 -Test 100 hafs_regional_docn_intel PASS +Test 107 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_docn_oisst_intel -Checking test 101 hafs_regional_docn_oisst_intel results .... -Moving baseline 101 hafs_regional_docn_oisst_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_docn_oisst_intel +Checking test 108 hafs_regional_docn_oisst_intel results .... +Moving baseline 108 hafs_regional_docn_oisst_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 325.710661 - 0: The maximum resident set size (KB) = 1073412 + 0: The total amount of wall time = 375.670667 + 0: The maximum resident set size (KB) = 704324 -Test 101 hafs_regional_docn_oisst_intel PASS +Test 108 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/hafs_regional_datm_cdeps_intel -Checking test 102 hafs_regional_datm_cdeps_intel results .... -Moving baseline 102 hafs_regional_datm_cdeps_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/hafs_regional_datm_cdeps_intel +Checking test 109 hafs_regional_datm_cdeps_intel results .... +Moving baseline 109 hafs_regional_datm_cdeps_intel files .... Moving ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Moving ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Moving ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1185.997766 - 0: The maximum resident set size (KB) = 820576 + 0: The total amount of wall time = 1196.562698 + 0: The maximum resident set size (KB) = 880824 -Test 102 hafs_regional_datm_cdeps_intel PASS +Test 109 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_control_cfsr_intel -Checking test 103 datm_cdeps_control_cfsr_intel results .... -Moving baseline 103 datm_cdeps_control_cfsr_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_control_cfsr_intel +Checking test 110 datm_cdeps_control_cfsr_intel results .... +Moving baseline 110 datm_cdeps_control_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.537902 - 0: The maximum resident set size (KB) = 745948 + 0: The total amount of wall time = 151.032604 + 0: The maximum resident set size (KB) = 737528 -Test 103 datm_cdeps_control_cfsr_intel PASS +Test 110 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_control_gefs_intel -Checking test 104 datm_cdeps_control_gefs_intel results .... -Moving baseline 104 datm_cdeps_control_gefs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_control_gefs_intel +Checking test 111 datm_cdeps_control_gefs_intel results .... +Moving baseline 111 datm_cdeps_control_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.487957 - 0: The maximum resident set size (KB) = 626324 + 0: The total amount of wall time = 142.596584 + 0: The maximum resident set size (KB) = 615120 -Test 104 datm_cdeps_control_gefs_intel PASS +Test 111 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_iau_gefs_intel -Checking test 105 datm_cdeps_iau_gefs_intel results .... -Moving baseline 105 datm_cdeps_iau_gefs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_iau_gefs_intel +Checking test 112 datm_cdeps_iau_gefs_intel results .... +Moving baseline 112 datm_cdeps_iau_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.048339 - 0: The maximum resident set size (KB) = 622156 + 0: The total amount of wall time = 143.570262 + 0: The maximum resident set size (KB) = 617496 -Test 105 datm_cdeps_iau_gefs_intel PASS +Test 112 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_stochy_gefs_intel -Checking test 106 datm_cdeps_stochy_gefs_intel results .... -Moving baseline 106 datm_cdeps_stochy_gefs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_stochy_gefs_intel +Checking test 113 datm_cdeps_stochy_gefs_intel results .... +Moving baseline 113 datm_cdeps_stochy_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.455987 - 0: The maximum resident set size (KB) = 625760 + 0: The total amount of wall time = 144.560680 + 0: The maximum resident set size (KB) = 617324 -Test 106 datm_cdeps_stochy_gefs_intel PASS +Test 113 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_ciceC_cfsr_intel -Checking test 107 datm_cdeps_ciceC_cfsr_intel results .... -Moving baseline 107 datm_cdeps_ciceC_cfsr_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_ciceC_cfsr_intel +Checking test 114 datm_cdeps_ciceC_cfsr_intel results .... +Moving baseline 114 datm_cdeps_ciceC_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.216801 - 0: The maximum resident set size (KB) = 747588 + 0: The total amount of wall time = 150.625761 + 0: The maximum resident set size (KB) = 724704 -Test 107 datm_cdeps_ciceC_cfsr_intel PASS +Test 114 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_bulk_cfsr_intel -Checking test 108 datm_cdeps_bulk_cfsr_intel results .... -Moving baseline 108 datm_cdeps_bulk_cfsr_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_bulk_cfsr_intel +Checking test 115 datm_cdeps_bulk_cfsr_intel results .... +Moving baseline 115 datm_cdeps_bulk_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.479320 - 0: The maximum resident set size (KB) = 733648 + 0: The total amount of wall time = 151.496726 + 0: The maximum resident set size (KB) = 736460 -Test 108 datm_cdeps_bulk_cfsr_intel PASS +Test 115 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_bulk_gefs_intel -Checking test 109 datm_cdeps_bulk_gefs_intel results .... -Moving baseline 109 datm_cdeps_bulk_gefs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_bulk_gefs_intel +Checking test 116 datm_cdeps_bulk_gefs_intel results .... +Moving baseline 116 datm_cdeps_bulk_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.482375 - 0: The maximum resident set size (KB) = 627388 + 0: The total amount of wall time = 142.512871 + 0: The maximum resident set size (KB) = 615136 -Test 109 datm_cdeps_bulk_gefs_intel PASS +Test 116 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_mx025_cfsr_intel -Checking test 110 datm_cdeps_mx025_cfsr_intel results .... -Moving baseline 110 datm_cdeps_mx025_cfsr_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_mx025_cfsr_intel +Checking test 117 datm_cdeps_mx025_cfsr_intel results .... +Moving baseline 117 datm_cdeps_mx025_cfsr_intel files .... Moving RESTART/20111001.120000.MOM.res.nc .........OK Moving RESTART/20111001.120000.MOM.res_1.nc .........OK Moving RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3222,16 +3611,16 @@ Moving baseline 110 datm_cdeps_mx025_cfsr_intel files .... Moving RESTART/iced.2011-10-01-43200.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 373.470375 - 0: The maximum resident set size (KB) = 674684 + 0: The total amount of wall time = 384.742831 + 0: The maximum resident set size (KB) = 671528 -Test 110 datm_cdeps_mx025_cfsr_intel PASS +Test 117 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_mx025_gefs_intel -Checking test 111 datm_cdeps_mx025_gefs_intel results .... -Moving baseline 111 datm_cdeps_mx025_gefs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_mx025_gefs_intel +Checking test 118 datm_cdeps_mx025_gefs_intel results .... +Moving baseline 118 datm_cdeps_mx025_gefs_intel files .... Moving RESTART/20111001.120000.MOM.res.nc .........OK Moving RESTART/20111001.120000.MOM.res_1.nc .........OK Moving RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3239,72 +3628,72 @@ Moving baseline 111 datm_cdeps_mx025_gefs_intel files .... Moving RESTART/iced.2011-10-01-43200.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 366.024060 - 0: The maximum resident set size (KB) = 656188 + 0: The total amount of wall time = 385.346861 + 0: The maximum resident set size (KB) = 657132 -Test 111 datm_cdeps_mx025_gefs_intel PASS +Test 118 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_3072x1536_cfsr_intel -Checking test 112 datm_cdeps_3072x1536_cfsr_intel results .... -Moving baseline 112 datm_cdeps_3072x1536_cfsr_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_3072x1536_cfsr_intel +Checking test 119 datm_cdeps_3072x1536_cfsr_intel results .... +Moving baseline 119 datm_cdeps_3072x1536_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 278.481397 - 0: The maximum resident set size (KB) = 1988516 + 0: The total amount of wall time = 278.594706 + 0: The maximum resident set size (KB) = 1982240 -Test 112 datm_cdeps_3072x1536_cfsr_intel PASS +Test 119 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_gfs_intel -Checking test 113 datm_cdeps_gfs_intel results .... -Moving baseline 113 datm_cdeps_gfs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_gfs_intel +Checking test 120 datm_cdeps_gfs_intel results .... +Moving baseline 120 datm_cdeps_gfs_intel files .... Moving RESTART/20210323.060000.MOM.res.nc .........OK Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 279.504448 - 0: The maximum resident set size (KB) = 1987960 + 0: The total amount of wall time = 277.775365 + 0: The maximum resident set size (KB) = 1979600 -Test 113 datm_cdeps_gfs_intel PASS +Test 120 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_debug_cfsr_intel -Checking test 114 datm_cdeps_debug_cfsr_intel results .... -Moving baseline 114 datm_cdeps_debug_cfsr_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_debug_cfsr_intel +Checking test 121 datm_cdeps_debug_cfsr_intel results .... +Moving baseline 121 datm_cdeps_debug_cfsr_intel files .... Moving RESTART/20111001.060000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-01-21600.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 312.640245 - 0: The maximum resident set size (KB) = 736464 + 0: The total amount of wall time = 312.579889 + 0: The maximum resident set size (KB) = 714728 -Test 114 datm_cdeps_debug_cfsr_intel PASS +Test 121 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_control_cfsr_faster_intel -Checking test 115 datm_cdeps_control_cfsr_faster_intel results .... -Moving baseline 115 datm_cdeps_control_cfsr_faster_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_control_cfsr_faster_intel +Checking test 122 datm_cdeps_control_cfsr_faster_intel results .... +Moving baseline 122 datm_cdeps_control_cfsr_faster_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.871131 - 0: The maximum resident set size (KB) = 745848 + 0: The total amount of wall time = 147.814256 + 0: The maximum resident set size (KB) = 738716 -Test 115 datm_cdeps_control_cfsr_faster_intel PASS +Test 122 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/datm_cdeps_lnd_gswp3_intel -Checking test 116 datm_cdeps_lnd_gswp3_intel results .... -Moving baseline 116 datm_cdeps_lnd_gswp3_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/datm_cdeps_lnd_gswp3_intel +Checking test 123 datm_cdeps_lnd_gswp3_intel results .... +Moving baseline 123 datm_cdeps_lnd_gswp3_intel files .... Moving ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Moving ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Moving ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3312,16 +3701,16 @@ Moving baseline 116 datm_cdeps_lnd_gswp3_intel files .... Moving ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Moving ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 22.480832 - 0: The maximum resident set size (KB) = 316076 + 0: The total amount of wall time = 24.618846 + 0: The maximum resident set size (KB) = 313108 -Test 116 datm_cdeps_lnd_gswp3_intel PASS +Test 123 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_p8_atmlnd_sbs_intel -Checking test 117 control_p8_atmlnd_sbs_intel results .... -Moving baseline 117 control_p8_atmlnd_sbs_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_p8_atmlnd_sbs_intel +Checking test 124 control_p8_atmlnd_sbs_intel results .... +Moving baseline 124 control_p8_atmlnd_sbs_intel files .... Moving sfcf000.tile1.nc .........OK Moving sfcf000.tile2.nc .........OK Moving sfcf000.tile3.nc .........OK @@ -3405,16 +3794,16 @@ Moving baseline 117 control_p8_atmlnd_sbs_intel files .... Moving ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Moving ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 208.526991 - 0: The maximum resident set size (KB) = 1624312 + 0: The total amount of wall time = 206.595938 + 0: The maximum resident set size (KB) = 1650232 -Test 117 control_p8_atmlnd_sbs_intel PASS +Test 124 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmwav_control_noaero_p8_intel -Checking test 118 atmwav_control_noaero_p8_intel results .... -Moving baseline 118 atmwav_control_noaero_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/atmwav_control_noaero_p8_intel +Checking test 125 atmwav_control_noaero_p8_intel results .... +Moving baseline 125 atmwav_control_noaero_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -3456,16 +3845,16 @@ Moving baseline 118 atmwav_control_noaero_p8_intel files .... Moving 20210322.180000.out_grd.ww3 .........OK Moving ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 90.680721 - 0: The maximum resident set size (KB) = 1614944 + 0: The total amount of wall time = 92.242753 + 0: The maximum resident set size (KB) = 1624756 -Test 118 atmwav_control_noaero_p8_intel PASS +Test 125 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/control_atmwav_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/control_atmwav_intel -Checking test 119 control_atmwav_intel results .... -Moving baseline 119 control_atmwav_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/control_atmwav_intel +Checking test 126 control_atmwav_intel results .... +Moving baseline 126 control_atmwav_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -3508,16 +3897,16 @@ Moving baseline 119 control_atmwav_intel files .... Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK Moving 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 85.493004 - 0: The maximum resident set size (KB) = 622432 + 0: The total amount of wall time = 85.769958 + 0: The maximum resident set size (KB) = 627840 -Test 119 control_atmwav_intel PASS +Test 126 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmaero_control_p8_intel -Checking test 120 atmaero_control_p8_intel results .... -Moving baseline 120 atmaero_control_p8_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/atmaero_control_p8_intel +Checking test 127 atmaero_control_p8_intel results .... +Moving baseline 127 atmaero_control_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3560,16 +3949,16 @@ Moving baseline 120 atmaero_control_p8_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.011647 - 0: The maximum resident set size (KB) = 2908988 + 0: The total amount of wall time = 228.693295 + 0: The maximum resident set size (KB) = 2925096 -Test 120 atmaero_control_p8_intel PASS +Test 127 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmaero_control_p8_rad_intel -Checking test 121 atmaero_control_p8_rad_intel results .... -Moving baseline 121 atmaero_control_p8_rad_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/atmaero_control_p8_rad_intel +Checking test 128 atmaero_control_p8_rad_intel results .... +Moving baseline 128 atmaero_control_p8_rad_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3612,16 +4001,16 @@ Moving baseline 121 atmaero_control_p8_rad_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.448151 - 0: The maximum resident set size (KB) = 2969220 + 0: The total amount of wall time = 262.400845 + 0: The maximum resident set size (KB) = 2978556 -Test 121 atmaero_control_p8_rad_intel PASS +Test 128 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/atmaero_control_p8_rad_micro_intel -Checking test 122 atmaero_control_p8_rad_micro_intel results .... -Moving baseline 122 atmaero_control_p8_rad_micro_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/atmaero_control_p8_rad_micro_intel +Checking test 129 atmaero_control_p8_rad_micro_intel results .... +Moving baseline 129 atmaero_control_p8_rad_micro_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3664,16 +4053,16 @@ Moving baseline 122 atmaero_control_p8_rad_micro_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.254453 - 0: The maximum resident set size (KB) = 2980284 + 0: The total amount of wall time = 281.980995 + 0: The maximum resident set size (KB) = 2992648 -Test 122 atmaero_control_p8_rad_micro_intel PASS +Test 129 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_atmaq_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_atmaq_intel -Checking test 123 regional_atmaq_intel results .... -Moving baseline 123 regional_atmaq_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_atmaq_intel +Checking test 130 regional_atmaq_intel results .... +Moving baseline 130 regional_atmaq_intel files .... Moving sfcf000.nc .........OK Moving sfcf003.nc .........OK Moving sfcf006.nc .........OK @@ -3688,16 +4077,16 @@ Moving baseline 123 regional_atmaq_intel files .... Moving RESTART/20190801.180000.phy_data.nc .........OK Moving RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1187.945263 - 0: The maximum resident set size (KB) = 5355848 + 0: The total amount of wall time = 944.107674 + 0: The maximum resident set size (KB) = 4999200 -Test 123 regional_atmaq_intel PASS +Test 130 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_atmaq_debug_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_atmaq_debug_intel -Checking test 124 regional_atmaq_debug_intel results .... -Moving baseline 124 regional_atmaq_debug_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_atmaq_debug_intel +Checking test 131 regional_atmaq_debug_intel results .... +Moving baseline 131 regional_atmaq_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK @@ -3710,16 +4099,16 @@ Moving baseline 124 regional_atmaq_debug_intel files .... Moving RESTART/20190801.130000.phy_data.nc .........OK Moving RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1615.538500 - 0: The maximum resident set size (KB) = 4790820 + 0: The total amount of wall time = 1380.099234 + 0: The maximum resident set size (KB) = 4418540 -Test 124 regional_atmaq_debug_intel PASS +Test 131 regional_atmaq_debug_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231108/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Natalie.Perlin/FV3_RT/rt_221558/regional_atmaq_faster_intel -Checking test 125 regional_atmaq_faster_intel results .... -Moving baseline 125 regional_atmaq_faster_intel files .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_209752/regional_atmaq_faster_intel +Checking test 132 regional_atmaq_faster_intel results .... +Moving baseline 132 regional_atmaq_faster_intel files .... Moving sfcf000.nc .........OK Moving sfcf003.nc .........OK Moving sfcf006.nc .........OK @@ -3734,12 +4123,836 @@ Moving baseline 125 regional_atmaq_faster_intel files .... Moving RESTART/20190801.180000.phy_data.nc .........OK Moving RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1348.453835 - 0: The maximum resident set size (KB) = 5352344 + 0: The total amount of wall time = 894.901441 + 0: The maximum resident set size (KB) = 4997716 + +Test 132 regional_atmaq_faster_intel PASS Tries: 2 + -Test 125 regional_atmaq_faster_intel PASS +REGRESSION TEST WAS SUCCESSFUL +Fri 01 Dec 2023 10:27:34 PM EST +Elapsed time: 02h:36m:23s. Have a nice day! +Mon 04 Dec 2023 09:30:01 AM EST +Start Regression test + +Testing UFSWM Hash: 29aa3bcd27bc0b1f1633c659fcfd81be157b29df +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) + e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-2299-ge5d08d4) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + c9d49288f5572e905f44f5c9d112feb6f4d80921 FV3 (remotes/origin/rrfsens_v0.2.0) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_dyn32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 427 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile s2swa_intel elapsed time 866 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_control_p8_intel +Checking test 001 cpld_control_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 351.644381 + 0: The maximum resident set size (KB) = 3071604 + +Test 001 cpld_control_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_restart_p8_intel +Checking test 002 cpld_restart_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 206.327968 + 0: The maximum resident set size (KB) = 3127788 + +Test 002 cpld_restart_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_control_qr_p8_intel +Checking test 003 cpld_control_qr_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 355.428530 + 0: The maximum resident set size (KB) = 3096168 + +Test 003 cpld_control_qr_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_restart_qr_p8_intel +Checking test 004 cpld_restart_qr_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 210.059012 + 0: The maximum resident set size (KB) = 2989608 + +Test 004 cpld_restart_qr_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_2threads_p8_intel +Checking test 005 cpld_2threads_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 322.199140 + 0: The maximum resident set size (KB) = 3383224 + +Test 005 cpld_2threads_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_decomp_p8_intel +Checking test 006 cpld_decomp_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 348.014717 + 0: The maximum resident set size (KB) = 3068888 + +Test 006 cpld_decomp_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/cpld_mpi_p8_intel +Checking test 007 cpld_mpi_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 295.561612 + 0: The maximum resident set size (KB) = 2997820 + +Test 007 cpld_mpi_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/control_p8_intel +Checking test 008 control_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 156.542401 + 0: The maximum resident set size (KB) = 1583624 + +Test 008 control_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/control_restart_p8_intel +Checking test 009 control_restart_p8_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 85.264329 + 0: The maximum resident set size (KB) = 750608 + +Test 009 control_restart_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/control_noqr_p8_intel +Checking test 010 control_noqr_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 157.389658 + 0: The maximum resident set size (KB) = 1570204 + +Test 010 control_noqr_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/control_restart_noqr_p8_intel +Checking test 011 control_restart_noqr_p8_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 85.268120 + 0: The maximum resident set size (KB) = 786248 + +Test 011 control_restart_noqr_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/control_decomp_p8_intel +Checking test 012 control_decomp_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 162.272086 + 0: The maximum resident set size (KB) = 1578936 + +Test 012 control_decomp_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/control_2threads_p8_intel +Checking test 013 control_2threads_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 137.991993 + 0: The maximum resident set size (KB) = 1670852 + +Test 013 control_2threads_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/conus13km_debug_intel +Checking test 014 conus13km_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 821.768459 + 0: The maximum resident set size (KB) = 1159504 + +Test 014 conus13km_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/conus13km_debug_qr_intel +Checking test 015 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 848.215686 + 0: The maximum resident set size (KB) = 793132 + +Test 015 conus13km_debug_qr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231130/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_91244/conus13km_debug_2threads_intel +Checking test 016 conus13km_debug_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 472.249087 + 0: The maximum resident set size (KB) = 1136492 + +Test 016 conus13km_debug_2threads_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 14 Nov 2023 08:51:30 AM EST -Elapsed time: 01h:31m:10s. Have a nice day! +Mon 04 Dec 2023 10:08:46 AM EST +Elapsed time: 00h:38m:50s. Have a nice day! From 5d7b17d3e0fc3813c81251bb5391f0ff1461fad2 Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Mon, 4 Dec 2023 12:28:24 -0500 Subject: [PATCH 30/30] update fv3 hash and revert change in gitmodules --- .gitmodules | 6 ++---- FV3 | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index ad0bcef771..a3775fc12d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "FV3"] path = FV3 -## url = https://github.com/NOAA-EMC/fv3atm -## branch = develop - url = https://github.com/JiliDong-NOAA/fv3atm - branch = rrfsens_v0.2.0 + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index c9d49288f5..ba6e8ea442 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c9d49288f5572e905f44f5c9d112feb6f4d80921 +Subproject commit ba6e8ea442b2d0d5992a8550db6d0c720ff338d2