From b924f45491ca14e908afab198b2bf7adf505b9bf Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 15 Apr 2021 00:47:52 +0000 Subject: [PATCH 01/79] Add GOCART submodule for prognostic aerosols. Update NEMS submodule to point to a development fork. --- .gitmodules | 11 +++++++---- GOCART | 1 + NEMS | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) create mode 160000 GOCART diff --git a/.gitmodules b/.gitmodules index 0c3b70cc3f..f06a7bef92 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,10 +2,6 @@ path = FV3 url = https://github.com/NOAA-EMC/fv3atm branch = develop -[submodule "NEMS"] - path = NEMS - url = https://github.com/NOAA-EMC/NEMS - branch = develop [submodule "FMS"] path = FMS url = https://github.com/NOAA-GFDL/FMS @@ -38,3 +34,10 @@ path = DATM url = https://github.com/NOAA-EMC/NEMSdatm branch = develop +[submodule "GOCART"] + path = GOCART + url = https://github.com/GEOS-ESM/GOCART + branch = feature/rmontuoro/fengsha +[submodule "NEMS"] + path = NEMS + url = https://github.com/rmontuoro/NEMS diff --git a/GOCART b/GOCART new file mode 160000 index 0000000000..13b2971f0f --- /dev/null +++ b/GOCART @@ -0,0 +1 @@ +Subproject commit 13b2971f0f4ba40b98655c3cc601db6f11a9e3f3 diff --git a/NEMS b/NEMS index 187628417c..0d10f11a30 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 187628417c1fb9b2c28c34eddc39b24d6dac2901 +Subproject commit 0d10f11a30554f70acd21d0db7186125665d4455 From 240bd2523822caefa8d527e2742d5cc55c768b13 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 15 Apr 2021 03:04:58 +0000 Subject: [PATCH 02/79] Update build system to include the GOCART component. Add the 'ATMAERO' app configuration option to build the UFS weather model as a coupled atmosphere-aerosol system. --- CMakeLists.txt | 19 ++++++++++++++++++- build.sh | 3 +++ cmake/configure_apps.cmake | 8 ++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 735f5d8449..34b2c29267 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,6 +33,7 @@ set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") # Component Options set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") +set(GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(CICE6 OFF CACHE BOOL "Enable CICE6") set(WW3 OFF CACHE BOOL "Enable WW3") @@ -42,7 +43,7 @@ set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") # Valid applications and choices -list(APPEND VALID_APPS ATM ATMW S2S S2SW DATM DATM_NEMS) +list(APPEND VALID_APPS ATM ATMAERO ATMW S2S S2SW DATM DATM_NEMS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -97,6 +98,7 @@ include(cmake/configure_apps.cmake) message("") message("FMS .............. ${FMS}") message("FV3 .............. ${FV3}") +message("GOCART ........... ${GOCART}") message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") @@ -185,6 +187,15 @@ if(FV3) add_subdirectory(FV3) endif() +############################################################################### +### GOCART +############################################################################### +if(GOCART) + set(BUILD_UFS ON) + include (ecbuild_system NO_POLICY_SCOPE) + add_subdirectory(GOCART) +endif() + ############################################################################### ### Wave components [WW3] ############################################################################### @@ -282,6 +293,12 @@ if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() +if(GOCART) + list(APPEND _ufs_defs_private FRONT_GSDCHEM=Aerosol_Cap) + add_dependencies(ufs UFS) + target_link_libraries(ufs PUBLIC UFS) +endif() + if(WW3) add_dependencies(ufs ww3_nems) list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) diff --git a/build.sh b/build.sh index 08e97ef5d9..739cb7a36c 100755 --- a/build.sh +++ b/build.sh @@ -18,7 +18,10 @@ BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} [[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" +CMAKE_FLAGS+=" -DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}" +CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${CMAKE_MODULE_PATH}" CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" +CMAKE_FLAGS+=" -DAPP=${APP}" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index a02c79e30a..fbde3fb950 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -53,3 +53,11 @@ if(APP MATCHES "^(S2S|S2SW)$") message("Configuring UFS app in S2S mode") endif() endif() + +if(APP MATCHES "^(ATMAERO)$") + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + set(GOCART ON CACHE BOOL "Enable GOCART" FORCE) + message("Configuring UFS app in Atmosphere with Aerosols mode") +endif() From a87bb49a4fb25ffc10f15b37355d1fe2c2a78b3d Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 15 Apr 2021 03:07:06 +0000 Subject: [PATCH 03/79] Add modulefile including additional dependencies for the UFS-Aerosols (GOCART) component on Hera. --- modulefiles/ufs_aerosols_hera.intel | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modulefiles/ufs_aerosols_hera.intel diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel new file mode 100644 index 0000000000..b44cbc26b0 --- /dev/null +++ b/modulefiles/ufs_aerosols_hera.intel @@ -0,0 +1,22 @@ +#%Module + +module use /scratch1/NCEPDEV/nems/Raffaele.Montuoro/dev/nasa/ufs/lib/hpc-stack/1.1.0-nasa/modulefiles/stack + +module load hpc/1.1.0-nasa +module load hpc-intel/18.0.5.274 +module load hpc-impi/2018.0.4 + +module load cmake +module load ecbuild +module load esma_cmake +module load cmakemodules +module load gftl-shared +module load pflogger +module load yafyaml +module load mapl + +module load intelpython/3.6.8 + +# use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. +# RDMA operations are explicitly used in MAPL when writing output files. +setenv I_MPI_FABRICS shm:ofa From a4e60b7cc8b081a948896ec8f2ee6c71c93d9ce9 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 25 Apr 2021 21:33:41 +0000 Subject: [PATCH 04/79] Update NEMS submodule. --- NEMS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEMS b/NEMS index 0d10f11a30..a7efc8a022 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 0d10f11a30554f70acd21d0db7186125665d4455 +Subproject commit a7efc8a022c05eb129e2935b75e263e5090b9140 From 3c74d373deba457d6481f40d52d23bf5b1bc658b Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 25 Apr 2021 21:42:03 +0000 Subject: [PATCH 05/79] Properly add GOCART dependency to CMakeLists.txt. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e85867ea23..7f0ca30c14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -282,9 +282,9 @@ if(JEDI_DRIVER) endif() if(GOCART) - list(APPEND _ufs_defs_private FRONT_GSDCHEM=Aerosol_Cap) add_dependencies(ufs UFS) - target_link_libraries(ufs PUBLIC UFS) + list(APPEND _ufs_defs_private FRONT_GSDCHEM=Aerosol_Cap) + list(APPEND _ufs_libs_public UFS) endif() if(WW3) From a5539060119f4427edc54978ee2e46ec28449f3b Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 26 Apr 2021 02:29:58 +0000 Subject: [PATCH 06/79] Update FV3 submodule to point to forked repository. --- .gitmodules | 8 ++++---- FV3 | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index 7918fa0f6c..c6d2c5c783 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,3 @@ -[submodule "FV3"] - path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop [submodule "FMS"] path = FMS url = https://github.com/NOAA-GFDL/FMS @@ -45,3 +41,7 @@ path = NEMS url = https://github.com/rmontuoro/NEMS branch = feature/ufs-gocart-integration +[submodule "FV3"] + path = FV3 + url = https://github.com/rmontuoro/fv3atm + branch = feature/gocart-integration diff --git a/FV3 b/FV3 index bfb8da5c9a..61dccf3025 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bfb8da5c9ac639ca6c80428c27cad8f92d9ac162 +Subproject commit 61dccf3025dc7eb3d466878d2a555a7f212e55c7 From cb0ec0b1c2d79cc6401805acf6559bca3d3bffa5 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 28 Apr 2021 04:43:54 +0000 Subject: [PATCH 07/79] Add default values for environment variables to build script. --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 739cb7a36c..f2caa7fbe1 100755 --- a/build.sh +++ b/build.sh @@ -18,10 +18,10 @@ BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} [[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" -CMAKE_FLAGS+=" -DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}" -CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${CMAKE_MODULE_PATH}" +CMAKE_FLAGS+=" -DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH:-""}" +CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${CMAKE_MODULE_PATH:-""}" CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" -CMAKE_FLAGS+=" -DAPP=${APP}" +CMAKE_FLAGS+=" -DAPP=${APP:-NONE}" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} From b3a646d3920d75c540d2c9300e1e1b69189b66f5 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 28 Apr 2021 04:45:00 +0000 Subject: [PATCH 08/79] Remove unnecessary module for aerosol component on Hera. --- modulefiles/ufs_aerosols_hera.intel | 1 - 1 file changed, 1 deletion(-) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index b44cbc26b0..5d341c90e9 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -6,7 +6,6 @@ module load hpc/1.1.0-nasa module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -module load cmake module load ecbuild module load esma_cmake module load cmakemodules From e434544cf5dbb20e22096675a59e45936e32a794 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sat, 1 May 2021 01:33:32 +0000 Subject: [PATCH 09/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c7f26f0504..c7e0b39886 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c7f26f0504298c0308278ff3668978c7aeae79cf +Subproject commit c7e0b3988667ee5d78aba4484deab26b9600d175 From c524f22cc31b5885d07c84b7b16052306ff8bc46 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sat, 1 May 2021 05:21:33 +0000 Subject: [PATCH 10/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c7e0b39886..8a98b80f60 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c7e0b3988667ee5d78aba4484deab26b9600d175 +Subproject commit 8a98b80f60d3520e1c288d2476527787650e909e From 52ee7aee4769f7a93592c7dea2953dc78da70aca Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 3 May 2021 16:36:42 +0000 Subject: [PATCH 11/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 9f7c611edf..374d895c9f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9f7c611edfe251657e322b88b0e5780f7c9e2dc9 +Subproject commit 374d895c9f02f4c71a1d6f7d2b65e76010e2e268 From c23854343cd544f8dfcee63bf21f7cce7f491a3b Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 4 May 2021 01:36:03 +0000 Subject: [PATCH 12/79] Use proper CMake version when GOCART is enabled. --- modulefiles/ufs_aerosols_hera.intel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index 5d341c90e9..117dfd9a0b 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -16,6 +16,8 @@ module load mapl module load intelpython/3.6.8 +module load cmake/3.17.2 + # use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. # RDMA operations are explicitly used in MAPL when writing output files. setenv I_MPI_FABRICS shm:ofa From d6ca95dc7cab7a9f6decbd04efa326d8934f59e3 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 4 May 2021 01:37:35 +0000 Subject: [PATCH 13/79] Remove CMAKE_FLAGS settings for APP in build script. --- build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sh b/build.sh index f2caa7fbe1..b7075fb108 100755 --- a/build.sh +++ b/build.sh @@ -21,7 +21,6 @@ mkdir -p ${BUILD_DIR} CMAKE_FLAGS+=" -DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH:-""}" CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${CMAKE_MODULE_PATH:-""}" CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" -CMAKE_FLAGS+=" -DAPP=${APP:-NONE}" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} From ffa23a4030cfb4d6e1fed7fde9fa1b04d58eeb69 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 13 May 2021 03:23:16 +0000 Subject: [PATCH 14/79] Revert NEMS submodule to point to authoritative repository. --- .gitmodules | 8 ++++---- NEMS | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index c6d2c5c783..138e6bb528 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,11 +37,11 @@ [submodule "CDEPS-interface/CDEPS"] path = CDEPS-interface/CDEPS url = https://github.com/NOAA-EMC/CDEPS -[submodule "NEMS"] - path = NEMS - url = https://github.com/rmontuoro/NEMS - branch = feature/ufs-gocart-integration [submodule "FV3"] path = FV3 url = https://github.com/rmontuoro/fv3atm branch = feature/gocart-integration +[submodule "NEMS"] + path = NEMS + url = https://github.com/NOAA-EMC/NEMS + branch = develop diff --git a/NEMS b/NEMS index 9a159c2543..b593c6c56d 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 9a159c2543685d95728363a7497a444ca82bea4f +Subproject commit b593c6c56d6bc3644af69370127f9e99d22b4a1d From 04876cd356ad09a88a4309b194e48e6610ef04d0 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 13 May 2021 03:48:24 +0000 Subject: [PATCH 15/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index cdd0739511..a0e64839e9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit cdd0739511543d1cedf9426a1b71a4c88964eac0 +Subproject commit a0e64839e9324ad64cb3d8f9c15fcf076851d7ac From 9dec5aead7e90821957c3fce8c30c3ee925f7b7f Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 16 May 2021 05:18:32 +0000 Subject: [PATCH 16/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index a0e64839e9..c9a40cd0fe 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a0e64839e9324ad64cb3d8f9c15fcf076851d7ac +Subproject commit c9a40cd0fed61b571c78e78de4b22b22fa6a8b54 From 1f136f4c83f3932a18020eaefb56add601899f81 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 05:30:41 +0000 Subject: [PATCH 17/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c9a40cd0fe..8754b1eb0a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c9a40cd0fed61b571c78e78de4b22b22fa6a8b54 +Subproject commit 8754b1eb0a9c2a0fbb7e0075bf6a6beaecdfbdd4 From 73194762d440f08c316db89c523abc8d8677c07f Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 05:32:05 +0000 Subject: [PATCH 18/79] Update MAPL to custom version 2.6.8-patch1 on Hera. --- modulefiles/ufs_aerosols_hera.intel | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index 117dfd9a0b..a961bc4a0c 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -10,9 +10,8 @@ module load ecbuild module load esma_cmake module load cmakemodules module load gftl-shared -module load pflogger module load yafyaml -module load mapl +module load mapl/2.6.8p1 module load intelpython/3.6.8 From 65eb15db5c1f7469e5bbf2beeec46eeae041777d Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 05:32:24 +0000 Subject: [PATCH 19/79] Update GOCART submodule. --- GOCART | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GOCART b/GOCART index 13b2971f0f..a357acd0e5 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit 13b2971f0f4ba40b98655c3cc601db6f11a9e3f3 +Subproject commit a357acd0e511616131f96889f5a02e3096490a54 From 15f09d4507689691e6491162df8dee1279a31356 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 05:53:51 +0000 Subject: [PATCH 20/79] Update CMake module to version 3.20.1 on Hera. --- modulefiles/ufs_aerosols_hera.intel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index a961bc4a0c..6c27e4177f 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -15,7 +15,7 @@ module load mapl/2.6.8p1 module load intelpython/3.6.8 -module load cmake/3.17.2 +module load cmake/3.20.1 # use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. # RDMA operations are explicitly used in MAPL when writing output files. From 44d68674aece4eeebbfee79c180e2f863a91bb99 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 13:38:54 +0000 Subject: [PATCH 21/79] Update NEMS submodule to point to forked repository, replacing GSDCHEM settings with GOCART. Update CMakeLists.txt to reflect changes in NEMS. --- .gitmodules | 5 ++--- CMakeLists.txt | 2 +- NEMS | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index af4fb71aa9..71f061de90 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,8 +4,8 @@ branch = feature/gocart-integration [submodule "NEMS"] path = NEMS - url = https://github.com/NOAA-EMC/NEMS - branch = develop + url = https://github.com/rmontuoro/NEMS + branch = feature/ufs-gocart-integration [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 @@ -41,4 +41,3 @@ [submodule "CDEPS-interface/CDEPS"] path = CDEPS-interface/CDEPS url = https://github.com/NOAA-EMC/CDEPS - diff --git a/CMakeLists.txt b/CMakeLists.txt index 379c81a9ed..7a7e6897bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -242,7 +242,7 @@ endif() if(GOCART) add_dependencies(ufs UFS) - list(APPEND _ufs_defs_private FRONT_GSDCHEM=Aerosol_Cap) + list(APPEND _ufs_defs_private FRONT_GOCART=Aerosol_Cap) list(APPEND _ufs_libs_public UFS) endif() diff --git a/NEMS b/NEMS index b593c6c56d..db79b93432 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit b593c6c56d6bc3644af69370127f9e99d22b4a1d +Subproject commit db79b934323040a2e6027d4d6488dba39a86d80c From 063e53bd201a66d13a9a774d1dd07ab3e6ccc07e Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 15:47:29 +0000 Subject: [PATCH 22/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 8754b1eb0a..9f8c15988b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8754b1eb0a9c2a0fbb7e0075bf6a6beaecdfbdd4 +Subproject commit 9f8c15988bc85f5096b9dfaeea74f7351ba213bb From bc2a7c1d1aa6a018b025086619928ac8e7e54ef1 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 17:19:27 +0000 Subject: [PATCH 23/79] Point CMEPS submodule to forked repository to add GOCART coupling fields to YAML dictionary. --- .gitmodules | 4 ++++ CMEPS-interface/CMEPS | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 71f061de90..2518f2ce6e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -41,3 +41,7 @@ [submodule "CDEPS-interface/CDEPS"] path = CDEPS-interface/CDEPS url = https://github.com/NOAA-EMC/CDEPS +[submodule "CMEPS-interface/CMEPS"] + path = CMEPS-interface/CMEPS + url = https://github.com/rmontuoro/CMEPS + branch = feature/add-chemistry-fields diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index a42078db69..a462c73944 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit a42078db69c3ffe1ab420a8db38d4f0d55edf8a0 +Subproject commit a462c73944d42e5edaf7e60fcf7281e489a013a2 From 4e2a7c68f0123e50614b2268e4bd350a42ff66bb Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 21 May 2021 18:10:21 +0000 Subject: [PATCH 24/79] Fix .gitmodules --- .gitmodules | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitmodules b/.gitmodules index 2518f2ce6e..35f84a4b95 100644 --- a/.gitmodules +++ b/.gitmodules @@ -20,8 +20,8 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/NOAA-EMC/CMEPS.git - branch = emc/develop + url = https://github.com/rmontuoro/CMEPS.git + branch = feature/add-chemistry-fields [submodule "MOM6"] path = MOM6-interface/MOM6 url = https://github.com/NOAA-EMC/MOM6 @@ -37,11 +37,7 @@ [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART - branch = feature/rmontuoro/fengsha + branch = feature/rmontuoro/ufs-integration [submodule "CDEPS-interface/CDEPS"] path = CDEPS-interface/CDEPS url = https://github.com/NOAA-EMC/CDEPS -[submodule "CMEPS-interface/CMEPS"] - path = CMEPS-interface/CMEPS - url = https://github.com/rmontuoro/CMEPS - branch = feature/add-chemistry-fields From ff7f2a7a7f813bff798538da4d04696583b21e09 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 23 May 2021 17:56:43 +0000 Subject: [PATCH 25/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 9f8c15988b..6b0ef7e0ed 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9f8c15988bc85f5096b9dfaeea74f7351ba213bb +Subproject commit 6b0ef7e0ed7285f19a3161c75cf5978e74e1e744 From 759c56e30caee9d82f371065b8176466e7dd574c Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 23 May 2021 18:33:55 +0000 Subject: [PATCH 26/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 6b0ef7e0ed..fd0e4ef5f9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6b0ef7e0ed7285f19a3161c75cf5978e74e1e744 +Subproject commit fd0e4ef5f940ab1e289f3be6e15e28b07b9bdac0 From 839456f77b59dde1eba7476c949c89e663fb2f48 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 23 May 2021 21:34:18 +0000 Subject: [PATCH 27/79] Add fields required for GOCART coupling to fd_nems.yaml. --- tests/parm/fd_nems.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 993a5d8c61..823648dfff 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -693,6 +693,20 @@ canonical_units: W m-2 - standard_name: land_mask canonical_units: 1 + - standard_name: inst_cloud_frac_levels + canonical_units: 1 + - standard_name: inst_ice_nonconv_tendency_levels + canonical_units: kg m-2 s-1 + - standard_name: inst_liq_nonconv_tendency_levels + canonical_units: kg m-2 s-1 + - standard_name: inst_surface_soil_wetness + canonical_units: 1 + - standard_name: lake_fraction + canonical_units: 1 + - standard_name: ocean_fraction + canonical_units: 1 + - standard_name: surface_snow_area_fraction + canonical_units: 1 # #----------------------------------- # WW3 import From 1dbca3fc07ce974ebdc5e9928076d68b324f8cb8 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 23 May 2021 22:02:22 +0000 Subject: [PATCH 28/79] Reset CMEPS submodule to point to authoritative repository. --- .gitmodules | 6 +++--- CMEPS-interface/CMEPS | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 35f84a4b95..e250a1f0c5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,10 +18,10 @@ path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules branch = develop -[submodule "CMEPS"] +[submodule "CMEPS-interface/CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/rmontuoro/CMEPS.git - branch = feature/add-chemistry-fields + url = https://github.com/NOAA-EMC/CMEPS + branch = emc/develop [submodule "MOM6"] path = MOM6-interface/MOM6 url = https://github.com/NOAA-EMC/MOM6 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index a462c73944..a42078db69 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit a462c73944d42e5edaf7e60fcf7281e489a013a2 +Subproject commit a42078db69c3ffe1ab420a8db38d4f0d55edf8a0 From f39298aa434fd18db7f693aab99691ff176ed21f Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 23 May 2021 22:51:08 -0500 Subject: [PATCH 29/79] Update fd_nems.yaml to include ice fraction field exported by the atmospheric model. --- tests/parm/fd_nems.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 823648dfff..71b5fe7f56 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -703,6 +703,8 @@ canonical_units: 1 - standard_name: lake_fraction canonical_units: 1 + - standard_name: ice_fraction_in_atm + canonical_units: 1 - standard_name: ocean_fraction canonical_units: 1 - standard_name: surface_snow_area_fraction From ccdb6bbed221c4dd7903a40c4cc15d4570ac9c38 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 23 May 2021 22:53:10 -0500 Subject: [PATCH 30/79] Update FV3 and GOCART submodules. --- FV3 | 2 +- GOCART | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FV3 b/FV3 index fd0e4ef5f9..c01c1f76ed 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fd0e4ef5f940ab1e289f3be6e15e28b07b9bdac0 +Subproject commit c01c1f76ed201a583d87b6994925c19b95e976d9 diff --git a/GOCART b/GOCART index a357acd0e5..d7a965f4bb 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit a357acd0e511616131f96889f5a02e3096490a54 +Subproject commit d7a965f4bb84be2e426977b9da4e9e5536232b78 From 81d6e4677c30c7ed19419de23545bc91133467b7 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 24 May 2021 00:42:36 -0500 Subject: [PATCH 31/79] Add log file from regression tests on Orion. --- tests/RegressionTests_orion.intel.log | 760 +++++++++++++------------- 1 file changed, 380 insertions(+), 380 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index e246b91a71..a6fb914d44 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,31 +1,31 @@ -Thu May 20 08:31:30 CDT 2021 +Sun May 23 22:59:05 CDT 2021 Start Regression test -Compile 001 elapsed time 612 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 697 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 003 elapsed time 240 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 644 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 637 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 587 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 689 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 720 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 635 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 706 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 011 elapsed time 624 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 522 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 540 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 551 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 140 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 144 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 017 elapsed time 141 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 018 elapsed time 277 seconds. APP=DATM_NEMS -Compile 019 elapsed time 126 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 185 seconds. APP=DATM -Compile 021 elapsed time 125 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 526 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_control +Compile 001 elapsed time 577 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 831 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 003 elapsed time 168 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 580 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 482 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 507 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 511 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 1153 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 682 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 1082 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 011 elapsed time 555 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 745 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 777 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 1117 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 534 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 654 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 017 elapsed time 133 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 018 elapsed time 174 seconds. APP=DATM_NEMS +Compile 019 elapsed time 121 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 722 seconds. APP=DATM +Compile 021 elapsed time 109 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 561 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_control Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -75,13 +75,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 102.315503 + 0: The total amount of wall time = 103.594576 Test 001 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restart Checking test 002 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -131,13 +131,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 112.368128 + 0: The total amount of wall time = 70.250198 Test 002 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_controlfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_controlfrac Checking test 003 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -187,13 +187,13 @@ Checking test 003 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 104.318918 + 0: The total amount of wall time = 105.767597 Test 003 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restartfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restartfrac Checking test 004 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -243,13 +243,13 @@ Checking test 004 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 112.424542 + 0: The total amount of wall time = 70.109450 Test 004 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_2threads Checking test 005 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -299,13 +299,13 @@ Checking test 005 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 104.457941 + 0: The total amount of wall time = 119.254759 Test 005 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_decomp Checking test 006 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -355,13 +355,13 @@ Checking test 006 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 100.264923 + 0: The total amount of wall time = 102.222238 Test 006 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_satmedmf +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_satmedmf Checking test 007 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -411,13 +411,13 @@ Checking test 007 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 105.140211 + 0: The total amount of wall time = 105.612201 Test 007 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_ca +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_ca Checking test 008 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 109.701397 + 0: The total amount of wall time = 104.467717 Test 008 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_control_c192 Checking test 009 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -523,13 +523,13 @@ Checking test 009 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 427.323448 + 0: The total amount of wall time = 383.363949 Test 009 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restart_c192 Checking test 010 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -579,13 +579,13 @@ Checking test 010 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 338.266357 + 0: The total amount of wall time = 279.195061 Test 010 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_controlfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_controlfrac_c192 Checking test 011 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -635,13 +635,13 @@ Checking test 011 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 427.966915 + 0: The total amount of wall time = 388.282798 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restartfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restartfrac_c192 Checking test 012 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -691,13 +691,13 @@ Checking test 012 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 318.908603 + 0: The total amount of wall time = 278.596127 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_control_c384 Checking test 013 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -750,13 +750,13 @@ Checking test 013 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1604.899945 + 0: The total amount of wall time = 1320.647958 Test 013 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restart_c384 Checking test 014 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -809,13 +809,13 @@ Checking test 014 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 695.188077 + 0: The total amount of wall time = 728.743154 Test 014 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_controlfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_controlfrac_c384 Checking test 015 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -868,13 +868,13 @@ Checking test 015 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1589.883521 + 0: The total amount of wall time = 1312.774869 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restartfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restartfrac_c384 Checking test 016 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -927,13 +927,13 @@ Checking test 016 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 693.506486 + 0: The total amount of wall time = 737.792059 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmark +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmark Checking test 017 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -986,13 +986,13 @@ Checking test 017 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1079.247455 + 0: The total amount of wall time = 878.214651 Test 017 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restart_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmark +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restart_bmark Checking test 018 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1045,13 +1045,13 @@ Checking test 018 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 497.627865 + 0: The total amount of wall time = 474.701934 Test 018 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmarkfrac Checking test 019 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1104,13 +1104,13 @@ Checking test 019 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1150.146338 + 0: The total amount of wall time = 833.709078 Test 019 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restart_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restart_bmarkfrac Checking test 020 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1163,13 +1163,13 @@ Checking test 020 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 442.900662 + 0: The total amount of wall time = 495.209754 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmarkfrac_v16 Checking test 021 cpld_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1212,13 +1212,13 @@ Checking test 021 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 818.043617 + 0: The total amount of wall time = 788.152263 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmarkfrac_v16_nsst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmarkfrac_v16_nsst Checking test 022 cpld_bmarkfrac_v16_nsst results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 022 cpld_bmarkfrac_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 831.410981 + 0: The total amount of wall time = 807.207859 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_restart_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_restart_bmarkfrac_v16 Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 410.936422 + 0: The total amount of wall time = 448.200797 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmark_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmark_wave +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmark_wave Checking test 024 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1372,13 +1372,13 @@ Checking test 024 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1218.804505 + 0: The total amount of wall time = 976.214862 Test 024 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmarkfrac_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmarkfrac_wave Checking test 025 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1434,13 +1434,13 @@ Checking test 025 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1265.398581 + 0: The total amount of wall time = 968.863683 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_bmarkfrac_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_bmarkfrac_wave_v16 Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1485,13 +1485,13 @@ Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 884.030280 + 0: The total amount of wall time = 887.989298 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_control_wave Checking test 027 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1544,13 +1544,13 @@ Checking test 027 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 172.230128 + 0: The total amount of wall time = 126.865101 Test 027 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_debug Checking test 028 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1600,13 +1600,13 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 424.751694 + 0: The total amount of wall time = 315.972879 Test 028 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/cpld_debugfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_debugfrac +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/cpld_debugfrac Checking test 029 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1656,13 +1656,13 @@ Checking test 029 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 413.851456 + 0: The total amount of wall time = 349.622075 Test 029 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_control Checking test 030 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1727,13 +1727,13 @@ Checking test 030 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.911236 + 0: The total amount of wall time = 51.770711 Test 030 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_decomp Checking test 031 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1798,13 +1798,13 @@ Checking test 031 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.495475 + 0: The total amount of wall time = 49.904982 Test 031 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_2threads Checking test 032 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1869,13 +1869,13 @@ Checking test 032 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.135569 + 0: The total amount of wall time = 63.367724 Test 032 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_restart Checking test 033 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1922,13 +1922,13 @@ Checking test 033 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 29.838089 + 0: The total amount of wall time = 27.335296 Test 033 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_read_inc +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_read_inc +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_read_inc Checking test 034 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,13 +1993,13 @@ Checking test 034 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.876197 + 0: The total amount of wall time = 49.307688 Test 034 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_wrtGauss_netcdf_esmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_wrtGauss_netcdf_esmf Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.926089 + 0: The total amount of wall time = 240.075175 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_wrtGauss_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_wrtGauss_netcdf Checking test 036 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2095,13 +2095,13 @@ Checking test 036 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.611988 + 0: The total amount of wall time = 44.597868 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_wrtGauss_netcdf_parallel Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2146,13 +2146,13 @@ Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 74.888850 + 0: The total amount of wall time = 98.086896 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_wrtGlatlon_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_wrtGlatlon_netcdf Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2197,13 +2197,13 @@ Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.605630 + 0: The total amount of wall time = 44.577325 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_wrtGauss_nemsio +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_wrtGauss_nemsio Checking test 039 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2248,13 +2248,13 @@ Checking test 039 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.277320 + 0: The total amount of wall time = 45.338758 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_wrtGauss_nemsio_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_wrtGauss_nemsio_c192 Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.582910 + 0: The total amount of wall time = 124.679870 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stochy +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_stochy Checking test 041 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,13 +2370,13 @@ Checking test 041 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.903306 + 0: The total amount of wall time = 53.281389 Test 041 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_ca +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_ca Checking test 042 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2441,13 +2441,13 @@ Checking test 042 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 34.947576 + 0: The total amount of wall time = 37.454704 Test 042 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_lndp +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_lndp Checking test 043 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2512,13 +2512,13 @@ Checking test 043 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 104.388660 + 0: The total amount of wall time = 57.809623 Test 043 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_iau -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_iau +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_iau +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_iau Checking test 044 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2583,13 +2583,13 @@ Checking test 044 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.706413 + 0: The total amount of wall time = 48.587200 Test 044 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_lheatstrg +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_lheatstrg Checking test 045 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2634,13 +2634,13 @@ Checking test 045 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.837102 + 0: The total amount of wall time = 47.064618 Test 045 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_multigases_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_multigases_repro +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_multigases_repro Checking test 046 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2711,13 +2711,13 @@ Checking test 046 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 153.304798 + 0: The total amount of wall time = 107.433858 Test 046 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_control_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control_32bit +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_control_32bit Checking test 047 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2782,13 +2782,13 @@ Checking test 047 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.892815 + 0: The total amount of wall time = 44.950314 Test 047 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stretched -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_stretched +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stretched +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_stretched Checking test 048 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,13 +2841,13 @@ Checking test 048 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.097663 + 0: The total amount of wall time = 250.931432 Test 048 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_stretched_nest +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stretched_nest +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_stretched_nest Checking test 049 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2911,13 +2911,13 @@ Checking test 049 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 244.874317 + 0: The total amount of wall time = 277.659849 Test 049 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_control Checking test 050 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2925,25 +2925,25 @@ Checking test 050 fv3_regional_control 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 = 286.109223 + 0: The total amount of wall time = 263.542561 Test 050 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_restart Checking test 051 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 162.033744 + 0: The total amount of wall time = 148.257229 Test 051 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_quilt Checking test 052 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2954,13 +2954,13 @@ Checking test 052 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 255.253488 + 0: The total amount of wall time = 224.837452 Test 052 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_quilt_hafs Checking test 053 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2969,13 +2969,13 @@ Checking test 053 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 262.309822 + 0: The total amount of wall time = 225.698341 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_quilt_netcdf_parallel Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK @@ -2983,13 +2983,13 @@ Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 266.245165 + 0: The total amount of wall time = 225.865081 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_quilt_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_quilt_RRTMGP Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -3000,13 +3000,13 @@ Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 308.646814 + 0: The total amount of wall time = 284.190749 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmp +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmp Checking test 056 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3051,13 +3051,13 @@ Checking test 056 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 99.751461 + 0: The total amount of wall time = 50.707712 Test 056 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmprad_gwd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmprad_gwd Checking test 057 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3102,13 +3102,13 @@ Checking test 057 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 54.036978 + 0: The total amount of wall time = 50.989153 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmprad_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmprad_noahmp Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3153,13 +3153,13 @@ Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.565707 + 0: The total amount of wall time = 48.796333 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_csawmg +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_csawmg Checking test 059 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3204,13 +3204,13 @@ Checking test 059 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 117.272758 + 0: The total amount of wall time = 113.504031 Test 059 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_satmedmf +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_satmedmf Checking test 060 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3255,13 +3255,13 @@ Checking test 060 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 56.337530 + 0: The total amount of wall time = 53.024068 Test 060 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_satmedmfq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_satmedmfq +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_satmedmfq Checking test 061 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3306,13 +3306,13 @@ Checking test 061 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 52.860080 + 0: The total amount of wall time = 55.218156 Test 061 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmp_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmp_32bit Checking test 062 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3357,13 +3357,13 @@ Checking test 062 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 44.496539 + 0: The total amount of wall time = 46.303506 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmprad_32bit_post +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmprad_32bit_post Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3412,13 +3412,13 @@ Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 80.604602 + 0: The total amount of wall time = 80.130724 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_cpt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_cpt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_cpt +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_cpt Checking test 064 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3469,13 +3469,13 @@ Checking test 064 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 269.774828 + 0: The total amount of wall time = 265.167020 Test 064 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gsd +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gsd Checking test 065 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3564,13 +3564,13 @@ Checking test 065 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.729190 + 0: The total amount of wall time = 182.937333 Test 065 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_rrfs_v1alpha +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_rrfs_v1alpha Checking test 066 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,13 +3635,13 @@ Checking test 066 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.393230 + 0: The total amount of wall time = 99.796831 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rap +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_rap Checking test 067 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3706,13 +3706,13 @@ Checking test 067 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.451071 + 0: The total amount of wall time = 112.579925 Test 067 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_hrrr Checking test 068 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3777,13 +3777,13 @@ Checking test 068 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.537052 + 0: The total amount of wall time = 97.333048 Test 068 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_thompson Checking test 069 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3848,13 +3848,13 @@ Checking test 069 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.388129 + 0: The total amount of wall time = 93.129528 Test 069 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_thompson_no_aero Checking test 070 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3919,13 +3919,13 @@ Checking test 070 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.931601 + 0: The total amount of wall time = 91.598142 Test 070 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_rrfs_v1beta Checking test 071 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3990,13 +3990,13 @@ Checking test 071 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.261587 + 0: The total amount of wall time = 99.209803 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16 Checking test 072 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4073,13 +4073,13 @@ Checking test 072 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 265.985656 + 0: The total amount of wall time = 223.875633 Test 072 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_restart Checking test 073 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4126,13 +4126,13 @@ Checking test 073 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 257.961165 + 0: The total amount of wall time = 182.448978 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_stochy Checking test 074 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4197,13 +4197,13 @@ Checking test 074 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 57.277996 + 0: The total amount of wall time = 58.279368 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_RRTMGP Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4280,13 +4280,13 @@ Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 336.812778 + 0: The total amount of wall time = 258.377872 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfsv16_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfsv16_csawmg Checking test 076 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4331,13 +4331,13 @@ Checking test 076 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.224498 + 0: The total amount of wall time = 136.086891 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfsv16_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfsv16_csawmgt Checking test 077 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4382,13 +4382,13 @@ Checking test 077 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.263326 + 0: The total amount of wall time = 134.571425 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gocart_clm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gocart_clm +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gocart_clm Checking test 078 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4433,13 +4433,13 @@ Checking test 078 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 70.530653 + 0: The total amount of wall time = 62.435901 Test 078 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_flake Checking test 079 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4504,13 +4504,13 @@ Checking test 079 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 211.616130 + 0: The total amount of wall time = 108.936344 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_HAFS_v0_hwrf_thompson Checking test 080 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4575,13 +4575,13 @@ Checking test 080 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 242.385756 + 0: The total amount of wall time = 157.100750 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_esg_HAFS_v0_hwrf_thompson Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4596,13 +4596,13 @@ Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 338.841384 + 0: The total amount of wall time = 292.062693 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfsv16_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfsv16_ugwpv1 Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4661,13 +4661,13 @@ Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 330.631726 + 0: The total amount of wall time = 182.655492 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfsv16_ugwpv1_warmstart Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4726,13 +4726,13 @@ Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 260.582508 + 0: The total amount of wall time = 187.664924 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_ras Checking test 084 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4797,13 +4797,13 @@ Checking test 084 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.147019 + 0: The total amount of wall time = 100.536630 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_debug Checking test 085 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4868,13 +4868,13 @@ Checking test 085 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.142461 + 0: The total amount of wall time = 339.318721 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_RRTMGP_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_RRTMGP_debug Checking test 086 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4939,13 +4939,13 @@ Checking test 086 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.795171 + 0: The total amount of wall time = 267.201802 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_regional_control_debug Checking test 087 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -4953,13 +4953,13 @@ Checking test 087 fv3_regional_control_debug 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 = 377.047789 + 0: The total amount of wall time = 340.607581 Test 087 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_control_debug Checking test 088 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4986,13 +4986,13 @@ Checking test 088 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 185.192951 + 0: The total amount of wall time = 194.719309 Test 088 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_stretched_nest_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_stretched_nest_debug Checking test 089 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -5009,13 +5009,13 @@ Checking test 089 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 394.034671 + 0: The total amount of wall time = 402.711301 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gsd_debug Checking test 090 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5080,13 +5080,13 @@ Checking test 090 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.819221 + 0: The total amount of wall time = 232.169955 Test 090 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gsd_diag3d_debug Checking test 091 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5151,13 +5151,13 @@ Checking test 091 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.052846 + 0: The total amount of wall time = 356.246075 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_thompson_debug Checking test 092 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5222,13 +5222,13 @@ Checking test 092 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.067607 + 0: The total amount of wall time = 362.368883 Test 092 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_thompson_no_aero_debug Checking test 093 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5293,13 +5293,13 @@ Checking test 093 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.820381 + 0: The total amount of wall time = 347.339708 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_rrfs_v1beta_debug Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5364,13 +5364,13 @@ Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.586550 + 0: The total amount of wall time = 212.797138 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_rrfs_v1alpha_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_rrfs_v1alpha_debug Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5435,13 +5435,13 @@ Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.256252 + 0: The total amount of wall time = 234.800828 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_HAFS_v0_hwrf_thompson_debug Checking test 096 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5506,13 +5506,13 @@ Checking test 096 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 262.906097 + 0: The total amount of wall time = 261.175737 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -5527,13 +5527,13 @@ Checking test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 420.563184 + 0: The total amount of wall time = 406.457343 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfsv16_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfsv16_ugwpv1_debug Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -5592,13 +5592,13 @@ Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 581.920626 + 0: The total amount of wall time = 581.451442 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfs_v16_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfs_v16_ras_debug Checking test 099 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5663,73 +5663,73 @@ Checking test 099 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.750118 + 0: The total amount of wall time = 340.592205 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_control_cfsr Checking test 100 datm_control_cfsr results .... Comparing RESTART/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 = 233.153565 + 0: The total amount of wall time = 118.917224 Test 100 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_restart_cfsr Checking test 101 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.802905 + 0: The total amount of wall time = 83.639653 Test 101 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_control_gefs Checking test 102 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.880460 + 0: The total amount of wall time = 99.474432 Test 102 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_bulk_cfsr Checking test 103 datm_bulk_cfsr results .... Comparing RESTART/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 = 185.513481 + 0: The total amount of wall time = 105.793341 Test 103 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_bulk_gefs Checking test 104 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.167273 + 0: The total amount of wall time = 97.688266 Test 104 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5738,13 +5738,13 @@ Checking test 105 datm_mx025_cfsr results .... 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 = 583.651438 + 0: The total amount of wall time = 393.871328 Test 105 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5753,85 +5753,85 @@ Checking test 106 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 591.402787 + 0: The total amount of wall time = 412.277095 Test 106 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_debug_cfsr Checking test 107 datm_debug_cfsr results .... Comparing RESTART/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 = 342.609689 + 0: The total amount of wall time = 302.869240 Test 107 datm_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_control_cfsr Checking test 108 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 195.159108 + 0: The total amount of wall time = 174.984730 Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_restart_cfsr Checking test 109 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 101.325879 + 0: The total amount of wall time = 82.584387 Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_control_gefs Checking test 110 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.403504 + 0: The total amount of wall time = 174.618136 Test 110 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_bulk_cfsr Checking test 111 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.695359 + 0: The total amount of wall time = 161.588946 Test 111 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_bulk_gefs Checking test 112 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.838991 + 0: The total amount of wall time = 197.468910 Test 112 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_mx025_cfsr Checking test 113 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5840,13 +5840,13 @@ Checking test 113 datm_cdeps_mx025_cfsr results .... 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 = 425.602272 + 0: The total amount of wall time = 611.696482 Test 113 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_mx025_gefs Checking test 114 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5855,35 +5855,35 @@ Checking test 114 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 545.571713 + 0: The total amount of wall time = 410.250312 Test 114 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_multiple_files_cfsr Checking test 115 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 252.997708 + 0: The total amount of wall time = 154.792893 Test 115 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/datm_cdeps_debug_cfsr Checking test 116 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 458.769497 + 0: The total amount of wall time = 471.953105 Test 116 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmprad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmprad Checking test 117 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5929,13 +5929,13 @@ Checking test 117 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 456.744353 + 0: The total amount of wall time = 352.994137 Test 117 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_215360/fv3_gfdlmprad_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/rmontuor/stmp/rmontuor/FV3_RT/rt_207773/fv3_gfdlmprad_atmwav Checking test 118 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5981,11 +5981,11 @@ Checking test 118 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 415.788890 + 0: The total amount of wall time = 393.709150 Test 118 fv3_gfdlmprad_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 20 09:44:24 CDT 2021 -Elapsed time: 01h:12m:55s. Have a nice day! +Mon May 24 00:00:05 CDT 2021 +Elapsed time: 01h:01m:01s. Have a nice day! From d26c4b0427d4f5f9197ac2017a4a8abccdc90304 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 24 May 2021 05:45:25 +0000 Subject: [PATCH 32/79] Add log file from regression tests on WCOSS Dell P3. --- tests/RegressionTests_wcoss_dell_p3.log | 764 ++++++++++++------------ 1 file changed, 382 insertions(+), 382 deletions(-) diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 530e7b567a..c62ca5db8a 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,31 +1,31 @@ -Thu May 20 13:14:36 UTC 2021 +Mon May 24 03:57:00 UTC 2021 Start Regression test -Compile 001 elapsed time 2235 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 2505 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 003 elapsed time 774 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 1185 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 949 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 1101 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 1109 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 1493 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 1336 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 1816 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 011 elapsed time 1213 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 1107 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 1243 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 1269 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 300 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 356 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 017 elapsed time 310 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 018 elapsed time 905 seconds. APP=DATM_NEMS -Compile 019 elapsed time 327 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 970 seconds. APP=DATM +Compile 001 elapsed time 2361 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 2808 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 003 elapsed time 799 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 1346 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 1103 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 1118 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 1489 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 1132 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 1432 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 1865 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 011 elapsed time 1912 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 1356 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 1797 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 1642 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 296 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 353 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 017 elapsed time 357 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 018 elapsed time 902 seconds. APP=DATM_NEMS +Compile 019 elapsed time 326 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 924 seconds. APP=DATM Compile 021 elapsed time 344 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 1159 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 022 elapsed time 1123 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_control Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -75,13 +75,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 103.522639 +[0] The total amount of wall time = 105.051015 Test 001 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restart Checking test 002 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -131,13 +131,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 77.749668 +[0] The total amount of wall time = 68.170583 Test 002 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_controlfrac -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_controlfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_controlfrac Checking test 003 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -187,13 +187,13 @@ Checking test 003 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.359413 +[0] The total amount of wall time = 105.247906 Test 003 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_controlfrac -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restartfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restartfrac Checking test 004 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -243,13 +243,13 @@ Checking test 004 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 82.646051 +[0] The total amount of wall time = 69.710891 Test 004 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_2threads Checking test 005 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -299,13 +299,13 @@ Checking test 005 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 101.323230 +[0] The total amount of wall time = 97.169713 Test 005 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_decomp Checking test 006 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -355,13 +355,13 @@ Checking test 006 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.846722 +[0] The total amount of wall time = 100.713273 Test 006 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_satmedmf -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_satmedmf Checking test 007 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -411,13 +411,13 @@ Checking test 007 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 103.083816 +[0] The total amount of wall time = 100.984634 Test 007 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_ca -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_ca +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_ca Checking test 008 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 101.843123 +[0] The total amount of wall time = 102.998708 Test 008 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_control_c192 Checking test 009 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -523,13 +523,13 @@ Checking test 009 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 416.980683 +[0] The total amount of wall time = 415.470918 Test 009 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restart_c192 Checking test 010 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -579,13 +579,13 @@ Checking test 010 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 316.874069 +[0] The total amount of wall time = 314.515707 Test 010 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_controlfrac_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_controlfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_controlfrac_c192 Checking test 011 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -635,13 +635,13 @@ Checking test 011 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 419.013224 +[0] The total amount of wall time = 413.896699 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_controlfrac_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restartfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restartfrac_c192 Checking test 012 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -691,13 +691,13 @@ Checking test 012 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 320.000085 +[0] The total amount of wall time = 313.951576 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_control_c384 Checking test 013 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -750,13 +750,13 @@ Checking test 013 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1465.109959 +[0] The total amount of wall time = 1462.081219 Test 013 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restart_c384 Checking test 014 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -809,13 +809,13 @@ Checking test 014 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 799.005227 +[0] The total amount of wall time = 795.477979 Test 014 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_controlfrac_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_controlfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_controlfrac_c384 Checking test 015 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -868,13 +868,13 @@ Checking test 015 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1472.330958 +[0] The total amount of wall time = 1452.250504 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_controlfrac_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restartfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restartfrac_c384 Checking test 016 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -927,13 +927,13 @@ Checking test 016 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 792.987527 +[0] The total amount of wall time = 786.934615 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmark -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmark +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmark Checking test 017 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -986,13 +986,13 @@ Checking test 017 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 892.346359 +[0] The total amount of wall time = 866.987394 Test 017 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmark -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restart_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmark +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restart_bmark Checking test 018 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1045,13 +1045,13 @@ Checking test 018 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 513.035201 +[0] The total amount of wall time = 510.259639 Test 018 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmarkfrac Checking test 019 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1104,13 +1104,13 @@ Checking test 019 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 887.451826 +[0] The total amount of wall time = 863.258368 Test 019 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restart_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restart_bmarkfrac Checking test 020 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1163,13 +1163,13 @@ Checking test 020 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 509.125127 +[0] The total amount of wall time = 511.464553 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmarkfrac_v16 Checking test 021 cpld_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1212,13 +1212,13 @@ Checking test 021 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 836.807039 +[0] The total amount of wall time = 813.894943 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac_v16_nsst -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmarkfrac_v16_nsst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac_v16_nsst +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmarkfrac_v16_nsst Checking test 022 cpld_bmarkfrac_v16_nsst results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 022 cpld_bmarkfrac_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 830.923660 +[0] The total amount of wall time = 817.427425 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_restart_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_restart_bmarkfrac_v16 Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 521.581232 +[0] The total amount of wall time = 515.723078 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmark_wave -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmark_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmark_wave Checking test 024 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1372,13 +1372,13 @@ Checking test 024 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1116.704541 +[0] The total amount of wall time = 1060.755558 Test 024 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmarkfrac_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmarkfrac_wave Checking test 025 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1434,13 +1434,13 @@ Checking test 025 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1077.598037 +[0] The total amount of wall time = 1053.315866 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_bmarkfrac_wave_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_bmarkfrac_wave_v16 Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1485,13 +1485,13 @@ Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 958.316128 +[0] The total amount of wall time = 898.332898 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_control_wave -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_control_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_control_wave Checking test 027 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1544,13 +1544,13 @@ Checking test 027 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 127.558661 +[0] The total amount of wall time = 127.852041 Test 027 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_debug Checking test 028 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1600,13 +1600,13 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 320.399330 +[0] The total amount of wall time = 319.680277 Test 028 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/cpld_debugfrac -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/cpld_debugfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/cpld_debugfrac Checking test 029 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1656,13 +1656,13 @@ Checking test 029 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 319.398882 +[0] The total amount of wall time = 319.533636 Test 029 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_control Checking test 030 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1727,13 +1727,13 @@ Checking test 030 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 53.061894 +[0] The total amount of wall time = 49.154965 Test 030 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_decomp Checking test 031 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1798,13 +1798,13 @@ Checking test 031 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 53.917910 +[0] The total amount of wall time = 49.790528 Test 031 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_2threads Checking test 032 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1869,13 +1869,13 @@ Checking test 032 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 41.924746 +[0] The total amount of wall time = 41.227291 Test 032 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_restart Checking test 033 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1922,13 +1922,13 @@ Checking test 033 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 25.054421 +[0] The total amount of wall time = 26.100163 Test 033 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_read_inc -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_read_inc +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_read_inc Checking test 034 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,13 +1993,13 @@ Checking test 034 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.734990 +[0] The total amount of wall time = 47.226286 Test 034 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_wrtGauss_netcdf_esmf Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 170.112796 +[0] The total amount of wall time = 160.341342 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_wrtGauss_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_wrtGauss_netcdf Checking test 036 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2095,13 +2095,13 @@ Checking test 036 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 47.619877 +[0] The total amount of wall time = 46.946687 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_wrtGauss_netcdf_parallel Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2109,9 +2109,9 @@ Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -2146,13 +2146,13 @@ Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 67.075991 +[0] The total amount of wall time = 59.832457 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_wrtGlatlon_netcdf Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2197,13 +2197,13 @@ Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 48.598449 +[0] The total amount of wall time = 45.926942 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_wrtGauss_nemsio +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_wrtGauss_nemsio Checking test 039 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2248,13 +2248,13 @@ Checking test 039 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 48.204875 +[0] The total amount of wall time = 45.891026 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_wrtGauss_nemsio_c192 Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 124.115401 +[0] The total amount of wall time = 119.861519 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_stochy -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_stochy +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_stochy Checking test 041 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,13 +2370,13 @@ Checking test 041 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 55.676610 +[0] The total amount of wall time = 52.895256 Test 041 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_ca -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_ca +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_ca Checking test 042 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2441,13 +2441,13 @@ Checking test 042 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 37.054853 +[0] The total amount of wall time = 34.459291 Test 042 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_lndp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_lndp +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_lndp Checking test 043 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2512,13 +2512,13 @@ Checking test 043 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 54.624157 +[0] The total amount of wall time = 52.753705 Test 043 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_iau -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_iau +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_iau +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_iau Checking test 044 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2583,13 +2583,13 @@ Checking test 044 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.997953 +[0] The total amount of wall time = 45.699716 Test 044 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_lheatstrg -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_lheatstrg Checking test 045 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2634,13 +2634,13 @@ Checking test 045 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 48.230013 +[0] The total amount of wall time = 46.023657 Test 045 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_multigases_repro -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_multigases_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_multigases_repro Checking test 046 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2711,13 +2711,13 @@ Checking test 046 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 115.385264 +[0] The total amount of wall time = 114.697017 Test 046 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_control_32bit -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_control_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_control_32bit Checking test 047 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2782,13 +2782,13 @@ Checking test 047 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.491916 +[0] The total amount of wall time = 45.756644 Test 047 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_stretched -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_stretched +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_stretched +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_stretched Checking test 048 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,13 +2841,13 @@ Checking test 048 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 328.095500 +[0] The total amount of wall time = 327.645630 Test 048 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_stretched_nest -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_stretched_nest +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_stretched_nest Checking test 049 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2911,13 +2911,13 @@ Checking test 049 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 353.696745 +[0] The total amount of wall time = 351.265545 Test 049 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_control Checking test 050 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2925,25 +2925,25 @@ Checking test 050 fv3_regional_control 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 = 265.903044 +[0] The total amount of wall time = 264.304433 Test 050 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_restart -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_restart Checking test 051 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 151.818514 +[0] The total amount of wall time = 151.836752 Test 051 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_quilt -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_quilt Checking test 052 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2954,13 +2954,13 @@ Checking test 052 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 261.545048 +[0] The total amount of wall time = 261.773385 Test 052 fv3_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_quilt_hafs Checking test 053 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2969,27 +2969,27 @@ Checking test 053 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 261.526919 +[0] The total amount of wall time = 261.920836 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_quilt_netcdf_parallel Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 440.826477 +[0] The total amount of wall time = 429.777661 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_quilt_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_quilt_RRTMGP +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_quilt_RRTMGP Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -3000,13 +3000,13 @@ Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 356.224436 +[0] The total amount of wall time = 354.254010 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmp Checking test 056 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3051,13 +3051,13 @@ Checking test 056 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 57.716182 +[0] The total amount of wall time = 52.267003 Test 056 fv3_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmprad_gwd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmprad_gwd Checking test 057 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3102,13 +3102,13 @@ Checking test 057 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 53.386838 +[0] The total amount of wall time = 52.792991 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmprad_noahmp Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3153,13 +3153,13 @@ Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 54.591181 +[0] The total amount of wall time = 52.133105 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_csawmg -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_csawmg Checking test 059 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3204,13 +3204,13 @@ Checking test 059 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 131.139237 +[0] The total amount of wall time = 131.633708 Test 059 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_satmedmf -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_satmedmf Checking test 060 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3255,13 +3255,13 @@ Checking test 060 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 57.063058 +[0] The total amount of wall time = 57.684675 Test 060 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_satmedmfq -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_satmedmfq +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_satmedmfq Checking test 061 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3306,13 +3306,13 @@ Checking test 061 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.887797 +[0] The total amount of wall time = 57.740491 Test 061 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmp_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmp_32bit Checking test 062 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3357,13 +3357,13 @@ Checking test 062 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 46.122174 +[0] The total amount of wall time = 45.512709 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmprad_32bit_post Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3412,13 +3412,13 @@ Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 86.591161 +[0] The total amount of wall time = 85.838465 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_cpt -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_cpt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_cpt +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_cpt Checking test 064 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3469,13 +3469,13 @@ Checking test 064 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 313.153409 +[0] The total amount of wall time = 308.896567 Test 064 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gsd -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gsd +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gsd Checking test 065 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3564,13 +3564,13 @@ Checking test 065 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 198.641316 +[0] The total amount of wall time = 198.282382 Test 065 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_rrfs_v1alpha +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_rrfs_v1alpha Checking test 066 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,13 +3635,13 @@ Checking test 066 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 102.152454 +[0] The total amount of wall time = 101.961613 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_rap -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_rap +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_rap Checking test 067 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3706,13 +3706,13 @@ Checking test 067 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 102.700095 +[0] The total amount of wall time = 102.004591 Test 067 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_hrrr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_hrrr Checking test 068 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3777,13 +3777,13 @@ Checking test 068 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 100.535073 +[0] The total amount of wall time = 101.514982 Test 068 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_thompson -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_thompson +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_thompson Checking test 069 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3848,13 +3848,13 @@ Checking test 069 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 92.467377 +[0] The total amount of wall time = 93.267185 Test 069 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_thompson_no_aero -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_thompson_no_aero Checking test 070 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3919,13 +3919,13 @@ Checking test 070 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 94.645733 +[0] The total amount of wall time = 92.619673 Test 070 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_rrfs_v1beta -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_rrfs_v1beta Checking test 071 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3990,13 +3990,13 @@ Checking test 071 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 102.564749 +[0] The total amount of wall time = 102.645396 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16 Checking test 072 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4073,13 +4073,13 @@ Checking test 072 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 153.927604 +[0] The total amount of wall time = 154.219374 Test 072 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_restart Checking test 073 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4126,13 +4126,13 @@ Checking test 073 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 94.136292 +[0] The total amount of wall time = 93.130273 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_stochy Checking test 074 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4197,13 +4197,13 @@ Checking test 074 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 59.904326 +[0] The total amount of wall time = 59.769780 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_RRTMGP Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4280,13 +4280,13 @@ Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 206.096141 +[0] The total amount of wall time = 208.237758 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfsv16_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfsv16_csawmg Checking test 076 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4331,13 +4331,13 @@ Checking test 076 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 140.999834 +[0] The total amount of wall time = 139.113220 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfsv16_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfsv16_csawmgt Checking test 077 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4382,13 +4382,13 @@ Checking test 077 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 139.165587 +[0] The total amount of wall time = 137.666458 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gocart_clm -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gocart_clm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gocart_clm Checking test 078 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4433,13 +4433,13 @@ Checking test 078 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 58.653289 +[0] The total amount of wall time = 58.004683 Test 078 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_flake -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_flake Checking test 079 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4504,13 +4504,13 @@ Checking test 079 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 110.474482 +[0] The total amount of wall time = 114.323351 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_HAFS_v0_hwrf_thompson Checking test 080 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4575,13 +4575,13 @@ Checking test 080 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 179.724599 +[0] The total amount of wall time = 172.467331 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_esg_HAFS_v0_hwrf_thompson Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4596,13 +4596,13 @@ Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 319.088220 +[0] The total amount of wall time = 320.287782 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfsv16_ugwpv1 Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4661,13 +4661,13 @@ Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 204.317740 +[0] The total amount of wall time = 199.625673 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfsv16_ugwpv1_warmstart Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4726,13 +4726,13 @@ Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 207.914937 +[0] The total amount of wall time = 198.489194 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_ras -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_ras Checking test 084 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4797,13 +4797,13 @@ Checking test 084 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 109.731847 +[0] The total amount of wall time = 108.503113 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_debug Checking test 085 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4868,13 +4868,13 @@ Checking test 085 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 286.644656 +[0] The total amount of wall time = 286.557003 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_RRTMGP_debug Checking test 086 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4939,13 +4939,13 @@ Checking test 086 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 273.039176 +[0] The total amount of wall time = 273.592415 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_regional_control_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_regional_control_debug Checking test 087 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -4953,13 +4953,13 @@ Checking test 087 fv3_regional_control_debug 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 = 397.603803 +[0] The total amount of wall time = 397.197611 Test 087 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_control_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_control_debug Checking test 088 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4986,13 +4986,13 @@ Checking test 088 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 157.268243 +[0] The total amount of wall time = 156.909930 Test 088 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_stretched_nest_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_stretched_nest_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_stretched_nest_debug Checking test 089 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -5009,13 +5009,13 @@ Checking test 089 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 475.194425 +[0] The total amount of wall time = 474.527121 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gsd_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gsd_debug Checking test 090 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5080,13 +5080,13 @@ Checking test 090 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 233.199213 +[0] The total amount of wall time = 232.377835 Test 090 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gsd_diag3d_debug Checking test 091 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5151,13 +5151,13 @@ Checking test 091 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 286.592372 +[0] The total amount of wall time = 294.528394 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_thompson_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_thompson_debug Checking test 092 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5222,13 +5222,13 @@ Checking test 092 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 391.024816 +[0] The total amount of wall time = 390.958474 Test 092 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_thompson_no_aero_debug Checking test 093 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5293,13 +5293,13 @@ Checking test 093 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 376.117548 +[0] The total amount of wall time = 375.634246 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_rrfs_v1beta_debug Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5364,13 +5364,13 @@ Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 224.940422 +[0] The total amount of wall time = 225.445481 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_rrfs_v1alpha_debug Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5435,13 +5435,13 @@ Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 225.391277 +[0] The total amount of wall time = 225.709723 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_HAFS_v0_hwrf_thompson_debug Checking test 096 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5506,13 +5506,13 @@ Checking test 096 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 236.589165 +[0] The total amount of wall time = 236.902692 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -5527,13 +5527,13 @@ Checking test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 434.087654 +[0] The total amount of wall time = 435.208077 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfsv16_ugwpv1_debug Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -5592,13 +5592,13 @@ Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 651.343948 +[0] The total amount of wall time = 650.673202 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfs_v16_ras_debug Checking test 099 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5663,73 +5663,73 @@ Checking test 099 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 371.875849 +[0] The total amount of wall time = 370.301852 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_control_cfsr Checking test 100 datm_control_cfsr results .... Comparing RESTART/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 = 107.988674 +[0] The total amount of wall time = 105.949734 Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_restart_cfsr Checking test 101 datm_restart_cfsr results .... Comparing RESTART/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 = 79.503710 +[0] The total amount of wall time = 76.425873 Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_control_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_control_gefs Checking test 102 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 101.550734 +[0] The total amount of wall time = 100.454055 Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_bulk_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_bulk_cfsr Checking test 103 datm_bulk_cfsr results .... Comparing RESTART/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 = 104.842816 +[0] The total amount of wall time = 103.332605 Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_bulk_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_bulk_gefs Checking test 104 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 101.714110 +[0] The total amount of wall time = 100.146074 Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_mx025_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5738,13 +5738,13 @@ Checking test 105 datm_mx025_cfsr results .... 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 = 407.165931 +[0] The total amount of wall time = 379.083343 Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_mx025_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5753,85 +5753,85 @@ Checking test 106 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 389.433953 +[0] The total amount of wall time = 372.716846 Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_debug_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_debug_cfsr Checking test 107 datm_debug_cfsr results .... Comparing RESTART/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 = 306.579302 +[0] The total amount of wall time = 303.424425 Test 107 datm_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_control_cfsr Checking test 108 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 175.424072 +[0] The total amount of wall time = 173.737951 Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_restart_cfsr Checking test 109 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 119.408241 +[0] The total amount of wall time = 116.593860 Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_control_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_control_gefs Checking test 110 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.331308 +[0] The total amount of wall time = 168.427348 Test 110 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_bulk_cfsr Checking test 111 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 177.006155 +[0] The total amount of wall time = 173.541125 Test 111 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_bulk_gefs Checking test 112 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.699484 +[0] The total amount of wall time = 166.304250 Test 112 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_mx025_cfsr Checking test 113 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5840,13 +5840,13 @@ Checking test 113 datm_cdeps_mx025_cfsr results .... 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 = 396.788403 +[0] The total amount of wall time = 385.874891 Test 113 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_mx025_gefs Checking test 114 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5855,35 +5855,35 @@ Checking test 114 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 385.359835 +[0] The total amount of wall time = 381.769569 Test 114 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_multiple_files_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_multiple_files_cfsr Checking test 115 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 174.042903 +[0] The total amount of wall time = 173.629172 Test 115 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/datm_cdeps_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/datm_cdeps_debug_cfsr Checking test 116 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 500.571318 +[0] The total amount of wall time = 501.594739 Test 116 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmprad -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmprad +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmprad Checking test 117 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5929,13 +5929,13 @@ Checking test 117 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 353.662532 +[0] The total amount of wall time = 354.375849 Test 117 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/fv3_exp_imp/ptmp/Dusan.Jovic/FV3_RT/rt_178327/fv3_gfdlmprad_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Raffaele.Montuoro/FV3_RT/rt_182450/fv3_gfdlmprad_atmwav Checking test 118 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5981,11 +5981,11 @@ Checking test 118 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 394.694090 +[0] The total amount of wall time = 396.358250 Test 118 fv3_gfdlmprad_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 20 14:36:55 UTC 2021 -Elapsed time: 01h:22m:22s. Have a nice day! +Mon May 24 05:18:27 UTC 2021 +Elapsed time: 01h:21m:28s. Have a nice day! From 6114735f41e0fcc3ad9e038b00b2a0cc155bed4d Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 24 May 2021 05:54:16 +0000 Subject: [PATCH 33/79] Add regression test log file for Hera/Intel platform. --- tests/RegressionTests_hera.intel.log | 772 +++++++++++++-------------- 1 file changed, 386 insertions(+), 386 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c1eaae4f53..250d69a20d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,31 +1,31 @@ -Thu May 20 13:46:37 UTC 2021 +Mon May 24 04:01:09 UTC 2021 Start Regression test -Compile 001 elapsed time 1343 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 819 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 003 elapsed time 1114 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 1785 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 1592 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 693 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 1252 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 1151 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 673 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 827 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 011 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 742 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 793 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 689 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 211 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 154 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 017 elapsed time 173 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 018 elapsed time 176 seconds. APP=DATM_NEMS -Compile 019 elapsed time 114 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 229 seconds. APP=DATM -Compile 021 elapsed time 147 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 521 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_control +Compile 001 elapsed time 820 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 603 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 003 elapsed time 583 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 514 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 561 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 594 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 1106 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 1056 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 1052 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 529 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 011 elapsed time 515 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 1136 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 524 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 641 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 347 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 017 elapsed time 701 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 018 elapsed time 731 seconds. APP=DATM_NEMS +Compile 019 elapsed time 113 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 398 seconds. APP=DATM +Compile 021 elapsed time 113 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 534 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_control Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -75,13 +75,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.225921 + 0: The total amount of wall time = 91.411290 Test 001 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restart Checking test 002 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -131,13 +131,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 54.716065 + 0: The total amount of wall time = 76.414338 Test 002 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_controlfrac Checking test 003 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -187,13 +187,13 @@ Checking test 003 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.576857 + 0: The total amount of wall time = 88.087154 Test 003 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restartfrac Checking test 004 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -243,13 +243,13 @@ Checking test 004 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.042797 + 0: The total amount of wall time = 90.535313 Test 004 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_2threads Checking test 005 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -299,13 +299,13 @@ Checking test 005 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 106.065794 + 0: The total amount of wall time = 98.176815 Test 005 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_decomp Checking test 006 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -355,13 +355,13 @@ Checking test 006 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.119046 + 0: The total amount of wall time = 88.652570 Test 006 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_satmedmf Checking test 007 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -411,13 +411,13 @@ Checking test 007 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.178639 + 0: The total amount of wall time = 87.325960 Test 007 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_ca Checking test 008 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.770290 + 0: The total amount of wall time = 87.898182 Test 008 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_control_c192 Checking test 009 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -523,13 +523,13 @@ Checking test 009 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 384.770794 + 0: The total amount of wall time = 399.379067 Test 009 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restart_c192 Checking test 010 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -579,13 +579,13 @@ Checking test 010 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 260.540363 + 0: The total amount of wall time = 265.641380 Test 010 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_controlfrac_c192 Checking test 011 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -635,13 +635,13 @@ Checking test 011 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 381.153256 + 0: The total amount of wall time = 410.938804 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restartfrac_c192 Checking test 012 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -691,13 +691,13 @@ Checking test 012 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 262.569948 + 0: The total amount of wall time = 259.004460 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_control_c384 Checking test 013 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -750,13 +750,13 @@ Checking test 013 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1320.610825 + 0: The total amount of wall time = 1344.404492 Test 013 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restart_c384 Checking test 014 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -809,13 +809,13 @@ Checking test 014 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 768.151127 + 0: The total amount of wall time = 699.854854 Test 014 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_controlfrac_c384 Checking test 015 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -868,13 +868,13 @@ Checking test 015 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1445.305891 + 0: The total amount of wall time = 1352.490616 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restartfrac_c384 Checking test 016 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -927,13 +927,13 @@ Checking test 016 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 760.709178 + 0: The total amount of wall time = 689.438510 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmark Checking test 017 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -986,13 +986,13 @@ Checking test 017 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 861.836470 + 0: The total amount of wall time = 830.567868 Test 017 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restart_bmark Checking test 018 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1045,13 +1045,13 @@ Checking test 018 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 441.370624 + 0: The total amount of wall time = 445.757648 Test 018 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmarkfrac Checking test 019 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1104,13 +1104,13 @@ Checking test 019 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 791.094430 + 0: The total amount of wall time = 814.432239 Test 019 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restart_bmarkfrac Checking test 020 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1163,13 +1163,13 @@ Checking test 020 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 535.625213 + 0: The total amount of wall time = 458.740408 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmarkfrac_v16 Checking test 021 cpld_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1212,13 +1212,13 @@ Checking test 021 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 723.964112 + 0: The total amount of wall time = 757.838586 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmarkfrac_v16_nsst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmarkfrac_v16_nsst Checking test 022 cpld_bmarkfrac_v16_nsst results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 022 cpld_bmarkfrac_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 782.541986 + 0: The total amount of wall time = 741.905397 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_restart_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_restart_bmarkfrac_v16 Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 524.962644 + 0: The total amount of wall time = 427.800264 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmark_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmark_wave Checking test 024 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1372,13 +1372,13 @@ Checking test 024 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 901.309882 + 0: The total amount of wall time = 923.173664 Test 024 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmarkfrac_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmarkfrac_wave Checking test 025 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1434,13 +1434,13 @@ Checking test 025 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 904.362096 + 0: The total amount of wall time = 899.567628 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_bmarkfrac_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_bmarkfrac_wave_v16 Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1485,13 +1485,13 @@ Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 768.817919 + 0: The total amount of wall time = 760.510850 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_control_wave Checking test 027 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1544,13 +1544,13 @@ Checking test 027 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 125.220738 + 0: The total amount of wall time = 114.233124 Test 027 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_debug Checking test 028 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1600,13 +1600,13 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 282.203874 + 0: The total amount of wall time = 279.942585 Test 028 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/cpld_debugfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/cpld_debugfrac Checking test 029 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1656,13 +1656,13 @@ Checking test 029 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 279.002138 + 0: The total amount of wall time = 278.172830 Test 029 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_control Checking test 030 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1727,13 +1727,13 @@ Checking test 030 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.419120 + 0: The total amount of wall time = 41.650719 Test 030 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_decomp Checking test 031 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1798,13 +1798,13 @@ Checking test 031 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.799953 + 0: The total amount of wall time = 42.304933 Test 031 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_2threads Checking test 032 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1869,13 +1869,13 @@ Checking test 032 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.244104 + 0: The total amount of wall time = 42.924985 Test 032 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_restart Checking test 033 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1922,13 +1922,13 @@ Checking test 033 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 21.029315 + 0: The total amount of wall time = 34.814866 Test 033 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_read_inc Checking test 034 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,13 +1993,13 @@ Checking test 034 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.334900 + 0: The total amount of wall time = 38.997278 Test 034 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGauss_netcdf_esmf Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 124.188442 + 0: The total amount of wall time = 114.686916 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGauss_netcdf Checking test 036 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2095,13 +2095,13 @@ Checking test 036 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.197782 + 0: The total amount of wall time = 39.054905 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGauss_netcdf_parallel Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2111,7 +2111,7 @@ Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -2146,13 +2146,13 @@ Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.464234 + 0: The total amount of wall time = 50.432448 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGlatlon_netcdf Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2197,13 +2197,13 @@ Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.994323 + 0: The total amount of wall time = 38.431482 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGauss_nemsio Checking test 039 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2248,13 +2248,13 @@ Checking test 039 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.829154 + 0: The total amount of wall time = 41.011070 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGauss_nemsio_c192 Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.547213 + 0: The total amount of wall time = 104.075962 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_stochy Checking test 041 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,13 +2370,13 @@ Checking test 041 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.229577 + 0: The total amount of wall time = 42.750379 Test 041 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_ca Checking test 042 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2441,13 +2441,13 @@ Checking test 042 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 28.293551 + 0: The total amount of wall time = 28.223746 Test 042 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_lndp Checking test 043 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2512,13 +2512,13 @@ Checking test 043 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.876705 + 0: The total amount of wall time = 45.978045 Test 043 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_iau Checking test 044 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2583,13 +2583,13 @@ Checking test 044 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.367067 + 0: The total amount of wall time = 38.398039 Test 044 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_lheatstrg Checking test 045 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2634,13 +2634,13 @@ Checking test 045 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.340555 + 0: The total amount of wall time = 37.977462 Test 045 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_multigases_repro Checking test 046 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2711,13 +2711,13 @@ Checking test 046 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 97.568752 + 0: The total amount of wall time = 98.276150 Test 046 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_control_32bit Checking test 047 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2782,13 +2782,13 @@ Checking test 047 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.911987 + 0: The total amount of wall time = 37.962983 Test 047 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_stretched Checking test 048 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,13 +2841,13 @@ Checking test 048 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.551548 + 0: The total amount of wall time = 222.501589 Test 048 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_stretched_nest Checking test 049 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2911,13 +2911,13 @@ Checking test 049 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 244.152411 + 0: The total amount of wall time = 247.743865 Test 049 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_control Checking test 050 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2925,25 +2925,25 @@ Checking test 050 fv3_regional_control 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 = 237.280150 + 0: The total amount of wall time = 239.358081 Test 050 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_restart Checking test 051 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 127.269534 + 0: The total amount of wall time = 130.872189 Test 051 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_quilt Checking test 052 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2954,13 +2954,13 @@ Checking test 052 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 215.362299 + 0: The total amount of wall time = 217.047624 Test 052 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_quilt_hafs Checking test 053 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2969,27 +2969,27 @@ Checking test 053 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 217.815847 + 0: The total amount of wall time = 215.649012 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_quilt_netcdf_parallel Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 216.578420 + 0: The total amount of wall time = 217.370062 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_quilt_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_quilt_RRTMGP Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -3000,13 +3000,13 @@ Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 278.305300 + 0: The total amount of wall time = 280.264468 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmp Checking test 056 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3051,13 +3051,13 @@ Checking test 056 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 45.495992 + 0: The total amount of wall time = 43.663076 Test 056 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmprad_gwd Checking test 057 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3102,13 +3102,13 @@ Checking test 057 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 43.644515 + 0: The total amount of wall time = 43.913664 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmprad_noahmp Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3153,13 +3153,13 @@ Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 44.480093 + 0: The total amount of wall time = 52.557339 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_csawmg Checking test 059 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3204,13 +3204,13 @@ Checking test 059 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.923516 + 0: The total amount of wall time = 119.535297 Test 059 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_satmedmf Checking test 060 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3255,13 +3255,13 @@ Checking test 060 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.753289 + 0: The total amount of wall time = 54.335373 Test 060 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_satmedmfq Checking test 061 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3306,13 +3306,13 @@ Checking test 061 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.314500 + 0: The total amount of wall time = 47.386470 Test 061 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmp_32bit Checking test 062 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3357,13 +3357,13 @@ Checking test 062 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 44.545313 + 0: The total amount of wall time = 38.497481 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmprad_32bit_post Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3412,13 +3412,13 @@ Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 75.206171 + 0: The total amount of wall time = 74.744333 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_cpt Checking test 064 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3469,13 +3469,13 @@ Checking test 064 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 256.363053 + 0: The total amount of wall time = 257.328523 Test 064 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gsd Checking test 065 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3564,13 +3564,13 @@ Checking test 065 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.266788 + 0: The total amount of wall time = 174.918923 Test 065 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_rrfs_v1alpha Checking test 066 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,13 +3635,13 @@ Checking test 066 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.854133 + 0: The total amount of wall time = 90.654668 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_rap Checking test 067 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3706,13 +3706,13 @@ Checking test 067 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.582897 + 0: The total amount of wall time = 86.686199 Test 067 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_hrrr Checking test 068 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3777,13 +3777,13 @@ Checking test 068 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.537092 + 0: The total amount of wall time = 87.881403 Test 068 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_thompson Checking test 069 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3848,13 +3848,13 @@ Checking test 069 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 79.408666 + 0: The total amount of wall time = 81.767930 Test 069 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_thompson_no_aero Checking test 070 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3919,13 +3919,13 @@ Checking test 070 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 80.047123 + 0: The total amount of wall time = 84.232683 Test 070 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_rrfs_v1beta Checking test 071 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3990,13 +3990,13 @@ Checking test 071 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.844335 + 0: The total amount of wall time = 88.160578 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16 Checking test 072 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4073,13 +4073,13 @@ Checking test 072 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 131.450133 + 0: The total amount of wall time = 135.797132 Test 072 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_restart Checking test 073 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4126,13 +4126,13 @@ Checking test 073 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 80.992258 + 0: The total amount of wall time = 84.139124 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_stochy Checking test 074 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4197,13 +4197,13 @@ Checking test 074 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 48.697876 + 0: The total amount of wall time = 49.592283 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_RRTMGP Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4280,13 +4280,13 @@ Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 171.731731 + 0: The total amount of wall time = 175.536535 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfsv16_csawmg Checking test 076 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4331,13 +4331,13 @@ Checking test 076 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 116.573495 + 0: The total amount of wall time = 115.728933 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfsv16_csawmgt Checking test 077 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4382,13 +4382,13 @@ Checking test 077 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.535848 + 0: The total amount of wall time = 113.769106 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gocart_clm Checking test 078 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4433,13 +4433,13 @@ Checking test 078 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.031261 + 0: The total amount of wall time = 49.040946 Test 078 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_flake Checking test 079 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4504,13 +4504,13 @@ Checking test 079 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 98.158841 + 0: The total amount of wall time = 97.837290 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_HAFS_v0_hwrf_thompson Checking test 080 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4575,13 +4575,13 @@ Checking test 080 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 144.480712 + 0: The total amount of wall time = 143.657100 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_esg_HAFS_v0_hwrf_thompson Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4596,13 +4596,13 @@ Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 281.150968 + 0: The total amount of wall time = 280.348823 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfsv16_ugwpv1 Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4661,13 +4661,13 @@ Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 168.506874 + 0: The total amount of wall time = 166.280100 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfsv16_ugwpv1_warmstart Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4726,13 +4726,13 @@ Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 167.844114 + 0: The total amount of wall time = 166.526398 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_ras Checking test 084 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4797,13 +4797,13 @@ Checking test 084 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.142837 + 0: The total amount of wall time = 91.400602 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_debug Checking test 085 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4868,13 +4868,13 @@ Checking test 085 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.771550 + 0: The total amount of wall time = 235.571387 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_RRTMGP_debug Checking test 086 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4939,13 +4939,13 @@ Checking test 086 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.852507 + 0: The total amount of wall time = 230.023625 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_regional_control_debug Checking test 087 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -4953,13 +4953,13 @@ Checking test 087 fv3_regional_control_debug 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 = 351.782245 + 0: The total amount of wall time = 343.338306 Test 087 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_control_debug Checking test 088 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4986,13 +4986,13 @@ Checking test 088 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 134.246569 + 0: The total amount of wall time = 133.857466 Test 088 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_stretched_nest_debug Checking test 089 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -5009,13 +5009,13 @@ Checking test 089 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 355.365255 + 0: The total amount of wall time = 355.134060 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gsd_debug Checking test 090 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5080,13 +5080,13 @@ Checking test 090 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.718503 + 0: The total amount of wall time = 197.162078 Test 090 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gsd_diag3d_debug Checking test 091 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5151,13 +5151,13 @@ Checking test 091 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.054651 + 0: The total amount of wall time = 243.421400 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_thompson_debug Checking test 092 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5222,13 +5222,13 @@ Checking test 092 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.858785 + 0: The total amount of wall time = 327.568299 Test 092 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_thompson_no_aero_debug Checking test 093 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5293,13 +5293,13 @@ Checking test 093 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 324.455303 + 0: The total amount of wall time = 317.600224 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_rrfs_v1beta_debug Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5364,13 +5364,13 @@ Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.696603 + 0: The total amount of wall time = 189.930072 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_rrfs_v1alpha_debug Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5435,13 +5435,13 @@ Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.444389 + 0: The total amount of wall time = 189.526065 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_HAFS_v0_hwrf_thompson_debug Checking test 096 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5506,13 +5506,13 @@ Checking test 096 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 201.194517 + 0: The total amount of wall time = 200.927445 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -5527,13 +5527,13 @@ Checking test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 394.402901 + 0: The total amount of wall time = 386.729236 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfsv16_ugwpv1_debug Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -5592,13 +5592,13 @@ Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 555.851391 + 0: The total amount of wall time = 552.290958 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfs_v16_ras_debug Checking test 099 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5663,73 +5663,73 @@ Checking test 099 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.075447 + 0: The total amount of wall time = 312.672667 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_control_cfsr Checking test 100 datm_control_cfsr results .... Comparing RESTART/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 = 101.446623 + 0: The total amount of wall time = 94.781352 Test 100 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_restart_cfsr Checking test 101 datm_restart_cfsr results .... Comparing RESTART/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 = 64.165364 + 0: The total amount of wall time = 59.860361 Test 101 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_control_gefs Checking test 102 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.093563 + 0: The total amount of wall time = 89.551952 Test 102 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_bulk_cfsr Checking test 103 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.102158 + 0: The total amount of wall time = 88.549632 Test 103 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_bulk_gefs Checking test 104 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 88.222937 + 0: The total amount of wall time = 100.774078 Test 104 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5738,13 +5738,13 @@ Checking test 105 datm_mx025_cfsr results .... 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 = 345.265470 + 0: The total amount of wall time = 347.220345 Test 105 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5753,85 +5753,85 @@ Checking test 106 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 341.435142 + 0: The total amount of wall time = 340.297026 Test 106 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_debug_cfsr Checking test 107 datm_debug_cfsr results .... Comparing RESTART/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 = 259.038139 + 0: The total amount of wall time = 259.069857 Test 107 datm_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_control_cfsr Checking test 108 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 142.829751 + 0: The total amount of wall time = 145.603677 Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_restart_cfsr Checking test 109 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 88.404844 + 0: The total amount of wall time = 81.235800 Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_control_gefs Checking test 110 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.388349 + 0: The total amount of wall time = 144.438903 Test 110 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_bulk_cfsr Checking test 111 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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.336019 + 0: The total amount of wall time = 143.327170 Test 111 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_bulk_gefs Checking test 112 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.712572 + 0: The total amount of wall time = 138.763102 Test 112 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_mx025_cfsr Checking test 113 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5840,13 +5840,13 @@ Checking test 113 datm_cdeps_mx025_cfsr results .... 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 = 367.820148 + 0: The total amount of wall time = 358.627211 Test 113 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_mx025_gefs Checking test 114 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5855,35 +5855,35 @@ Checking test 114 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 439.106698 + 0: The total amount of wall time = 353.198103 Test 114 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_multiple_files_cfsr Checking test 115 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.199466 + 0: The total amount of wall time = 148.738064 Test 115 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/datm_cdeps_debug_cfsr Checking test 116 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 436.124486 + 0: The total amount of wall time = 431.196920 Test 116 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmprad Checking test 117 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5929,13 +5929,13 @@ Checking test 117 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 336.128190 + 0: The total amount of wall time = 333.094115 Test 117 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_gfdlmprad_atmwav Checking test 118 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5981,13 +5981,13 @@ Checking test 118 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 367.159353 + 0: The total amount of wall time = 368.343376 Test 118 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210517/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_181420/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210521/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/Raffaele.Montuoro/FV3_RT/rt_122292/fv3_wrtGauss_nemsio_c768 Checking test 119 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -6033,11 +6033,11 @@ Checking test 119 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 585.999813 + 0: The total amount of wall time = 554.929249 Test 119 fv3_wrtGauss_nemsio_c768 PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 20 20:16:48 UTC 2021 -Elapsed time: 06h:30m:11s. Have a nice day! +Mon May 24 05:50:40 UTC 2021 +Elapsed time: 01h:49m:31s. Have a nice day! From 1d09a64e0cfabcc57c807a615d415dd64a142bfc Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 24 May 2021 23:40:08 +0000 Subject: [PATCH 34/79] Remove unnecessary changes in .gitmodules. --- .gitmodules | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index e250a1f0c5..0d753d1303 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,9 +18,9 @@ path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules branch = develop -[submodule "CMEPS-interface/CMEPS"] +[submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/NOAA-EMC/CMEPS + url = https://github.com/NOAA-EMC/CMEPS.git branch = emc/develop [submodule "MOM6"] path = MOM6-interface/MOM6 @@ -34,10 +34,11 @@ path = DATM url = https://github.com/NOAA-EMC/NEMSdatm branch = develop +[submodule "CDEPS"] + path = CDEPS-interface/CDEPS + url = https://github.com/NOAA-EMC/CDEPS + branch = emc/develop [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART branch = feature/rmontuoro/ufs-integration -[submodule "CDEPS-interface/CDEPS"] - path = CDEPS-interface/CDEPS - url = https://github.com/NOAA-EMC/CDEPS From a913f37f1f008ecdd67efa32e06b64ba02a8efe4 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 24 May 2021 23:45:47 +0000 Subject: [PATCH 35/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c01c1f76ed..c48922ada7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c01c1f76ed201a583d87b6994925c19b95e976d9 +Subproject commit c48922ada742b7233fa49f65220e63a31482d9f4 From 83a8c76018a83974222be34835fec7e3206460a5 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 27 May 2021 04:38:59 +0000 Subject: [PATCH 36/79] Ensure MPI compilers are used to build UFS-Aerosols. --- modulefiles/ufs_aerosols_hera.intel | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index 6c27e4177f..2327f95626 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -20,3 +20,8 @@ module load cmake/3.20.1 # use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. # RDMA operations are explicitly used in MAPL when writing output files. setenv I_MPI_FABRICS shm:ofa + +# reset compilers to MPI version +setenv CC mpiicc +setenv CXX mpiicpc +setenv FC mpiifort From 676e0a44fc7c855889958dfbcdbb2414fc9ea6d2 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 27 May 2021 04:40:58 +0000 Subject: [PATCH 37/79] Update MAPL to version 2.7.0 on Hera. --- modulefiles/ufs_aerosols_hera.intel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index 2327f95626..d24569db90 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -11,7 +11,7 @@ module load esma_cmake module load cmakemodules module load gftl-shared module load yafyaml -module load mapl/2.6.8p1 +module load mapl/2.7.0 module load intelpython/3.6.8 From 35d7f86f8d52b4c57301633d224678af9dd60945 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 27 May 2021 04:53:13 +0000 Subject: [PATCH 38/79] Remove GOCART dependency on ecBuild and ESMA_cmake. Also remove hpc-stack module cmakemodules on Hera. --- CMakeLists.txt | 1 - GOCART | 2 +- modulefiles/ufs_aerosols_hera.intel | 3 --- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a7e6897bc..69642fa234 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,7 +156,6 @@ endif() ############################################################################### if(GOCART) set(BUILD_UFS ON) - include (ecbuild_system NO_POLICY_SCOPE) add_subdirectory(GOCART) endif() diff --git a/GOCART b/GOCART index d7a965f4bb..bddcbe482d 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit d7a965f4bb84be2e426977b9da4e9e5536232b78 +Subproject commit bddcbe482d8ff5be9d22b6e1e44a8c39d5b8d134 diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index d24569db90..c029751c69 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -6,9 +6,6 @@ module load hpc/1.1.0-nasa module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -module load ecbuild -module load esma_cmake -module load cmakemodules module load gftl-shared module load yafyaml module load mapl/2.7.0 From 4b95413b8c1943e651e769bd0f95f8d8a310020f Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 27 May 2021 19:01:48 +0000 Subject: [PATCH 39/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c48922ada7..72ec69e1fd 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c48922ada742b7233fa49f65220e63a31482d9f4 +Subproject commit 72ec69e1fde2b1b0a8833cf329852701bfef4797 From d60dd6aa2c7b627ad71625e125b67a7a63b1587f Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 3 Jun 2021 19:31:10 +0000 Subject: [PATCH 40/79] Update FV3 and GOCART submodules. --- FV3 | 2 +- GOCART | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FV3 b/FV3 index 72ec69e1fd..24cb28536d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 72ec69e1fde2b1b0a8833cf329852701bfef4797 +Subproject commit 24cb28536dedc9b6d677b3c265cbbb3e995d1e81 diff --git a/GOCART b/GOCART index bddcbe482d..845756ff1a 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit bddcbe482d8ff5be9d22b6e1e44a8c39d5b8d134 +Subproject commit 845756ff1a33c5cb9d2326ebdf14e247889dd31f From 54d9ba063473395a87413491da1b87564ece0bf4 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 4 Jun 2021 00:49:41 +0000 Subject: [PATCH 41/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 24cb28536d..88a1be6209 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 24cb28536dedc9b6d677b3c265cbbb3e995d1e81 +Subproject commit 88a1be6209412396d9913aa833bb9a60a6acc688 From a3f15c4cc9724c26963a398e771730f1eb96e6d2 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 4 Jun 2021 19:32:06 +0000 Subject: [PATCH 42/79] Update build system and GOCART submodule to rename CMake GOCART build option and library target. See PR #591 for details. --- CMakeLists.txt | 13 ++++++------- GOCART | 2 +- cmake/configure_apps.cmake | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 045338db5f..becbdabeab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ endif() set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") -set(GOCART OFF CACHE BOOL "Enable GOCART") +set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(CICE6 OFF CACHE BOOL "Enable CICE6") set(WW3 OFF CACHE BOOL "Enable WW3") @@ -40,7 +40,7 @@ include(cmake/configure_apps.cmake) message("") message("FMS .............. ${FMS}") message("FV3 .............. ${FV3}") -message("GOCART ........... ${GOCART}") +message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") @@ -154,8 +154,7 @@ endif() ############################################################################### ### GOCART ############################################################################### -if(GOCART) - set(BUILD_UFS ON) +if(UFS_GOCART) add_subdirectory(GOCART) endif() @@ -239,10 +238,10 @@ if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() -if(GOCART) - add_dependencies(ufs UFS) +if(UFS_GOCART) + add_dependencies(ufs UFS_Aerosols) list(APPEND _ufs_defs_private FRONT_GOCART=Aerosol_Cap) - list(APPEND _ufs_libs_public UFS) + list(APPEND _ufs_libs_public UFS_Aerosols) endif() if(WW3) diff --git a/GOCART b/GOCART index 845756ff1a..bfcde26f4e 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit 845756ff1a33c5cb9d2326ebdf14e247889dd31f +Subproject commit bfcde26f4e032f07461f69f7e8f01817c0905986 diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index cec8c1e7d9..c2220628f8 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -58,6 +58,6 @@ if(APP MATCHES "^(ATMAERO)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - set(GOCART ON CACHE BOOL "Enable GOCART" FORCE) + set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) message("Configuring UFS app in Atmosphere with Aerosols mode") endif() From fc2d746d1b47879da6e58e9cd8ce6aebd9a12930 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Fri, 4 Jun 2021 20:12:50 +0000 Subject: [PATCH 43/79] Update GOCART submodule --- GOCART | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GOCART b/GOCART index bfcde26f4e..87072fc09e 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit bfcde26f4e032f07461f69f7e8f01817c0905986 +Subproject commit 87072fc09e966f022ca9118939785a1823c3bf92 From c63d562c7f79c2d7303060af758531140abea8cb Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sat, 5 Jun 2021 05:27:02 +0000 Subject: [PATCH 44/79] Update aerosols modulefile on Hera. --- modulefiles/ufs_aerosols_hera.intel | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index c029751c69..2250014e4e 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -1,24 +1,9 @@ #%Module -module use /scratch1/NCEPDEV/nems/Raffaele.Montuoro/dev/nasa/ufs/lib/hpc-stack/1.1.0-nasa/modulefiles/stack +module use -a /scratch1/NCEPDEV/nems/Raffaele.Montuoro/dev/nasa/ufs/lib/modulefiles -module load hpc/1.1.0-nasa -module load hpc-intel/18.0.5.274 -module load hpc-impi/2018.0.4 - -module load gftl-shared -module load yafyaml -module load mapl/2.7.0 +module load gftl-shared/v1.3.0 +module load yafyaml/v0.5.1 +module load mapl/v2.7.1-beta module load intelpython/3.6.8 - -module load cmake/3.20.1 - -# use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. -# RDMA operations are explicitly used in MAPL when writing output files. -setenv I_MPI_FABRICS shm:ofa - -# reset compilers to MPI version -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort From f557ebca4cf790c35896b239b9a78e92904439d8 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Sun, 13 Jun 2021 18:33:26 +0000 Subject: [PATCH 45/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 88a1be6209..77550cad4c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 88a1be6209412396d9913aa833bb9a60a6acc688 +Subproject commit 77550cad4c88a63d702ec2ad8a431d52b8baf17a From e551ea2b58dcea938a98b3ae8bbd043c83f5ad00 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 15 Jun 2021 04:36:58 +0000 Subject: [PATCH 46/79] Update MAPL to version 2.7.1 on Hera. --- modulefiles/ufs_aerosols_hera.intel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel index 2250014e4e..795db6086b 100644 --- a/modulefiles/ufs_aerosols_hera.intel +++ b/modulefiles/ufs_aerosols_hera.intel @@ -4,6 +4,6 @@ module use -a /scratch1/NCEPDEV/nems/Raffaele.Montuoro/dev/nasa/ufs/lib/modulefi module load gftl-shared/v1.3.0 module load yafyaml/v0.5.1 -module load mapl/v2.7.1-beta +module load mapl/v2.7.1 module load intelpython/3.6.8 From 85219fb18dbbf9cdcc9b04a3b77ae2446b2aa3a5 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 16 Jun 2021 01:53:09 +0000 Subject: [PATCH 47/79] Add regression test for global prognostic aerosols on Hera. --- tests/compile.sh | 36 +++++----- tests/default_vars.sh | 4 ++ tests/fv3_conf/control_run.IN | 8 +++ tests/parm/control.nml.IN | 4 +- tests/parm/nems.configure.atm_aerosols.IN | 34 +++++++++ tests/rt.conf | 7 ++ tests/rt.sh | 3 + tests/tests/control_atm_aerosols | 85 +++++++++++++++++++++++ 8 files changed, 162 insertions(+), 19 deletions(-) create mode 100644 tests/parm/nems.configure.atm_aerosols.IN create mode 100644 tests/tests/control_atm_aerosols diff --git a/tests/compile.sh b/tests/compile.sh index 64f1abb4b4..112c2cc2ec 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -71,6 +71,9 @@ else if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] && modulefile="ufs_${MACHINE_ID}_debug" fi + if [[ "${MAKE_OPT}" == *"APP=ATMAERO"* ]]; then + [[ -f $PATHTR/modulefiles/ufs_aerosols_${MACHINE_ID} ]] && modulefile="${modulefile} ufs_aerosols_${MACHINE_ID}" + fi module load $modulefile module list fi @@ -132,29 +135,26 @@ fi set -ex # Valid applications -if [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then +if [[ "${MAKE_OPT}" == *"APP=ATMAERO"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMAERO" + unset PYTHONPATH +elif [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" +elif [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then echo "MAKE_OPT = ${MAKE_OPT}" CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATM" fi -if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" -fi - -if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" -fi - if [[ "${MAKE_OPT}" == *"APP=S2SW"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2SW -DMOM6SOLO=ON" -fi - -if [[ "${MAKE_OPT}" == *"APP=NG-GODAS"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS" +elif [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" fi if [[ "${MAKE_OPT}" == *"APP=NG-GODAS-NEMSDATM"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS-NEMSDATM" +elif [[ "${MAKE_OPT}" == *"APP=NG-GODAS"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") @@ -172,11 +172,11 @@ export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} -else - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} -fi + +echo "#%Module" > ${PATHTR}/tests/modules.${BUILD_NAME} +for m in ${modulefile} ; do + tail -n +2 ${PATHTR}/modulefiles/${m} >> ${PATHTR}/tests/modules.${BUILD_NAME} +done if [ $clean_after = YES ] ; then rm -rf ${BUILD_DIR} diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 261ec0a40c..7d4f94e7ce 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -514,6 +514,9 @@ export IMFDEEPCNV=2 export HWRF_SAMFDEEP=.F. export RAS=.F. +# Aerosol convective scavenging +export FSCAV_AERO="'*:0.0'" + # SFC export DO_MYJSFC=.F. export DO_MYNNSFCLAY=.F. @@ -533,6 +536,7 @@ export H2O_PHYS=.F. export CPL=.F. +export CPLCHM=.F. export CPLFLX=.F. export CPLWAV=.F. export CPLWAV2ATM=.F. diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 45b98159b5..c6790382a9 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -142,3 +142,11 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi + +#prognostic aerosols +if [ $CPLCHM = .T. ]; then + cp @[INPUTDATA_ROOT_GOCART]/diag_table . + cp @[INPUTDATA_ROOT_GOCART]/field_table . + cp @[INPUTDATA_ROOT_GOCART]/rc/* . + ln -sf @[INPUTDATA_ROOT_GOCART]/ExtData . +fi diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 71b2da5acb..d5ef0ef078 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -61,7 +61,7 @@ deflate_level=1 nwat = 6 na_init = @[NA_INIT] d_ext = 0. - dnats = 1 + dnats = @[DNATS] fv_sg_adj = 450 d2_bg = 0. nord = 2 @@ -169,6 +169,7 @@ deflate_level=1 psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 lgfdlmprad = .true. + cplchm = @[CPLCHM] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] effr_in = .true. @@ -180,6 +181,7 @@ deflate_level=1 do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + fscav_aero = @[FSCAV_AERO] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/nems.configure.atm_aerosols.IN b/tests/parm/nems.configure.atm_aerosols.IN new file mode 100644 index 0000000000..cbf9bd856d --- /dev/null +++ b/tests/parm/nems.configure.atm_aerosols.IN @@ -0,0 +1,34 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# EARTH # +EARTH_component_list: ATM CHM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + @ +:: diff --git a/tests/rt.conf b/tests/rt.conf index 4aec8fa0e3..72acb2e011 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -187,3 +187,10 @@ RUN | datm_cdeps_debug_cfsr COMPILE | APP=ATMW SUITES=FV3_GFS_v16 | - wcoss_cray | fv3 | RUN | control_atmwav | - wcoss_cray | fv3 | + +################################################################################################################################################################################### +# ATM-GOCART tests # +################################################################################################################################################################################### + +COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | + hera.intel | fv3 | +RUN | control_atm_aerosols | + hera.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 8ddf5cd4f6..cd6cd328a6 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -421,6 +421,7 @@ else fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210528} +INPUTDATA_ROOT_GOCART=/scratch1/NCEPDEV/nems/Raffaele.Montuoro/emc.nemspara/RT/GOCART/input-data-20210614 INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20210503 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} @@ -501,6 +502,7 @@ if [[ $ROCOTO == true ]]; then + @@ -699,6 +701,7 @@ EOF export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} + export INPUTDATA_ROOT_GOCART=${INPUTDATA_ROOT_GOCART} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} export PATHRT=${PATHRT} diff --git a/tests/tests/control_atm_aerosols b/tests/tests/control_atm_aerosols new file mode 100644 index 0000000000..e5072a5868 --- /dev/null +++ b/tests/tests/control_atm_aerosols @@ -0,0 +1,85 @@ +############################################################################### +# +# global control test with prognostic aerosols: GFSv16 FV3-GOCART at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" + +# export NEW_BASELINE=/scratch1/NCEPDEV/nems/Raffaele.Montuoro/emc.nemspara/RT/GOCART/develop-20210610/INTEL/baseline +export RTPWD=/scratch1/NCEPDEV/nems/Raffaele.Montuoro/emc.nemspara/RT/GOCART/develop-20210610/INTEL +export CNTL_DIR=control_atm_aerosols + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24 \ + gocart.inst_aod.20210322_0700z.nc4 \ + gocart.inst_aod.20210323_0600z.nc4 \ + gocart.tavg_cmass.20210322_0730z.nc4 \ + gocart.tavg_cmass.20210323_0430z.nc4 \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=12 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FSCAV_AERO='"*:0.6", "seas1:1.0", "seas2:1.0", "seas3:1.0", "seas4:1.0", "seas5:1.0"' +export DNATS=3 + +export CPL=.true. +export CPLCHM=.T. +export atm_model='fv3' +export atm_petlist_bounds="0 149" +export chm_model='gocart' +export chm_petlist_bounds="0 143" +export coupling_interval_sec=${DT_ATMOS} +export NEMS_CONFIGURE="nems.configure.atm_aerosols.IN" + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=control.nml.IN From 921054db50f5a2f73fc4247bbd29685825a45735 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 16 Jun 2021 04:48:23 +0000 Subject: [PATCH 48/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 77550cad4c..02314a068b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 77550cad4c88a63d702ec2ad8a431d52b8baf17a +Subproject commit 02314a068bf07c050809b0ae34ceee3d400699e7 From ecd48e2fde649403db8a32763f53c067a634e614 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 16 Jun 2021 20:11:18 +0000 Subject: [PATCH 49/79] Update path to aerosol regression test input data. --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index bd86217330..bd651f3a17 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -421,7 +421,7 @@ else fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210528} -INPUTDATA_ROOT_GOCART=/scratch1/NCEPDEV/nems/Raffaele.Montuoro/emc.nemspara/RT/GOCART/input-data-20210614 +INPUTDATA_ROOT_GOCART=${INPUTDATA_ROOT_GOCART:-$DISKNM/NEMSfv3gfs/input-data-20210614/GOCART} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20210503 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} From c9c9a45bc9bb487ba2c1381178b309915353da08 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 16 Jun 2021 20:18:19 +0000 Subject: [PATCH 50/79] Update FV3 submodule. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 02314a068b..96960c4fbf 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 02314a068bf07c050809b0ae34ceee3d400699e7 +Subproject commit 96960c4fbfbcde5c5ee54984c3abf4e3244870da From e4404cf7f81ad9ebde4f31858a919ea8c3934523 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 16 Jun 2021 20:24:31 +0000 Subject: [PATCH 51/79] Clean up aerosol regression test config file. --- tests/tests/control_atm_aerosols | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/tests/control_atm_aerosols b/tests/tests/control_atm_aerosols index e5072a5868..cb299ab6cb 100644 --- a/tests/tests/control_atm_aerosols +++ b/tests/tests/control_atm_aerosols @@ -6,8 +6,6 @@ export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" -# export NEW_BASELINE=/scratch1/NCEPDEV/nems/Raffaele.Montuoro/emc.nemspara/RT/GOCART/develop-20210610/INTEL/baseline -export RTPWD=/scratch1/NCEPDEV/nems/Raffaele.Montuoro/emc.nemspara/RT/GOCART/develop-20210610/INTEL export CNTL_DIR=control_atm_aerosols export LIST_FILES="sfcf000.nc \ From 53041b2f8d0b73f942431cbaeb7619608ed207fb Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 15:26:50 +0000 Subject: [PATCH 52/79] Remove unneeded INPUTDATA_ROOT_GOCART variable. --- tests/fv3_conf/control_run.IN | 8 ++++---- tests/rt.sh | 3 --- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index c6790382a9..898fd25c7c 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -145,8 +145,8 @@ fi #prognostic aerosols if [ $CPLCHM = .T. ]; then - cp @[INPUTDATA_ROOT_GOCART]/diag_table . - cp @[INPUTDATA_ROOT_GOCART]/field_table . - cp @[INPUTDATA_ROOT_GOCART]/rc/* . - ln -sf @[INPUTDATA_ROOT_GOCART]/ExtData . + cp @[INPUTDATA_ROOT]/GOCART/diag_table . + cp @[INPUTDATA_ROOT]/GOCART/field_table . + cp @[INPUTDATA_ROOT]/GOCART/rc/* . + ln -sf @[INPUTDATA_ROOT]/GOCART/ExtData . fi diff --git a/tests/rt.sh b/tests/rt.sh index c89043e9ab..a5b18484c6 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -421,7 +421,6 @@ else fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210614} -INPUTDATA_ROOT_GOCART=${INPUTDATA_ROOT_GOCART:-$DISKNM/NEMSfv3gfs/input-data-20210614/GOCART} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20210503 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} @@ -502,7 +501,6 @@ if [[ $ROCOTO == true ]]; then - @@ -701,7 +699,6 @@ EOF export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} - export INPUTDATA_ROOT_GOCART=${INPUTDATA_ROOT_GOCART} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} export PATHRT=${PATHRT} From e9b701446cb3ccfd43499ef6038902ae8f5df3c6 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 15:29:02 +0000 Subject: [PATCH 53/79] Add GOCART dependencies to UFS common modulefiles. Add CMake settings for MAPL to build script and remove generic settings for CMAKE_PREFIX_PATH and CMAKE_MODULE_PATH. --- build.sh | 3 +-- modulefiles/ufs_common | 5 +++++ modulefiles/ufs_common_debug | 5 +++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index fbc27a9d51..41f7c74866 100755 --- a/build.sh +++ b/build.sh @@ -17,8 +17,7 @@ BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} [[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" -CMAKE_FLAGS+=" -DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH:-""}" -CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${CMAKE_MODULE_PATH:-""}" +[[ -n "${MAPL_ROOT:-""}" ]] && CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${MAPL_ROOT}/share/MAPL/cmake" CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" cd ${BUILD_DIR} diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common index 3e8a5a2a32..03810462f7 100644 --- a/modulefiles/ufs_common +++ b/modulefiles/ufs_common @@ -20,3 +20,8 @@ module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 module load upp/10.0.6 + +module load gftl-shared/v1.3.0 +module load yafyaml/v0.5.1 +module load mapl/v2.7.3 +module load intelpython/3.6.8 diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug index 85008dbc37..d3af242302 100644 --- a/modulefiles/ufs_common_debug +++ b/modulefiles/ufs_common_debug @@ -20,3 +20,8 @@ module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 module load upp/10.0.6 + +module load gftl-shared/v1.3.0 +module load yafyaml/v0.5.1 +module load mapl/v2.7.3 +module load intelpython/3.6.8 From 36f9e94fb62512e02a605c627073ac3f27faae87 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 15:35:24 +0000 Subject: [PATCH 54/79] Add Intel MPI environment settings to circumvent RDMA-related bug in DAPL on Hera. --- modulefiles/ufs_hera.intel | 3 +++ modulefiles/ufs_hera.intel_debug | 3 +++ 2 files changed, 6 insertions(+) diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel index 77c7c6eebd..35fc33dbf1 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -24,3 +24,6 @@ setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort setenv CMAKE_Platform hera.intel + +# use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. +setenv I_MPI_FABRICS shm:ofa diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug index 2d15834c8f..852ccda56e 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -24,3 +24,6 @@ setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort setenv CMAKE_Platform hera.intel + +# use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. +setenv I_MPI_FABRICS shm:ofa From f1519bcd493ebd2adee3e0b7f94dda69bf77ff17 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 15:38:03 +0000 Subject: [PATCH 55/79] Extend regression testing for prognostic aerosols to all platforms. --- tests/rt.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index ea86368401..b574ad0df9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -192,5 +192,5 @@ RUN | control_atmwav # ATM-GOCART tests # ################################################################################################################################################################################### -COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | + hera.intel | fv3 | -RUN | control_atm_aerosols | + hera.intel | fv3 | +COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | | fv3 | +RUN | control_atm_aerosols | | fv3 | From a244bf9e8588f42982f6cc3b066df7905d2461d5 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 16:08:33 +0000 Subject: [PATCH 56/79] Remove references to aerosol-specific modulefile from R/T compile script. --- tests/compile.sh | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tests/compile.sh b/tests/compile.sh index 112c2cc2ec..f5194c0743 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -71,9 +71,6 @@ else if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] && modulefile="ufs_${MACHINE_ID}_debug" fi - if [[ "${MAKE_OPT}" == *"APP=ATMAERO"* ]]; then - [[ -f $PATHTR/modulefiles/ufs_aerosols_${MACHINE_ID} ]] && modulefile="${modulefile} ufs_aerosols_${MACHINE_ID}" - fi module load $modulefile module list fi @@ -172,11 +169,11 @@ export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe - -echo "#%Module" > ${PATHTR}/tests/modules.${BUILD_NAME} -for m in ${modulefile} ; do - tail -n +2 ${PATHTR}/modulefiles/${m} >> ${PATHTR}/tests/modules.${BUILD_NAME} -done +if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} +else + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} +fi if [ $clean_after = YES ] ; then rm -rf ${BUILD_DIR} From 0fab7d804b2452c5cb8f569742a8766e9db10d31 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 16:39:31 +0000 Subject: [PATCH 57/79] Remove legacy NETCDF settings from build script. --- build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sh b/build.sh index 41f7c74866..069fb1a5a8 100755 --- a/build.sh +++ b/build.sh @@ -18,7 +18,6 @@ mkdir -p ${BUILD_DIR} [[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" [[ -n "${MAPL_ROOT:-""}" ]] && CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${MAPL_ROOT}/share/MAPL/cmake" -CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} From 8de4676cffdbbd7d6462d2b814688ca5076ff081 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 17:43:42 +0000 Subject: [PATCH 58/79] Remove additional aerosol modulefile. --- modulefiles/ufs_aerosols_hera.intel | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 modulefiles/ufs_aerosols_hera.intel diff --git a/modulefiles/ufs_aerosols_hera.intel b/modulefiles/ufs_aerosols_hera.intel deleted file mode 100644 index 795db6086b..0000000000 --- a/modulefiles/ufs_aerosols_hera.intel +++ /dev/null @@ -1,9 +0,0 @@ -#%Module - -module use -a /scratch1/NCEPDEV/nems/Raffaele.Montuoro/dev/nasa/ufs/lib/modulefiles - -module load gftl-shared/v1.3.0 -module load yafyaml/v0.5.1 -module load mapl/v2.7.1 - -module load intelpython/3.6.8 From 7dac1bdd888351aa809273b1663a83851ba1803a Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Mon, 28 Jun 2021 21:24:19 +0000 Subject: [PATCH 59/79] Use proper GOCART branch in .gitmodules --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index c2f993a7df..2fb455d08d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -41,4 +41,4 @@ [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART - branch = feature/rmontuoro/ufs-integration + branch = develop From 4b579ff78ac31a7eabf406cfc58fca97bf20e456 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 29 Jun 2021 14:18:32 +0000 Subject: [PATCH 60/79] Disable GOCART regression testing on WCOSS Cray and Dell P3. --- tests/rt.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 7e4291d78b..4ba9295b30 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -189,8 +189,8 @@ COMPILE | APP=ATMW SUITES=FV3_GFS_v16 RUN | control_atmwav | - wcoss_cray | fv3 | ################################################################################################################################################################################### -# ATM-GOCART tests # +# ATM-GOCART tests # ################################################################################################################################################################################### -COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | | fv3 | -RUN | control_atm_aerosols | | fv3 | +COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | - wcoss_cray wcoss_dell_p3 | fv3 | +RUN | control_atm_aerosols | - wcoss_cray wcoss_dell_p3 | fv3 | From 44b202048af3d1261607d524233a0581b7e4c775 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 29 Jun 2021 14:33:50 +0000 Subject: [PATCH 61/79] Update date of R/T baseline. --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index f770a1d6f5..725ae0ed4b 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -413,7 +413,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210616 +BL_DATE=20210629 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else From 2f3bd160e89bd6bc5c4c42b2a0e2e88b0b2cb7b1 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 29 Jun 2021 20:09:17 +0000 Subject: [PATCH 62/79] Revert "Update date of R/T baseline." This reverts commit 44b202048af3d1261607d524233a0581b7e4c775. --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index 725ae0ed4b..f770a1d6f5 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -413,7 +413,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210629 +BL_DATE=20210616 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else From 11b1ab346dae35bd87eb919526cf7a2acd1db056 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Tue, 29 Jun 2021 20:14:50 +0000 Subject: [PATCH 63/79] Enable GOCART regression testing on Hera/Intel platform only. --- tests/rt.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 4ba9295b30..6f7c87a8a4 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -192,5 +192,5 @@ RUN | control_atmwav # ATM-GOCART tests # ################################################################################################################################################################################### -COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | - wcoss_cray wcoss_dell_p3 | fv3 | -RUN | control_atm_aerosols | - wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | APP=ATMAERO SUITES=FV3_GFS_v16 | + hera.intel | fv3 | +RUN | control_atm_aerosols | + hera.intel | fv3 | From 0646128063a50050e905de22e816fef3c6f9e7b3 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 29 Jun 2021 16:41:27 -0600 Subject: [PATCH 64/79] Fix Python environment on Hera: use miniconda3 install in rt.sh, modulefiles and hpc-stack --- build.sh | 4 +++- modulefiles/ufs_common | 1 - modulefiles/ufs_common_debug | 3 +-- modulefiles/ufs_hera.gnu | 9 ++++++--- modulefiles/ufs_hera.gnu_debug | 9 ++++++--- modulefiles/ufs_hera.intel | 9 ++++++--- modulefiles/ufs_hera.intel_debug | 9 ++++++--- tests/compile.sh | 1 - tests/rt.sh | 7 ++++--- 9 files changed, 32 insertions(+), 20 deletions(-) diff --git a/build.sh b/build.sh index 069fb1a5a8..fb38cbce50 100755 --- a/build.sh +++ b/build.sh @@ -21,4 +21,6 @@ mkdir -p ${BUILD_DIR} cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} -make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} +# Turn off OpenMP threading for parallel builds +# to avoid exhausting the number of user processes +OMP_NUM_THREADS=1 make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common index 0f87009e9e..2395633b5d 100644 --- a/modulefiles/ufs_common +++ b/modulefiles/ufs_common @@ -24,4 +24,3 @@ module load upp/10.0.8 module load gftl-shared/v1.3.0 module load yafyaml/v0.5.1 module load mapl/v2.7.3 -module load intelpython/3.6.8 diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug index f09af4afa5..949836de99 100644 --- a/modulefiles/ufs_common_debug +++ b/modulefiles/ufs_common_debug @@ -23,5 +23,4 @@ module load upp/10.0.8 module load gftl-shared/v1.3.0 module load yafyaml/v0.5.1 -module load mapl/v2.7.3 -module load intelpython/3.6.8 +module load mapl/v2.7.3 \ No newline at end of file diff --git a/modulefiles/ufs_hera.gnu b/modulefiles/ufs_hera.gnu index 18ed52289f..2507321e3a 100644 --- a/modulefiles/ufs_hera.gnu +++ b/modulefiles/ufs_hera.gnu @@ -6,14 +6,17 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/GNU" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack +module load cmake/3.20.1 -module load hpc/1.1.0 +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack -module load cmake/3.20.0 +module load hpc/1.1.0 module load hpc-gnu/9.2.0 module load hpc-mpich/3.3.2 diff --git a/modulefiles/ufs_hera.gnu_debug b/modulefiles/ufs_hera.gnu_debug index eb1d07bd4c..3807c2adb1 100644 --- a/modulefiles/ufs_hera.gnu_debug +++ b/modulefiles/ufs_hera.gnu_debug @@ -6,14 +6,17 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/GNU" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack +module load cmake/3.20.1 -module load hpc/1.1.0 +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack -module load cmake/3.20.0 +module load hpc/1.1.0 module load hpc-gnu/9.2.0 module load hpc-mpich/3.3.2 diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel index 35fc33dbf1..34935e44e6 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -6,14 +6,17 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/Intel" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack +module load cmake/3.20.1 -module load hpc/1.1.0 +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack -module load cmake/3.20.0 +module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug index 852ccda56e..74c5d7e310 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -6,14 +6,17 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/Intel" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack +module load cmake/3.20.1 -module load hpc/1.1.0 +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack -module load cmake/3.20.0 +module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/tests/compile.sh b/tests/compile.sh index f5194c0743..0c21018c67 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -134,7 +134,6 @@ set -ex # Valid applications if [[ "${MAKE_OPT}" == *"APP=ATMAERO"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMAERO" - unset PYTHONPATH elif [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" elif [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then diff --git a/tests/rt.sh b/tests/rt.sh index f770a1d6f5..3835019d43 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -232,9 +232,10 @@ elif [[ $MACHINE_ID = hera.* ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH - export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh + PYTHONHOME=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3_new_20210629 + export PATH=$PYTHONHOME/bin:$PATH + export PYTHONPATH=$PYTHONHOME/lib/python3.7/site-packages + ECFLOW_START=$PYTHONHOME/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=debug From e663a9fcc7ccac119687001bcf9de8fbcdedfb62 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 30 Jun 2021 03:29:58 +0000 Subject: [PATCH 65/79] RT JOBS PASSED: gaea.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_gaea.intel.log | 390 +++++++++++++-------------- 1 file changed, 195 insertions(+), 195 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 5f403cba25..f026737598 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,26 +1,26 @@ -Wed Jun 16 22:20:41 EDT 2021 +Tue Jun 29 22:32:51 EDT 2021 Start Regression test -Compile 001 elapsed time 776 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 001 elapsed time 767 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst Compile 002 elapsed time 805 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 313 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 726 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y +Compile 003 elapsed time 309 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 682 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y Compile 005 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 706 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 705 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 696 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 271 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 264 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 251 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 252 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 316 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 190 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 321 seconds. APP=NG-GODAS -Compile 016 elapsed time 198 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 686 seconds. APP=ATMW SUITES=FV3_GFS_v16 +Compile 006 elapsed time 681 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 007 elapsed time 684 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 687 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 009 elapsed time 293 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y +Compile 010 elapsed time 263 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y +Compile 011 elapsed time 266 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 012 elapsed time 240 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 013 elapsed time 307 seconds. APP=NG-GODAS-NEMSDATM +Compile 014 elapsed time 205 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y +Compile 015 elapsed time 308 seconds. APP=NG-GODAS +Compile 016 elapsed time 208 seconds. APP=NG-GODAS DEBUG=Y +Compile 017 elapsed time 645 seconds. APP=ATMW SUITES=FV3_GFS_v16 baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.128357 +The total amount of wall time = 122.719853 Test 001 cpld_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 88.198155 +The total amount of wall time = 49.325746 Test 002 cpld_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 124.887541 +The total amount of wall time = 87.968911 Test 003 cpld_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 125.991856 +The total amount of wall time = 119.031763 Test 004 cpld_ca PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 403.936358 +The total amount of wall time = 399.136682 Test 005 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_restart_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 312.716971 +The total amount of wall time = 270.326709 Test 006 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 834.431868 +The total amount of wall time = 813.697675 Test 007 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_restart_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 433.302492 +The total amount of wall time = 416.642666 Test 008 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 824.504289 +The total amount of wall time = 796.748173 Test 009 cpld_bmark_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_restart_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 427.193195 +The total amount of wall time = 417.769317 Test 010 cpld_restart_bmark_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_bmark_v16_nsst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 849.159042 +The total amount of wall time = 794.819679 Test 011 cpld_bmark_v16_nsst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_bmark_wave_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 891.304005 +The total amount of wall time = 862.192699 Test 012 cpld_bmark_wave_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_bmark_wave_v16_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 925.612551 +The total amount of wall time = 895.226219 Test 013 cpld_bmark_wave_v16_noahmp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_control_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 111.183576 +The total amount of wall time = 167.013118 Test 014 cpld_control_wave PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 265.680217 +The total amount of wall time = 265.040526 Test 015 cpld_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 168.060664 +The total amount of wall time = 178.775097 Test 016 control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 170.215415 +The total amount of wall time = 167.263915 Test 017 control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 206.179864 +The total amount of wall time = 224.106927 Test 018 control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.587332 +The total amount of wall time = 71.514293 Test 019 control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 127.796183 +The total amount of wall time = 125.006064 Test 020 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1074,13 +1074,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 328.449871 +The total amount of wall time = 226.578714 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 562.208238 +The total amount of wall time = 528.536575 Test 022 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 120.019704 +The total amount of wall time = 147.751024 Test 023 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ca Checking test 024 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 024 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 144.505298 +The total amount of wall time = 116.344342 Test 024 control_ca PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 120.993311 +The total amount of wall time = 121.210453 Test 025 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lheatstrg Checking test 026 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1159,13 +1159,13 @@ Checking test 026 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 165.321192 +The total amount of wall time = 164.556919 Test 026 control_lheatstrg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_merra2 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_merra2 Checking test 027 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1176,13 +1176,13 @@ Checking test 027 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 271.081558 +The total amount of wall time = 196.606882 Test 027 control_merra2 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,13 +1193,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 243.048176 +The total amount of wall time = 240.937015 Test 028 control_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmg Checking test 029 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1210,13 +1210,13 @@ Checking test 029 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 358.011149 +The total amount of wall time = 306.741750 Test 029 control_csawmg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmgt Checking test 030 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,13 +1227,13 @@ Checking test 030 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 424.270987 +The total amount of wall time = 357.977548 Test 030 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1244,13 +1244,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 255.383229 +The total amount of wall time = 240.761020 Test 031 control_flake PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 201.346956 +The total amount of wall time = 197.364484 Test 032 control_ugwpv1 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,13 +1278,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 218.300251 +The total amount of wall time = 187.664445 Test 033 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 251.004594 +The total amount of wall time = 247.526231 Test 034 control_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,13 +1312,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 240.155483 +The total amount of wall time = 242.465675 Test 035 control_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 218.889386 +The total amount of wall time = 216.525671 Test 036 control_noahmp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1343,25 +1343,25 @@ Checking test 037 regional_control 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 = 330.263586 +The total amount of wall time = 326.662550 Test 037 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 176.118977 +The total amount of wall time = 208.630832 Test 038 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1372,13 +1372,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 333.222236 +The total amount of wall time = 355.327817 Test 039 regional_quilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_quilt_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_2threads Checking test 040 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 040 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 281.821265 +The total amount of wall time = 308.399977 Test 040 regional_quilt_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_hafs Checking test 041 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1404,27 +1404,27 @@ Checking test 041 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 331.912993 +The total amount of wall time = 350.079134 Test 041 regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_netcdf_parallel Checking test 042 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 344.049658 +The total amount of wall time = 348.304698 Test 042 regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_RRTMGP Checking test 043 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1435,13 +1435,13 @@ Checking test 043 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 470.258616 +The total amount of wall time = 490.387084 Test 043 regional_quilt_RRTMGP PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_gsd Checking test 044 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 044 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 186.616171 +The total amount of wall time = 216.104355 Test 044 fv3_gsd PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1alpha Checking test 045 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1601,13 +1601,13 @@ Checking test 045 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.807770 +The total amount of wall time = 122.038607 Test 045 fv3_rrfs_v1alpha PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rap Checking test 046 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1672,13 +1672,13 @@ Checking test 046 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 95.174435 +The total amount of wall time = 123.582907 Test 046 fv3_rap PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_hrrr Checking test 047 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,13 +1743,13 @@ Checking test 047 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.835988 +The total amount of wall time = 90.038779 Test 047 fv3_hrrr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1beta Checking test 048 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,13 +1814,13 @@ Checking test 048 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.075179 +The total amount of wall time = 92.836918 Test 048 fv3_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,13 +1885,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 163.778347 +The total amount of wall time = 176.528269 Test 049 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1906,39 +1906,39 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 333.046063 +The total amount of wall time = 322.857149 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.051662 +The total amount of wall time = 145.710990 Test 051 control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_2threads_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.078253 +The total amount of wall time = 291.589257 Test 052 control_2threads_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1965,169 +1965,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 185.998945 +The total amount of wall time = 154.932163 Test 053 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 155.897630 +The total amount of wall time = 151.651468 Test 054 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.342871 +The total amount of wall time = 185.736940 Test 055 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 149.567713 +The total amount of wall time = 195.844809 Test 056 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_lheatstrg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lheatstrg_debug Checking test 057 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.125341 +The total amount of wall time = 175.005660 Test 057 control_lheatstrg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_merra2_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_merra2_debug Checking test 058 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.691431 +The total amount of wall time = 184.682915 Test 058 control_merra2_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_rrtmgp_debug Checking test 059 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.861109 +The total amount of wall time = 169.880006 Test 059 control_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmg_debug Checking test 060 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 227.418150 +The total amount of wall time = 226.471168 Test 060 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmgt_debug Checking test 061 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.020964 +The total amount of wall time = 258.920293 Test 061 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ugwpv1_debug Checking test 062 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.420752 +The total amount of wall time = 158.660840 Test 062 control_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ras_debug Checking test 063 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.994159 +The total amount of wall time = 147.259964 Test 063 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson_debug Checking test 064 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 172.005523 +The total amount of wall time = 172.152541 Test 064 control_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson_no_aero_debug Checking test 065 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 197.531268 +The total amount of wall time = 165.276841 Test 065 control_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 066 regional_control_debug 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 = 258.662875 +The total amount of wall time = 254.460149 Test 066 regional_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_gsd_debug Checking test 067 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 067 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 207.090143 +The total amount of wall time = 203.442195 Test 067 fv3_gsd_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_gsd_diag3d_debug Checking test 068 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 068 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 237.814877 +The total amount of wall time = 243.113909 Test 068 fv3_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.632728 +The total amount of wall time = 196.818540 Test 069 fv3_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1alpha_debug Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2419,13 @@ Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.544874 +The total amount of wall time = 196.917048 Test 070 fv3_rrfs_v1alpha_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,13 +2490,13 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 210.366121 +The total amount of wall time = 210.081800 Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2511,73 +2511,73 @@ Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 382.878348 +The total amount of wall time = 377.438301 Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/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 = 101.644402 +The total amount of wall time = 97.899444 Test 073 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/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 = 89.233671 +The total amount of wall time = 88.277699 Test 074 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 124.336044 +The total amount of wall time = 94.127578 Test 075 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/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 = 124.329964 +The total amount of wall time = 93.906817 Test 076 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 125.448340 +The total amount of wall time = 119.726743 Test 077 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_mx025_gefs Checking test 078 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2586,85 +2586,85 @@ Checking test 078 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 395.024908 +The total amount of wall time = 373.903287 Test 078 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_debug_cfsr Checking test 079 datm_debug_cfsr results .... Comparing RESTART/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 -The total amount of wall time = 225.241145 +The total amount of wall time = 251.542336 Test 079 datm_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_control_cfsr Checking test 080 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 151.280432 +The total amount of wall time = 150.642223 Test 080 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_restart_cfsr Checking test 081 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.948672 +The total amount of wall time = 87.795340 Test 081 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_control_gefs Checking test 082 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 145.931920 +The total amount of wall time = 146.528743 Test 082 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_bulk_cfsr Checking test 083 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 151.476232 +The total amount of wall time = 148.796422 Test 083 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_bulk_gefs Checking test 084 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 153.018231 +The total amount of wall time = 144.518338 Test 084 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_mx025_gefs Checking test 085 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2673,35 +2673,35 @@ Checking test 085 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 387.567408 +The total amount of wall time = 367.580537 Test 085 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_multiple_files_cfsr Checking test 086 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 155.261589 +The total amount of wall time = 149.556686 Test 086 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_debug_cfsr Checking test 087 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 -The total amount of wall time = 395.706497 +The total amount of wall time = 360.673360 Test 087 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_28264/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_atmwav Checking test 088 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2744,11 +2744,11 @@ Checking test 088 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 350.798790 +The total amount of wall time = 374.403968 Test 088 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 16 23:37:09 EDT 2021 -Elapsed time: 01h:16m:28s. Have a nice day! +Tue Jun 29 23:29:53 EDT 2021 +Elapsed time: 00h:57m:03s. Have a nice day! From 159d39587ec00dd5226f9f589251935d52ea1bc3 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 29 Jun 2021 21:56:37 -0600 Subject: [PATCH 66/79] RT JOBS PASSED: cheyenne.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.intel.log | 408 +++++++++++------------ 1 file changed, 204 insertions(+), 204 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 7be5b1ecaf..b1e380235a 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,26 +1,26 @@ -Wed Jun 16 20:38:27 MDT 2021 +Tue Jun 29 20:46:03 MDT 2021 Start Regression test -Compile 001 elapsed time 990 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 1032 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 358 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 697 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 857 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 720 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 790 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 723 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 260 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 225 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 238 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 231 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 388 seconds. APP=NG-GODAS-NEMSDATM +Compile 001 elapsed time 980 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 1054 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp +Compile 003 elapsed time 355 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y +Compile 005 elapsed time 852 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp +Compile 006 elapsed time 717 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 007 elapsed time 787 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 715 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 009 elapsed time 259 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y +Compile 010 elapsed time 238 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y +Compile 011 elapsed time 227 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 012 elapsed time 220 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 013 elapsed time 376 seconds. APP=NG-GODAS-NEMSDATM Compile 014 elapsed time 190 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 396 seconds. APP=NG-GODAS -Compile 016 elapsed time 198 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 720 seconds. APP=ATMW SUITES=FV3_GFS_v16 +Compile 015 elapsed time 390 seconds. APP=NG-GODAS +Compile 016 elapsed time 201 seconds. APP=NG-GODAS DEBUG=Y +Compile 017 elapsed time 715 seconds. APP=ATMW SUITES=FV3_GFS_v16 baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 97.246368 +0:The total amount of wall time = 95.575088 Test 001 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 54.691657 +0:The total amount of wall time = 53.708983 Test 002 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_decomp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 95.624333 +0:The total amount of wall time = 92.199075 Test 003 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 95.480243 +0:The total amount of wall time = 96.836781 Test 004 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 404.691401 +0:The total amount of wall time = 406.436359 Test 005 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_restart_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 288.317659 +0:The total amount of wall time = 290.678763 Test 006 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 858.529602 +0:The total amount of wall time = 862.871547 Test 007 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_restart_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 469.663130 +0:The total amount of wall time = 471.393011 Test 008 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 856.465878 +0:The total amount of wall time = 857.140583 Test 009 cpld_bmark_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_restart_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 477.836952 +0:The total amount of wall time = 477.935158 Test 010 cpld_restart_bmark_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_bmark_v16_nsst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 853.008743 +0:The total amount of wall time = 870.069515 Test 011 cpld_bmark_v16_nsst PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_bmark_wave_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 931.467789 +0:The total amount of wall time = 891.353407 Test 012 cpld_bmark_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_bmark_wave_v16_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 922.829747 +0:The total amount of wall time = 945.292461 Test 013 cpld_bmark_wave_v16_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_control_wave +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -0:The total amount of wall time = 125.719848 +0:The total amount of wall time = 140.557478 Test 014 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 295.789034 +0:The total amount of wall time = 298.282086 Test 015 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 166.918886 +0:The total amount of wall time = 165.665723 Test 016 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_decomp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 169.505831 +0:The total amount of wall time = 171.400027 Test 017 control_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 348.238866 +0:The total amount of wall time = 351.151900 Test 018 control_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 72.538242 +0:The total amount of wall time = 74.380280 Test 019 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_CubedSphereGrid +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,30 +1057,30 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.300776 +0:The total amount of wall time = 140.928659 Test 020 control_CubedSphereGrid PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 184.582634 +0:The total amount of wall time = 185.085230 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 579.291076 +0:The total amount of wall time = 578.442540 Test 022 control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1026.002118 +0:The total amount of wall time = 1045.756913 Test 023 control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_c384gdas +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 912.500146 +0:The total amount of wall time = 887.034770 Test 024 control_c384gdas PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 112.357304 +0:The total amount of wall time = 112.579159 Test 025 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 110.522546 +0:The total amount of wall time = 110.791355 Test 026 control_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_lndp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 113.264249 +0:The total amount of wall time = 113.921703 Test 027 control_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_lheatstrg +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 167.319141 +0:The total amount of wall time = 166.610485 Test 028 control_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_merra2 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.158674 +0:The total amount of wall time = 204.457474 Test 029 control_merra2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.193226 +0:The total amount of wall time = 247.467731 Test 030 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1276,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 268.343011 +0:The total amount of wall time = 267.313632 Test 031 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1293,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 223.025426 +0:The total amount of wall time = 223.569192 Test 032 control_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 197.679103 +0:The total amount of wall time = 191.013740 Test 033 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 252.963324 +0:The total amount of wall time = 253.804796 Test 034 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1344,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 233.968084 +0:The total amount of wall time = 244.709153 Test 035 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1361,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 199.412942 +0:The total amount of wall time = 203.337171 Test 036 control_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1375,25 +1375,25 @@ Checking test 037 regional_control 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 = 349.560846 +0:The total amount of wall time = 349.299777 Test 037 regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -0:The total amount of wall time = 190.455099 +0:The total amount of wall time = 191.170652 Test 038 regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1404,13 +1404,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 348.920384 +0:The total amount of wall time = 348.110215 Test 039 regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_quilt_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_2threads Checking test 040 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1421,13 +1421,13 @@ Checking test 040 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 929.454235 +0:The total amount of wall time = 930.234928 Test 040 regional_quilt_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_quilt_hafs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_hafs Checking test 041 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1436,27 +1436,27 @@ Checking test 041 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 341.689147 +0:The total amount of wall time = 347.806330 Test 041 regional_quilt_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_quilt_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_netcdf_parallel Checking test 042 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -0:The total amount of wall time = 348.668261 +0:The total amount of wall time = 348.387571 Test 042 regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_quilt_RRTMGP +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_RRTMGP Checking test 043 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1467,13 +1467,13 @@ Checking test 043 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 535.168242 +0:The total amount of wall time = 528.905950 Test 043 regional_quilt_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_gsd Checking test 044 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,13 +1562,13 @@ Checking test 044 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 196.851765 +0:The total amount of wall time = 197.045785 Test 044 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1alpha Checking test 045 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1633,13 @@ Checking test 045 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 98.007087 +0:The total amount of wall time = 99.338064 Test 045 fv3_rrfs_v1alpha PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_rap +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rap Checking test 046 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 046 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.577289 +0:The total amount of wall time = 100.122702 Test 046 fv3_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_hrrr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_hrrr Checking test 047 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,13 +1775,13 @@ Checking test 047 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.961987 +0:The total amount of wall time = 98.873260 Test 047 fv3_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1beta Checking test 048 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1846,13 +1846,13 @@ Checking test 048 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.443230 +0:The total amount of wall time = 99.166084 Test 048 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,13 +1917,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 197.593643 +0:The total amount of wall time = 197.945313 Test 049 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1938,39 +1938,39 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 342.071764 +0:The total amount of wall time = 340.717885 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.582530 +0:The total amount of wall time = 156.490350 Test 051 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_2threads_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_2threads_debug Checking test 052 control_2threads_debug 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.391330 +0:The total amount of wall time = 273.945274 Test 052 control_2threads_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_CubedSphereGrid_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1997,169 +1997,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 169.567212 +0:The total amount of wall time = 170.184198 Test 053 control_CubedSphereGrid_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.571662 +0:The total amount of wall time = 158.859434 Test 054 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.466536 +0:The total amount of wall time = 178.465151 Test 055 control_stochy_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.012321 +0:The total amount of wall time = 160.634695 Test 056 control_lndp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_lheatstrg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lheatstrg_debug Checking test 057 control_lheatstrg_debug 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.842529 +0:The total amount of wall time = 156.342565 Test 057 control_lheatstrg_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_merra2_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_merra2_debug Checking test 058 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 199.404625 +0:The total amount of wall time = 202.274067 Test 058 control_merra2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_rrtmgp_debug Checking test 059 control_rrtmgp_debug 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.051338 +0:The total amount of wall time = 178.399407 Test 059 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_csawmg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_csawmg_debug Checking test 060 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.096438 +0:The total amount of wall time = 246.058507 Test 060 control_csawmg_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_csawmgt_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_csawmgt_debug Checking test 061 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.521060 +0:The total amount of wall time = 279.652128 Test 061 control_csawmgt_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ugwpv1_debug Checking test 062 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 168.728341 +0:The total amount of wall time = 169.721841 Test 062 control_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ras_debug Checking test 063 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.216571 +0:The total amount of wall time = 160.615159 Test 063 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson_debug Checking test 064 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.645067 +0:The total amount of wall time = 182.237886 Test 064 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson_no_aero_debug Checking test 065 control_thompson_no_aero_debug 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.061174 +0:The total amount of wall time = 176.850179 Test 065 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2167,13 +2167,13 @@ Checking test 066 regional_control_debug 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 = 255.065710 +0:The total amount of wall time = 255.669475 Test 066 regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_gsd_debug Checking test 067 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2238,13 +2238,13 @@ Checking test 067 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 216.418927 +0:The total amount of wall time = 217.629931 Test 067 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_gsd_diag3d_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_gsd_diag3d_debug Checking test 068 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2309,13 +2309,13 @@ Checking test 068 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 261.670693 +0:The total amount of wall time = 267.526675 Test 068 fv3_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,13 +2380,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.294127 +0:The total amount of wall time = 210.115222 Test 069 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1alpha_debug Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,13 +2451,13 @@ Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.739554 +0:The total amount of wall time = 209.813043 Test 070 fv3_rrfs_v1alpha_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2522,13 +2522,13 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 219.880053 +0:The total amount of wall time = 219.130156 Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2543,73 +2543,73 @@ Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 398.507559 +0:The total amount of wall time = 398.631394 Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/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 = 101.630284 +0:The total amount of wall time = 102.195093 Test 073 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_restart_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/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 = 64.337617 +0:The total amount of wall time = 65.692255 Test 074 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 95.974678 +0:The total amount of wall time = 96.834019 Test 075 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 98.798131 +0:The total amount of wall time = 95.352816 Test 076 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 95.605124 +0:The total amount of wall time = 96.229966 Test 077 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_mx025_cfsr Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2618,13 +2618,13 @@ Checking test 078 datm_mx025_cfsr results .... 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 = 389.027815 +0:The total amount of wall time = 388.232184 Test 078 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_mx025_gefs Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2633,85 +2633,85 @@ Checking test 079 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 386.297287 +0:The total amount of wall time = 386.490874 Test 079 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_debug_cfsr Checking test 080 datm_debug_cfsr results .... Comparing RESTART/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 = 274.334589 +0:The total amount of wall time = 274.604355 Test 080 datm_debug_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_control_cfsr Checking test 081 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 164.628166 +0:The total amount of wall time = 166.609250 Test 081 datm_cdeps_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_restart_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_restart_cfsr Checking test 082 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 101.609467 +0:The total amount of wall time = 101.936158 Test 082 datm_cdeps_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_control_gefs Checking test 083 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 158.423847 +0:The total amount of wall time = 154.020336 Test 083 datm_cdeps_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_bulk_cfsr Checking test 084 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.229298 +0:The total amount of wall time = 167.037352 Test 084 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_bulk_gefs Checking test 085 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 159.363909 +0:The total amount of wall time = 159.631581 Test 085 datm_cdeps_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_mx025_cfsr Checking test 086 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2720,13 +2720,13 @@ Checking test 086 datm_cdeps_mx025_cfsr results .... 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 = 386.087982 +0:The total amount of wall time = 387.021104 Test 086 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_mx025_gefs Checking test 087 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2735,35 +2735,35 @@ Checking test 087 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 378.346299 +0:The total amount of wall time = 381.491976 Test 087 datm_cdeps_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_multiple_files_cfsr Checking test 088 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.380641 +0:The total amount of wall time = 165.215275 Test 088 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_debug_cfsr Checking test 089 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 452.993079 +0:The total amount of wall time = 454.429561 Test 089 datm_cdeps_debug_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_13935/control_atmwav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_atmwav Checking test 090 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2806,11 +2806,11 @@ Checking test 090 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 371.006934 +0:The total amount of wall time = 374.491964 Test 090 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 16 21:30:49 MDT 2021 -Elapsed time: 00h:52m:23s. Have a nice day! +Tue Jun 29 21:56:35 MDT 2021 +Elapsed time: 01h:10m:32s. Have a nice day! From 1504101fc8a5ed41a76bd7ad5f280985eeee0cbc Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 30 Jun 2021 06:42:35 +0000 Subject: [PATCH 67/79] RT JOBS PASSED: jet.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_jet.intel.log | 427 ++++++++++++++-------------- 1 file changed, 207 insertions(+), 220 deletions(-) diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index a77259bb43..d4fe2e00d7 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,26 +1,26 @@ -Thu Jun 17 03:19:08 GMT 2021 +Wed Jun 30 02:31:31 GMT 2021 Start Regression test -Compile 001 elapsed time 2413 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 2419 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 236 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 2216 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 2353 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 2237 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 2260 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 2289 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 211 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y +Compile 001 elapsed time 2406 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 2480 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp +Compile 003 elapsed time 242 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 2213 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y +Compile 005 elapsed time 2336 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp +Compile 006 elapsed time 2233 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 007 elapsed time 2237 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 2287 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 009 elapsed time 235 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y Compile 010 elapsed time 212 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 211 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 208 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 266 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 137 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 267 seconds. APP=NG-GODAS -Compile 016 elapsed time 133 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 2280 seconds. APP=ATMW SUITES=FV3_GFS_v16 +Compile 011 elapsed time 213 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 012 elapsed time 200 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 013 elapsed time 270 seconds. APP=NG-GODAS-NEMSDATM +Compile 014 elapsed time 131 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y +Compile 015 elapsed time 264 seconds. APP=NG-GODAS +Compile 016 elapsed time 132 seconds. APP=NG-GODAS DEBUG=Y +Compile 017 elapsed time 2272 seconds. APP=ATMW SUITES=FV3_GFS_v16 baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 131.698075 +The total amount of wall time = 125.206425 Test 001 cpld_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 73.431338 +The total amount of wall time = 72.349699 Test 002 cpld_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_ca Checking test 003 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 123.276350 +The total amount of wall time = 123.160271 Test 003 cpld_ca PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control_c192 Checking test 004 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 526.877044 +The total amount of wall time = 525.241851 Test 004 cpld_control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_restart_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart_c192 Checking test 005 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 362.169679 +The total amount of wall time = 383.344337 Test 005 cpld_restart_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control_c384 Checking test 006 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 006 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 626.106797 +The total amount of wall time = 614.342621 Test 006 cpld_control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_restart_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart_c384 Checking test 007 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -412,13 +412,13 @@ Checking test 007 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 344.526270 +The total amount of wall time = 361.175688 Test 007 cpld_restart_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_v16 Checking test 008 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -461,13 +461,13 @@ Checking test 008 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 967.631687 +The total amount of wall time = 1021.946911 Test 008 cpld_bmark_v16 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_restart_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart_bmark_v16 Checking test 009 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -510,13 +510,13 @@ Checking test 009 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 526.611562 +The total amount of wall time = 533.017847 Test 009 cpld_restart_bmark_v16 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_bmark_v16_nsst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_v16_nsst Checking test 010 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -559,13 +559,13 @@ Checking test 010 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 970.217523 +The total amount of wall time = 1012.338900 Test 010 cpld_bmark_v16_nsst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_bmark_wave_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_wave_v16 Checking test 011 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -610,13 +610,13 @@ Checking test 011 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1188.482874 +The total amount of wall time = 1190.094489 Test 011 cpld_bmark_wave_v16 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_bmark_wave_v16_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_wave_v16_noahmp Checking test 012 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -661,13 +661,13 @@ Checking test 012 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1189.899244 +The total amount of wall time = 1189.331266 Test 012 cpld_bmark_wave_v16_noahmp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_control_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control_wave Checking test 013 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -720,13 +720,13 @@ Checking test 013 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 1012.503581 +The total amount of wall time = 1010.463916 Test 013 cpld_control_wave PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/cpld_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_debug Checking test 014 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 368.353835 +The total amount of wall time = 388.461897 Test 014 cpld_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -825,13 +825,13 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.011451 +The total amount of wall time = 213.976263 Test 015 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -874,13 +874,13 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 722.075714 +The total amount of wall time = 782.579401 Test 016 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -919,13 +919,13 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 86.520157 +The total amount of wall time = 87.779249 Test 017 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -952,13 +952,13 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 160.132876 +The total amount of wall time = 175.327754 Test 018 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -969,13 +969,13 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 241.344909 +The total amount of wall time = 242.238103 Test 019 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -986,15 +986,30 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 636.830529 +The total amount of wall time = 637.747987 Test 020 control_c192 PASS -Test 021 control_c384 FAIL + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_c384 +Checking test 021 control_c384 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 888.800349 + +Test 021 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1037,13 +1052,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 764.595551 +The total amount of wall time = 786.546599 Test 022 control_c384gdas PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1054,13 +1069,13 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 147.526692 +The total amount of wall time = 148.317640 Test 023 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ca Checking test 024 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1071,13 +1086,13 @@ Checking test 024 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 146.158711 +The total amount of wall time = 153.801707 Test 024 control_ca PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1088,13 +1103,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 151.860906 +The total amount of wall time = 166.241343 Test 025 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lheatstrg Checking test 026 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1105,13 +1120,13 @@ Checking test 026 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 205.124524 +The total amount of wall time = 217.348124 Test 026 control_lheatstrg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_merra2 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_merra2 Checking test 027 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1122,13 +1137,13 @@ Checking test 027 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 237.888605 +The total amount of wall time = 239.096137 Test 027 control_merra2 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,13 +1154,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 260.241458 +The total amount of wall time = 261.452713 Test 028 control_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmg Checking test 029 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1156,13 +1171,13 @@ Checking test 029 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.852855 +The total amount of wall time = 352.147774 Test 029 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmgt Checking test 030 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,13 +1188,13 @@ Checking test 030 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 422.570390 +The total amount of wall time = 423.544418 Test 030 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1190,13 +1205,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 293.267453 +The total amount of wall time = 289.784123 Test 031 control_flake PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1207,13 +1222,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 254.202078 +The total amount of wall time = 251.514896 Test 032 control_ugwpv1 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1224,13 +1239,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 239.956116 +The total amount of wall time = 239.067531 Test 033 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,13 +1256,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 276.216780 +The total amount of wall time = 271.426832 Test 034 control_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1258,13 +1273,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 266.067400 +The total amount of wall time = 263.593201 Test 035 control_thompson_no_aero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,13 +1290,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 241.630400 +The total amount of wall time = 237.439336 Test 036 control_noahmp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1289,25 +1304,25 @@ Checking test 037 regional_control 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 = 412.445728 +The total amount of wall time = 415.293236 Test 037 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 226.008458 +The total amount of wall time = 227.279873 Test 038 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1318,13 +1333,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 405.723953 +The total amount of wall time = 423.773761 Test 039 regional_quilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt_hafs Checking test 040 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1333,27 +1348,27 @@ Checking test 040 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 407.808350 +The total amount of wall time = 409.535154 Test 040 regional_quilt_hafs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt_netcdf_parallel Checking test 041 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 408.262406 +The total amount of wall time = 418.110909 Test 041 regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt_RRTMGP Checking test 042 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1364,13 +1379,13 @@ Checking test 042 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 531.020481 +The total amount of wall time = 527.827385 Test 042 regional_quilt_RRTMGP PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_gsd Checking test 043 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,13 +1474,13 @@ Checking test 043 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 235.093807 +The total amount of wall time = 232.174153 Test 043 fv3_gsd PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_rrfs_v1alpha Checking test 044 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1545,13 @@ Checking test 044 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.652098 +The total amount of wall time = 119.205151 Test 044 fv3_rrfs_v1alpha PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_HAFS_v0_hwrf_thompson Checking test 045 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1601,13 +1616,13 @@ Checking test 045 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.389174 +The total amount of wall time = 193.037178 Test 045 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_esg_HAFS_v0_hwrf_thompson Checking test 046 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1622,39 +1637,39 @@ Checking test 046 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 365.215845 +The total amount of wall time = 364.304396 Test 046 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_debug Checking test 047 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 192.148019 +The total amount of wall time = 200.273946 Test 047 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_2threads_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_2threads_debug Checking test 048 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 365.684488 +The total amount of wall time = 363.830796 Test 048 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_CubedSphereGrid_debug Checking test 049 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1681,169 +1696,169 @@ Checking test 049 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 205.855897 +The total amount of wall time = 208.690194 Test 049 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_wrtGauss_netcdf_parallel_debug Checking test 050 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 194.064836 +The total amount of wall time = 194.931762 Test 050 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_stochy_debug Checking test 051 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 221.643659 +The total amount of wall time = 218.470420 Test 051 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lndp_debug Checking test 052 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 197.448516 +The total amount of wall time = 197.017049 Test 052 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_lheatstrg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lheatstrg_debug Checking test 053 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 194.076206 +The total amount of wall time = 190.788649 Test 053 control_lheatstrg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_merra2_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_merra2_debug Checking test 054 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 237.620371 +The total amount of wall time = 235.559684 Test 054 control_merra2_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_rrtmgp_debug Checking test 055 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 217.967878 +The total amount of wall time = 213.168002 Test 055 control_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmg_debug Checking test 056 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.682284 +The total amount of wall time = 289.861234 Test 056 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmgt_debug Checking test 057 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 329.524893 +The total amount of wall time = 329.238547 Test 057 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ugwpv1_debug Checking test 058 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 210.694202 +The total amount of wall time = 207.165148 Test 058 control_ugwpv1_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ras_debug Checking test 059 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 196.542661 +The total amount of wall time = 193.563026 Test 059 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson_debug Checking test 060 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 227.613419 +The total amount of wall time = 226.006848 Test 060 control_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson_no_aero_debug Checking test 061 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 216.883301 +The total amount of wall time = 216.555044 Test 061 control_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_control_debug Checking test 062 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1851,13 +1866,13 @@ Checking test 062 regional_control_debug 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 = 316.707555 +The total amount of wall time = 329.074665 Test 062 regional_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1922,13 +1937,13 @@ Checking test 063 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 263.084238 +The total amount of wall time = 262.647205 Test 063 fv3_gsd_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,13 +2008,13 @@ Checking test 064 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 368.585625 +The total amount of wall time = 347.025647 Test 064 fv3_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2079,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 256.154084 +The total amount of wall time = 254.152782 Test 065 fv3_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_rrfs_v1alpha_debug Checking test 066 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2150,13 @@ Checking test 066 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.759076 +The total amount of wall time = 257.069067 Test 066 fv3_rrfs_v1alpha_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2221,13 @@ Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 267.874176 +The total amount of wall time = 266.841216 Test 067 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2227,73 +2242,73 @@ Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 501.946814 +The total amount of wall time = 503.116460 Test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_control_cfsr Checking test 069 datm_control_cfsr results .... Comparing RESTART/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 = 129.922310 +The total amount of wall time = 129.673561 Test 069 datm_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_restart_cfsr Checking test 070 datm_restart_cfsr results .... Comparing RESTART/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 = 82.762531 +The total amount of wall time = 82.701584 Test 070 datm_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_control_gefs Checking test 071 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 121.491302 +The total amount of wall time = 122.773787 Test 071 datm_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_bulk_cfsr Checking test 072 datm_bulk_cfsr results .... Comparing RESTART/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 = 125.520815 +The total amount of wall time = 127.001984 Test 072 datm_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_bulk_gefs Checking test 073 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 120.612664 +The total amount of wall time = 122.946481 Test 073 datm_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_mx025_cfsr Checking test 074 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2302,13 +2317,13 @@ Checking test 074 datm_mx025_cfsr results .... 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 = 466.387795 +The total amount of wall time = 472.458728 Test 074 datm_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_mx025_gefs Checking test 075 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2317,85 +2332,85 @@ Checking test 075 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 459.700467 +The total amount of wall time = 465.351407 Test 075 datm_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_debug_cfsr Checking test 076 datm_debug_cfsr results .... Comparing RESTART/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 -The total amount of wall time = 346.750889 +The total amount of wall time = 350.138480 Test 076 datm_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_control_cfsr Checking test 077 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 199.430580 +The total amount of wall time = 209.583993 Test 077 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_restart_cfsr Checking test 078 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 121.399864 +The total amount of wall time = 120.388559 Test 078 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_control_gefs Checking test 079 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 194.081099 +The total amount of wall time = 195.030417 Test 079 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_bulk_cfsr Checking test 080 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 199.731922 +The total amount of wall time = 200.236785 Test 080 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_bulk_gefs Checking test 081 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 194.898024 +The total amount of wall time = 194.323073 Test 081 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_mx025_cfsr Checking test 082 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2404,13 +2419,13 @@ Checking test 082 datm_cdeps_mx025_cfsr results .... 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 = 466.225449 +The total amount of wall time = 473.115958 Test 082 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_mx025_gefs Checking test 083 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2419,35 +2434,35 @@ Checking test 083 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 459.591432 +The total amount of wall time = 458.275892 Test 083 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_multiple_files_cfsr Checking test 084 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 200.334715 +The total amount of wall time = 198.411894 Test 084 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_debug_cfsr Checking test 085 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 -The total amount of wall time = 569.251870 +The total amount of wall time = 572.995650 Test 085 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_96577/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_atmwav Checking test 086 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2490,39 +2505,11 @@ Checking test 086 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 442.696186 +The total amount of wall time = 440.154672 Test 086 control_atmwav PASS -FAILED TESTS: -Test control_c384 021 failed failed -Test control_c384 021 failed in run_test failed - -REGRESSION TEST FAILED -Thu Jun 17 05:26:09 GMT 2021 -Elapsed time: 02h:07m:01s. Have a nice day! -Thu Jun 17 11:43:41 GMT 2021 -Start Regression test - -Compile 001 elapsed time 2245 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_231460/control_c384 -Checking test 001 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 887.892058 - -Test 001 control_c384 PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Jun 17 12:39:16 GMT 2021 -Elapsed time: 00h:55m:35s. Have a nice day! +Wed Jun 30 06:42:30 GMT 2021 +Elapsed time: 04h:10m:59s. Have a nice day! From 2c9661430d944bb439ce14a2a70e472cb3f21411 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 30 Jun 2021 09:55:25 -0500 Subject: [PATCH 68/79] RT JOBS PASSED: orion.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_orion.intel.log | 592 +++++++++++++------------- 1 file changed, 296 insertions(+), 296 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 42c9f4b46b..fb2fea9fcf 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,26 +1,26 @@ -Fri Jun 11 20:16:19 CDT 2021 +Wed Jun 30 08:51:38 CDT 2021 Start Regression test -Compile 001 elapsed time 606 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 711 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 250 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 600 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 635 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 598 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 603 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 611 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 257 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 220 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 187 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 155 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 183 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 99 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 191 seconds. APP=NG-GODAS -Compile 016 elapsed time 109 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 545 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_control +Compile 001 elapsed time 593 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 628 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp +Compile 003 elapsed time 172 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 518 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y +Compile 005 elapsed time 550 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp +Compile 006 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 007 elapsed time 525 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 535 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 009 elapsed time 141 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y +Compile 010 elapsed time 168 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y +Compile 011 elapsed time 149 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 012 elapsed time 149 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 013 elapsed time 176 seconds. APP=NG-GODAS-NEMSDATM +Compile 014 elapsed time 96 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y +Compile 015 elapsed time 190 seconds. APP=NG-GODAS +Compile 016 elapsed time 102 seconds. APP=NG-GODAS DEBUG=Y +Compile 017 elapsed time 544 seconds. APP=ATMW SUITES=FV3_GFS_v16 + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 103.666972 + 0: The total amount of wall time = 120.386166 Test 001 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 69.668445 + 0: The total amount of wall time = 68.249641 Test 002 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 106.987936 + 0: The total amount of wall time = 107.230216 Test 003 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 102.068076 + 0: The total amount of wall time = 104.825002 Test 004 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 386.125700 + 0: The total amount of wall time = 388.345877 Test 005 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 273.800652 + 0: The total amount of wall time = 282.008841 Test 006 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 784.324648 + 0: The total amount of wall time = 769.312714 Test 007 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 448.115970 + 0: The total amount of wall time = 424.819461 Test 008 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_bmark_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 786.320340 + 0: The total amount of wall time = 769.255661 Test 009 cpld_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_restart_bmark_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 426.977233 + 0: The total amount of wall time = 429.079390 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_bmark_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_bmark_v16_nsst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 786.338221 + 0: The total amount of wall time = 762.727159 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_bmark_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_bmark_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 839.213262 + 0: The total amount of wall time = 803.357095 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_bmark_wave_v16_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 879.396635 + 0: The total amount of wall time = 798.666198 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 137.955372 + 0: The total amount of wall time = 130.532692 Test 014 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 321.944774 + 0: The total amount of wall time = 315.647303 Test 015 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.644851 + 0: The total amount of wall time = 166.551749 Test 016 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.622050 + 0: The total amount of wall time = 166.191792 Test 017 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.649616 + 0: The total amount of wall time = 169.678237 Test 018 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.023522 + 0: The total amount of wall time = 73.859870 Test 019 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 146.870914 + 0: The total amount of wall time = 141.265818 Test 020 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1074,13 +1074,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.592816 + 0: The total amount of wall time = 224.179294 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 476.457832 + 0: The total amount of wall time = 466.089111 Test 022 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 775.231639 + 0: The total amount of wall time = 727.973834 Test 023 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 650.489045 + 0: The total amount of wall time = 642.566715 Test 024 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.679339 + 0: The total amount of wall time = 120.891735 Test 025 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.439606 + 0: The total amount of wall time = 118.982825 Test 026 control_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.677970 + 0: The total amount of wall time = 118.433230 Test 027 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 165.767572 + 0: The total amount of wall time = 161.678488 Test 028 control_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_merra2 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_merra2 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.500146 + 0: The total amount of wall time = 259.223610 Test 029 control_merra2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.916009 + 0: The total amount of wall time = 208.316774 Test 030 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1276,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.705709 + 0: The total amount of wall time = 327.933448 Test 031 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1293,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 390.740257 + 0: The total amount of wall time = 368.959866 Test 032 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 247.667534 + 0: The total amount of wall time = 237.207170 Test 033 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.078612 + 0: The total amount of wall time = 194.819358 Test 034 control_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1344,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.874241 + 0: The total amount of wall time = 184.887248 Test 035 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1361,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.650062 + 0: The total amount of wall time = 206.808879 Test 036 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,13 +1378,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.379549 + 0: The total amount of wall time = 207.258907 Test 037 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,13 +1395,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.461276 + 0: The total amount of wall time = 182.649805 Test 038 control_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1409,25 +1409,25 @@ Checking test 039 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 295.253105 + 0: The total amount of wall time = 292.251890 Test 039 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_restart Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 160.141273 + 0: The total amount of wall time = 166.917617 Test 040 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1438,13 +1438,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 312.638287 + 0: The total amount of wall time = 305.161822 Test 041 regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_quilt_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1455,13 +1455,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 217.691578 + 0: The total amount of wall time = 215.781300 Test 042 regional_quilt_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1470,27 +1470,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 307.097273 + 0: The total amount of wall time = 297.675695 Test 043 regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 314.921164 + 0: The total amount of wall time = 306.340192 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_quilt_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1501,13 +1501,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 400.882488 + 0: The total amount of wall time = 397.371157 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,13 +1596,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.125425 + 0: The total amount of wall time = 180.541080 Test 046 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_rrfs_v1alpha +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1667,13 +1667,13 @@ Checking test 047 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.181952 + 0: The total amount of wall time = 103.428369 Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,13 @@ Checking test 048 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.616424 + 0: The total amount of wall time = 92.097968 Test 048 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1809,13 +1809,13 @@ Checking test 049 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.182595 + 0: The total amount of wall time = 94.843796 Test 049 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,13 +1880,13 @@ Checking test 050 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.925423 + 0: The total amount of wall time = 98.034036 Test 050 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,13 +1951,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 156.500361 + 0: The total amount of wall time = 155.158489 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1972,39 +1972,39 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 293.957829 + 0: The total amount of wall time = 290.664105 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_debug Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.386178 + 0: The total amount of wall time = 166.605568 Test 053 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_2threads_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_2threads_debug Checking test 054 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.087698 + 0: The total amount of wall time = 230.839546 Test 054 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2031,169 +2031,169 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 180.272183 + 0: The total amount of wall time = 176.082324 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_wrtGauss_netcdf_parallel_debug Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.603106 + 0: The total amount of wall time = 163.313444 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_stochy_debug Checking test 057 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.409490 + 0: The total amount of wall time = 187.211869 Test 057 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.712057 + 0: The total amount of wall time = 175.204324 Test 058 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_lheatstrg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_lheatstrg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug 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.431646 + 0: The total amount of wall time = 164.506386 Test 059 control_lheatstrg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_merra2_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_merra2_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_merra2_debug Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.620672 + 0: The total amount of wall time = 241.408410 Test 060 control_merra2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_rrtmgp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_rrtmgp_debug Checking test 061 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.241534 + 0: The total amount of wall time = 185.489607 Test 061 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmg_debug Checking test 062 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.227012 + 0: The total amount of wall time = 270.740133 Test 062 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmgt_debug Checking test 063 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 327.576069 + 0: The total amount of wall time = 304.753180 Test 063 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.359156 + 0: The total amount of wall time = 173.098374 Test 064 control_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ras_debug Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.323049 + 0: The total amount of wall time = 162.749000 Test 065 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson_debug Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.038851 + 0: The total amount of wall time = 187.023094 Test 066 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson_no_aero_debug Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 184.934554 + 0: The total amount of wall time = 181.484188 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_control_debug Checking test 068 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2201,13 +2201,13 @@ Checking test 068 regional_control_debug 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 = 245.030711 + 0: The total amount of wall time = 248.189272 Test 068 regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_gsd_debug Checking test 069 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,13 +2272,13 @@ Checking test 069 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.999481 + 0: The total amount of wall time = 219.649846 Test 069 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_gsd_diag3d_debug Checking test 070 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,13 +2343,13 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.324814 + 0: The total amount of wall time = 362.368427 Test 070 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1beta_debug Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2414,13 +2414,13 @@ Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.294718 + 0: The total amount of wall time = 210.944670 Test 071 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_rrfs_v1alpha_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1alpha_debug Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2485,13 @@ Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.927743 + 0: The total amount of wall time = 212.780258 Test 072 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2556,13 +2556,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 222.933913 + 0: The total amount of wall time = 220.708292 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2577,73 +2577,73 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 408.626762 + 0: The total amount of wall time = 402.083354 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_control_cfsr Checking test 075 datm_control_cfsr results .... Comparing RESTART/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 = 108.702999 + 0: The total amount of wall time = 102.913262 Test 075 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_restart_cfsr Checking test 076 datm_restart_cfsr results .... Comparing RESTART/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 = 82.007347 + 0: The total amount of wall time = 77.055802 Test 076 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_control_gefs Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 100.603903 + 0: The total amount of wall time = 96.267816 Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_bulk_cfsr Checking test 078 datm_bulk_cfsr results .... Comparing RESTART/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 = 108.338779 + 0: The total amount of wall time = 99.114909 Test 078 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_bulk_gefs Checking test 079 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 98.894425 + 0: The total amount of wall time = 96.344357 Test 079 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_mx025_cfsr Checking test 080 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2652,13 +2652,13 @@ Checking test 080 datm_mx025_cfsr results .... 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 = 417.528370 + 0: The total amount of wall time = 400.251413 Test 080 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_mx025_gefs Checking test 081 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2667,85 +2667,85 @@ Checking test 081 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 400.140359 + 0: The total amount of wall time = 387.132643 Test 081 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_debug_cfsr Checking test 082 datm_debug_cfsr results .... Comparing RESTART/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 = 289.037066 + 0: The total amount of wall time = 283.014467 Test 082 datm_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_control_cfsr Checking test 083 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.816186 + 0: The total amount of wall time = 151.677337 Test 083 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_restart_cfsr Checking test 084 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 95.674046 + 0: The total amount of wall time = 98.854627 Test 084 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_control_gefs Checking test 085 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.866908 + 0: The total amount of wall time = 146.365578 Test 085 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_bulk_cfsr Checking test 086 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.304222 + 0: The total amount of wall time = 155.217466 Test 086 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_bulk_gefs Checking test 087 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.436850 + 0: The total amount of wall time = 148.580770 Test 087 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_mx025_gefs Checking test 088 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2754,35 +2754,35 @@ Checking test 088 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 379.480964 + 0: The total amount of wall time = 387.037570 Test 088 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_multiple_files_cfsr Checking test 089 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.895391 + 0: The total amount of wall time = 154.715990 Test 089 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_debug_cfsr Checking test 090 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 458.442530 + 0: The total amount of wall time = 453.486751 Test 090 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210611/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_443707/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_atmwav Checking test 091 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2825,11 +2825,11 @@ Checking test 091 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.902433 + 0: The total amount of wall time = 353.736708 Test 091 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 11 23:37:22 CDT 2021 -Elapsed time: 03h:21m:04s. Have a nice day! +Wed Jun 30 09:55:18 CDT 2021 +Elapsed time: 01h:03m:40s. Have a nice day! From cd1963db9740462e3bf8e86436843dbe92fd8f5c Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 09:08:21 -0600 Subject: [PATCH 69/79] Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 96960c4fbf..aeab36a67b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 96960c4fbfbcde5c5ee54984c3abf4e3244870da +Subproject commit aeab36a67b0920c9bebf2e33eae5ac629169d74a From 7d59f31c65fd830544ad619d9df0625fea8b7d5c Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Wed, 30 Jun 2021 15:58:50 +0000 Subject: [PATCH 70/79] Update GOCART submodule to fix build issue with GNU 9.2.0. --- GOCART | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GOCART b/GOCART index 87072fc09e..ebcbc318ee 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit 87072fc09e966f022ca9118939785a1823c3bf92 +Subproject commit ebcbc318ee7a5f0d7c632582367063a7c0d9ade5 From 4b1b979e3b3d71289f28874059e50380df6717f9 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 11:10:50 -0600 Subject: [PATCH 71/79] Revert hpc-stack update on hera --- modulefiles/ufs_hera.gnu | 2 +- modulefiles/ufs_hera.gnu_debug | 2 +- modulefiles/ufs_hera.intel | 2 +- modulefiles/ufs_hera.intel_debug | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modulefiles/ufs_hera.gnu b/modulefiles/ufs_hera.gnu index 2507321e3a..2322493abc 100644 --- a/modulefiles/ufs_hera.gnu +++ b/modulefiles/ufs_hera.gnu @@ -14,7 +14,7 @@ module load sutils module load cmake/3.20.1 -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 diff --git a/modulefiles/ufs_hera.gnu_debug b/modulefiles/ufs_hera.gnu_debug index 3807c2adb1..cd2041578c 100644 --- a/modulefiles/ufs_hera.gnu_debug +++ b/modulefiles/ufs_hera.gnu_debug @@ -14,7 +14,7 @@ module load sutils module load cmake/3.20.1 -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel index 34935e44e6..62fae39974 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -14,7 +14,7 @@ module load sutils module load cmake/3.20.1 -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug index 74c5d7e310..815faf0995 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -14,7 +14,7 @@ module load sutils module load cmake/3.20.1 -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/hpc-stack_new_20210629/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 From 50f45ef32118fa85b6624de4d85c21d17bb7abd8 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 11:57:24 -0600 Subject: [PATCH 72/79] Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index aeab36a67b..b28c9de671 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit aeab36a67b0920c9bebf2e33eae5ac629169d74a +Subproject commit b28c9de6717b7a7b6e04ed9c0667d5685b61365b From b091f22abb5ffda02583927e53e0a08112ee615d Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 12:06:59 -0600 Subject: [PATCH 73/79] Regression test logs for cheyenne.gnu and hera.gnu --- tests/RegressionTests_cheyenne.gnu.log | 132 ++++++++--------- tests/RegressionTests_hera.gnu.log | 192 +++++++++++++++---------- 2 files changed, 181 insertions(+), 143 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 5ecb1f8745..8d0f56a00a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,17 +1,17 @@ -Wed Jun 16 19:51:54 MDT 2021 +Wed Jun 30 11:31:30 MDT 2021 Start Regression test -Compile 001 elapsed time 333 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 327 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 001 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras +Compile 002 elapsed time 320 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y Compile 003 elapsed time 298 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 360 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 160 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 443 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 233 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 226 seconds. APP=NG-GODAS-NEMSDATM +Compile 004 elapsed time 351 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 005 elapsed time 156 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 006 elapsed time 442 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 007 elapsed time 232 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y +Compile 008 elapsed time 232 seconds. APP=NG-GODAS-NEMSDATM baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 290.197114 +0:The total amount of wall time = 290.256999 Test 001 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 139.953023 +0:The total amount of wall time = 140.380813 Test 002 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.214099 +0:The total amount of wall time = 178.295506 Test 003 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 358.891688 +0:The total amount of wall time = 349.072040 Test 004 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_rrtmgp +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 354.210063 +0:The total amount of wall time = 338.365348 Test 005 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 376.897462 +0:The total amount of wall time = 363.796469 Test 006 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 356.690431 +0:The total amount of wall time = 350.841820 Test 007 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 310.625481 +0:The total amount of wall time = 311.150754 Test 008 control_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 286.806768 +0:The total amount of wall time = 289.048835 Test 009 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.249292 +0:The total amount of wall time = 355.986868 Test 010 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_rrfs_v1alpha +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.708924 +0:The total amount of wall time = 169.507398 Test 011 fv3_rrfs_v1alpha PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.059299 +0:The total amount of wall time = 170.763110 Test 012 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 259.335868 +0:The total amount of wall time = 258.424739 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 463.063062 +0:The total amount of wall time = 466.762109 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.291592 +0:The total amount of wall time = 84.545700 Test 015 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 regional_control_debug 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 = 133.937236 +0:The total amount of wall time = 134.911276 Test 016 regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 110.618462 +0:The total amount of wall time = 111.944420 Test 017 fv3_rrfs_v1alpha_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 111.173658 +0:The total amount of wall time = 115.003652 Test 018 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,78 +787,78 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 117.611652 +0:The total amount of wall time = 117.661876 Test 019 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson_debug Checking test 020 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 101.535570 +0:The total amount of wall time = 103.059331 Test 020 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson_no_aero_debug Checking test 021 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 98.459912 +0:The total amount of wall time = 99.729318 Test 021 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_rrtmgp_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_rrtmgp_debug Checking test 022 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.164095 +0:The total amount of wall time = 94.667974 Test 022 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ugwpv1_debug Checking test 023 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.120157 +0:The total amount of wall time = 90.123888 Test 023 control_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/control_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ras_debug Checking test 024 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.941900 +0:The total amount of wall time = 85.029466 Test 024 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_HAFS_v0_hwrf_thompson_debug Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -923,13 +923,13 @@ Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 113.044195 +0:The total amount of wall time = 113.539315 Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -944,13 +944,13 @@ Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 217.264331 +0:The total amount of wall time = 219.288207 Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/cpld_control Checking test 027 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1000,13 +1000,13 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 118.823725 +0:The total amount of wall time = 118.190744 Test 027 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62176/cpld_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/cpld_debug Checking test 028 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1056,11 +1056,11 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 150.275625 +0:The total amount of wall time = 150.253377 Test 028 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 16 20:15:49 MDT 2021 -Elapsed time: 00h:23m:55s. Have a nice day! +Wed Jun 30 11:52:13 MDT 2021 +Elapsed time: 00h:20m:43s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index e373409915..519d36f2cb 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,17 +1,17 @@ -Thu Jun 17 02:17:39 UTC 2021 +Wed Jun 30 14:43:04 UTC 2021 Start Regression test -Compile 001 elapsed time 594 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 520 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 003 elapsed time 514 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 241 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 169 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 553 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 188 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 441 seconds. APP=NG-GODAS-NEMSDATM +Compile 001 elapsed time 177 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras +Compile 002 elapsed time 177 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 003 elapsed time 171 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 004 elapsed time 161 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 005 elapsed time 88 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 006 elapsed time 195 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 007 elapsed time 110 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y +Compile 008 elapsed time 93 seconds. APP=NG-GODAS-NEMSDATM baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 840.100911 + 0: The total amount of wall time = 834.485162 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.853696 + 0: The total amount of wall time = 394.106925 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 623.972555 + 0: The total amount of wall time = 659.721010 Test 003 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1406.705477 + 0: The total amount of wall time = 1407.446660 Test 004 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 847.934578 + 0: The total amount of wall time = 853.275715 Test 005 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 997.877276 + 0: The total amount of wall time = 1018.030544 Test 006 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 963.680714 + 0: The total amount of wall time = 973.859375 Test 007 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 942.550162 + 0: The total amount of wall time = 958.185512 Test 008 control_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 853.453975 + 0: The total amount of wall time = 847.117174 Test 009 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 793.305283 + 0: The total amount of wall time = 825.325515 Test 010 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.209436 + 0: The total amount of wall time = 395.790271 Test 011 fv3_rrfs_v1alpha PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.164405 + 0: The total amount of wall time = 396.363541 Test 012 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 625.933540 + 0: The total amount of wall time = 614.458585 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 451.668014 + 0: The total amount of wall time = 445.720360 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.910716 + 0: The total amount of wall time = 103.401686 Test 015 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 regional_control_debug 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 = 119.670605 + 0: The total amount of wall time = 118.368426 Test 016 regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.744781 + 0: The total amount of wall time = 122.527624 Test 017 fv3_rrfs_v1alpha_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.279042 + 0: The total amount of wall time = 119.217557 Test 018 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,78 +787,67 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.251009 + 0: The total amount of wall time = 122.243663 Test 019 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson_debug Checking test 020 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.817331 + 0: The total amount of wall time = 116.342652 Test 020 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson_no_aero_debug Checking test 021 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.982550 + 0: The total amount of wall time = 112.566901 Test 021 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_rrtmgp_debug Checking test 022 control_rrtmgp_debug 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.352297 + 0: The total amount of wall time = 110.427783 Test 022 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_ugwpv1_debug Checking test 023 control_ugwpv1_debug 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.000733 + 0: The total amount of wall time = 106.400315 Test 023 control_ugwpv1_debug PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/control_ras_debug -Checking test 024 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 103.160109 - -Test 024 control_ras_debug PASS +Test 024 control_ras_debug FAIL baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_HAFS_v0_hwrf_thompson_debug Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -923,13 +912,13 @@ Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 135.476739 + 0: The total amount of wall time = 135.406470 Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -944,13 +933,13 @@ Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 235.054170 + 0: The total amount of wall time = 239.086113 Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/cpld_control Checking test 027 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1000,13 +989,13 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 670.897117 + 0: The total amount of wall time = 673.471875 Test 027 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_123894/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/cpld_debug Checking test 028 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1056,11 +1045,60 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 370.541533 + 0: The total amount of wall time = 373.354980 Test 028 cpld_debug PASS +FAILED TESTS: +Test control_ras_debug 024 failed failed +Test control_ras_debug 024 failed in run_test failed + +REGRESSION TEST FAILED +Wed Jun 30 15:30:53 UTC 2021 +Elapsed time: 00h:47m:49s. Have a nice day! + + + +# DOM - RERUNNING RAS TESTS (PROD, DEBUG) AFTER FSCAV UPDATES + + + +Wed Jun 30 17:35:49 UTC 2021 +Start Regression test + +Compile 001 elapsed time 186 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras +Compile 002 elapsed time 164 seconds. APP=ATM 32BIT=Y DEBUG=Y + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244554/control_ras +Checking test 001 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 825.204687 + +Test 001 control_ras PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244554/control_ras_debug +Checking test 002 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 102.332120 + +Test 002 control_ras_debug PASS + REGRESSION TEST WAS SUCCESSFUL -Thu Jun 17 03:57:04 UTC 2021 -Elapsed time: 01h:39m:25s. Have a nice day! +Wed Jun 30 18:02:30 UTC 2021 +Elapsed time: 00h:26m:42s. Have a nice day! From b5d56b2e2291ccb65e49b35d7abf6ce867b271ed Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 13:48:57 -0600 Subject: [PATCH 74/79] Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b28c9de671..ef6ba4c5bf 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b28c9de6717b7a7b6e04ed9c0667d5685b61365b +Subproject commit ef6ba4c5bf2d4abde610c7bed66259dad1f2e781 From a47e54626967ad3b2d11442d2078e819a0979f99 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 30 Jun 2021 14:27:21 -0600 Subject: [PATCH 75/79] RT JOBS PASSED: cheyenne.gnu. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.gnu.log | 134 ++++++++++++------------- 1 file changed, 67 insertions(+), 67 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8d0f56a00a..11bf63008a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,17 +1,17 @@ -Wed Jun 30 11:31:30 MDT 2021 +Wed Jun 30 14:01:05 MDT 2021 Start Regression test -Compile 001 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 320 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 003 elapsed time 298 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 351 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 156 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 442 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 232 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 232 seconds. APP=NG-GODAS-NEMSDATM +Compile 001 elapsed time 334 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras +Compile 002 elapsed time 324 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 003 elapsed time 292 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 004 elapsed time 361 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 005 elapsed time 157 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 006 elapsed time 432 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 007 elapsed time 225 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y +Compile 008 elapsed time 229 seconds. APP=NG-GODAS-NEMSDATM baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 290.256999 +0:The total amount of wall time = 289.905966 Test 001 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 140.380813 +0:The total amount of wall time = 140.965748 Test 002 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.295506 +0:The total amount of wall time = 178.340538 Test 003 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 349.072040 +0:The total amount of wall time = 361.302259 Test 004 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 338.365348 +0:The total amount of wall time = 355.425132 Test 005 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 363.796469 +0:The total amount of wall time = 370.128567 Test 006 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 350.841820 +0:The total amount of wall time = 356.810522 Test 007 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 311.150754 +0:The total amount of wall time = 312.131756 Test 008 control_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 289.048835 +0:The total amount of wall time = 287.039152 Test 009 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.986868 +0:The total amount of wall time = 354.071203 Test 010 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 169.507398 +0:The total amount of wall time = 170.549595 Test 011 fv3_rrfs_v1alpha PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.763110 +0:The total amount of wall time = 170.263919 Test 012 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 258.424739 +0:The total amount of wall time = 259.130913 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 466.762109 +0:The total amount of wall time = 461.233643 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.545700 +0:The total amount of wall time = 84.337414 Test 015 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 regional_control_debug 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 = 134.911276 +0:The total amount of wall time = 133.756392 Test 016 regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 111.944420 +0:The total amount of wall time = 111.559268 Test 017 fv3_rrfs_v1alpha_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 115.003652 +0:The total amount of wall time = 111.964929 Test 018 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,78 +787,78 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 117.661876 +0:The total amount of wall time = 117.541968 Test 019 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson_debug Checking test 020 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 103.059331 +0:The total amount of wall time = 102.249995 Test 020 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson_no_aero_debug Checking test 021 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 99.729318 +0:The total amount of wall time = 99.555862 Test 021 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_rrtmgp_debug Checking test 022 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.667974 +0:The total amount of wall time = 92.107423 Test 022 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ugwpv1_debug Checking test 023 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.123888 +0:The total amount of wall time = 89.769672 Test 023 control_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ras_debug Checking test 024 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.029466 +0:The total amount of wall time = 84.742877 Test 024 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_HAFS_v0_hwrf_thompson_debug Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -923,13 +923,13 @@ Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 113.539315 +0:The total amount of wall time = 112.967988 Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -944,13 +944,13 @@ Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 219.288207 +0:The total amount of wall time = 217.201958 Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/cpld_control Checking test 027 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1000,13 +1000,13 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 118.190744 +0:The total amount of wall time = 120.769741 Test 027 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56571/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/cpld_debug Checking test 028 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1056,11 +1056,11 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 150.253377 +0:The total amount of wall time = 149.902263 Test 028 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 11:52:13 MDT 2021 -Elapsed time: 00h:20m:43s. Have a nice day! +Wed Jun 30 14:27:20 MDT 2021 +Elapsed time: 00h:26m:15s. Have a nice day! From ea2c92d11658cadd06937211f6f175c20db76658 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 15:07:46 -0600 Subject: [PATCH 76/79] Regression test log for wcoss_cray --- tests/RegressionTests_wcoss_cray.log | 232 +++++++++++++-------------- 1 file changed, 116 insertions(+), 116 deletions(-) diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 6f253270ed..8e1a050aef 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Thu Jun 17 12:17:00 UTC 2021 +Wed Jun 30 20:26:26 UTC 2021 Start Regression test -Compile 001 elapsed time 873 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 002 elapsed time 915 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 003 elapsed time 883 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 004 elapsed time 894 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 005 elapsed time 848 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 006 elapsed time 470 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 007 elapsed time 499 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 008 elapsed time 464 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 009 elapsed time 477 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 001 elapsed time 845 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y +Compile 002 elapsed time 942 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp +Compile 003 elapsed time 843 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 004 elapsed time 904 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 005 elapsed time 854 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 006 elapsed time 469 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y +Compile 007 elapsed time 457 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y +Compile 008 elapsed time 460 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 009 elapsed time 458 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -55,13 +55,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 176.523291 +The total amount of wall time = 191.755587 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_decomp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -104,13 +104,13 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 179.724208 +The total amount of wall time = 192.464003 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -149,13 +149,13 @@ Checking test 003 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.216970 +The total amount of wall time = 68.670998 Test 003 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_CubedSphereGrid Checking test 004 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 004 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.995019 +The total amount of wall time = 131.436204 Test 004 control_CubedSphereGrid PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_wrtGauss_netcdf_parallel Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -199,13 +199,13 @@ Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 185.311846 +The total amount of wall time = 195.253100 Test 005 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_c192 -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_c192 Checking test 006 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -216,13 +216,13 @@ Checking test 006 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 515.175186 +The total amount of wall time = 514.736516 Test 006 control_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_stochy -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_stochy Checking test 007 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -233,13 +233,13 @@ Checking test 007 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 148.527284 +The total amount of wall time = 146.586946 Test 007 control_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ca -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_ca +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ca Checking test 008 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -250,13 +250,13 @@ Checking test 008 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 126.145419 +The total amount of wall time = 144.606269 Test 008 control_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lndp -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_lndp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lndp Checking test 009 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -267,13 +267,13 @@ Checking test 009 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 128.685907 +The total amount of wall time = 157.571607 Test 009 control_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lheatstrg -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_lheatstrg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lheatstrg Checking test 010 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -284,13 +284,13 @@ Checking test 010 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.454989 +The total amount of wall time = 179.764994 Test 010 control_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_merra2 -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_merra2 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_merra2 Checking test 011 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -301,13 +301,13 @@ Checking test 011 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 228.005742 +The total amount of wall time = 244.775653 Test 011 control_merra2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_rrtmgp -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_rrtmgp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_rrtmgp Checking test 012 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -318,13 +318,13 @@ Checking test 012 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 220.086944 +The total amount of wall time = 233.869189 Test 012 control_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmg -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_csawmg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmg Checking test 013 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,13 +335,13 @@ Checking test 013 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 320.998263 +The total amount of wall time = 324.954248 Test 013 control_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmgt -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_csawmgt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmgt Checking test 014 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -352,13 +352,13 @@ Checking test 014 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 385.919399 +The total amount of wall time = 391.857081 Test 014 control_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_flake -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_flake +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_flake Checking test 015 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -369,13 +369,13 @@ Checking test 015 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 239.082779 +The total amount of wall time = 247.113724 Test 015 control_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ugwpv1 -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_ugwpv1 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ugwpv1 Checking test 016 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -386,13 +386,13 @@ Checking test 016 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 206.414513 +The total amount of wall time = 224.894870 Test 016 control_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ras -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_ras +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ras Checking test 017 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -403,13 +403,13 @@ Checking test 017 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 202.869571 +The total amount of wall time = 209.269467 Test 017 control_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_noahmp -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_noahmp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_noahmp Checking test 018 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -420,13 +420,13 @@ Checking test 018 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 195.139082 +The total amount of wall time = 200.577467 Test 018 control_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_control -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_control Checking test 019 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -434,25 +434,25 @@ Checking test 019 regional_control 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 = 341.720219 +The total amount of wall time = 350.427034 Test 019 regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_restart Checking test 020 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 215.706184 +The total amount of wall time = 213.444946 Test 020 regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_quilt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt Checking test 021 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -463,13 +463,13 @@ Checking test 021 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 326.649590 +The total amount of wall time = 325.680086 Test 021 regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt_hafs Checking test 022 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -478,13 +478,13 @@ Checking test 022 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 324.150830 +The total amount of wall time = 338.474401 Test 022 regional_quilt_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt_netcdf_parallel Checking test 023 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -492,13 +492,13 @@ Checking test 023 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 325.496222 +The total amount of wall time = 326.898848 Test 023 regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt_RRTMGP Checking test 024 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -509,13 +509,13 @@ Checking test 024 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 437.453154 +The total amount of wall time = 445.315047 Test 024 regional_quilt_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_gsd +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_gsd Checking test 025 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -604,13 +604,13 @@ Checking test 025 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.768368 +The total amount of wall time = 194.061687 Test 025 fv3_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1alpha Checking test 026 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -675,13 +675,13 @@ Checking test 026 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.022395 +The total amount of wall time = 98.410383 Test 026 fv3_rrfs_v1alpha PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rap -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_rap +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rap Checking test 027 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,13 +746,13 @@ Checking test 027 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.151904 +The total amount of wall time = 104.580142 Test 027 fv3_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_hrrr -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_hrrr +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_hrrr Checking test 028 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,13 +817,13 @@ Checking test 028 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.995494 +The total amount of wall time = 102.784885 Test 028 fv3_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1beta Checking test 029 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,13 +888,13 @@ Checking test 029 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.206337 +The total amount of wall time = 99.165413 Test 029 fv3_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_HAFS_v0_hwrf_thompson Checking test 030 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -959,13 +959,13 @@ Checking test 030 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 163.196531 +The total amount of wall time = 168.170976 Test 030 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_esg_HAFS_v0_hwrf_thompson Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -980,26 +980,26 @@ Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 304.202157 +The total amount of wall time = 304.533620 Test 031 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_debug Checking test 032 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.229418 +The total amount of wall time = 140.121195 Test 032 control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_CubedSphereGrid_debug Checking test 033 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1026,169 +1026,169 @@ Checking test 033 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 149.821178 +The total amount of wall time = 150.178274 Test 033 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_wrtGauss_netcdf_parallel_debug Checking test 034 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 143.094529 +The total amount of wall time = 142.401569 Test 034 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_stochy_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_stochy_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_stochy_debug Checking test 035 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.630335 +The total amount of wall time = 162.435843 Test 035 control_stochy_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lndp_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_lndp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lndp_debug Checking test 036 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.935578 +The total amount of wall time = 145.554918 Test 036 control_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lheatstrg_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_lheatstrg_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lheatstrg_debug Checking test 037 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.769325 +The total amount of wall time = 141.316518 Test 037 control_lheatstrg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_merra2_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_merra2_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_merra2_debug Checking test 038 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 202.470682 +The total amount of wall time = 192.910898 Test 038 control_merra2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_rrtmgp_debug Checking test 039 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.236902 +The total amount of wall time = 159.487673 Test 039 control_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmg_debug Checking test 040 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.798454 +The total amount of wall time = 235.465011 Test 040 control_csawmg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmgt_debug Checking test 041 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 274.566316 +The total amount of wall time = 269.863925 Test 041 control_csawmgt_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ugwpv1_debug Checking test 042 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.582470 +The total amount of wall time = 153.308149 Test 042 control_ugwpv1_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ras_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_ras_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ras_debug Checking test 043 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.848343 +The total amount of wall time = 145.116431 Test 043 control_ras_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_thompson_debug Checking test 044 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.752459 +The total amount of wall time = 169.517733 Test 044 control_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_thompson_no_aero_debug Checking test 045 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.598622 +The total amount of wall time = 161.557055 Test 045 control_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/regional_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_control_debug Checking test 046 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 046 regional_control_debug 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 = 243.711262 +The total amount of wall time = 243.647559 Test 046 regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_gsd_debug Checking test 047 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,13 +1267,13 @@ Checking test 047 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.077157 +The total amount of wall time = 197.479359 Test 047 fv3_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_gsd_diag3d_debug Checking test 048 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 048 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 269.248583 +The total amount of wall time = 245.319748 Test 048 fv3_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1beta_debug Checking test 049 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1409,13 +1409,13 @@ Checking test 049 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.656102 +The total amount of wall time = 190.856937 Test 049 fv3_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1alpha_debug Checking test 050 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,13 +1480,13 @@ Checking test 050 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 193.104289 +The total amount of wall time = 190.229090 Test 050 fv3_rrfs_v1alpha_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_HAFS_v0_hwrf_thompson_debug Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.929265 +The total amount of wall time = 197.407797 Test 051 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Wen.Meng/FV3_RT/rt_44483/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1572,11 +1572,11 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 359.335252 +The total amount of wall time = 357.809882 Test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 17 12:44:33 UTC 2021 -Elapsed time: 00h:27m:34s. Have a nice day! +Wed Jun 30 20:54:56 UTC 2021 +Elapsed time: 00h:28m:30s. Have a nice day! From 5c854bbe747ac392fd959608aff9189e2908d747 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Jun 2021 16:19:54 -0600 Subject: [PATCH 77/79] Regression test logs for hera.intel --- tests/RegressionTests_hera.intel.log | 464 +++++++++++++++------------ 1 file changed, 259 insertions(+), 205 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9c219207e8..7ff9554351 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,26 +1,27 @@ -Thu Jun 17 18:17:07 UTC 2021 +Wed Jun 30 21:25:07 UTC 2021 Start Regression test -Compile 001 elapsed time 1212 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 614 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 615 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 957 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 1297 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 631 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 874 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 1258 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 1322 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 832 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 795 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 471 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 320 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 829 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 814 seconds. APP=NG-GODAS -Compile 016 elapsed time 933 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 844 seconds. APP=ATMW SUITES=FV3_GFS_v16 +Compile 001 elapsed time 1103 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 002 elapsed time 981 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp +Compile 003 elapsed time 181 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 004 elapsed time 1626 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y +Compile 005 elapsed time 1355 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp +Compile 006 elapsed time 1421 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 007 elapsed time 1462 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 613 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf +Compile 009 elapsed time 475 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y +Compile 010 elapsed time 194 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y +Compile 011 elapsed time 1137 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 012 elapsed time 1137 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y +Compile 013 elapsed time 237 seconds. APP=NG-GODAS-NEMSDATM +Compile 014 elapsed time 227 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y +Compile 015 elapsed time 230 seconds. APP=NG-GODAS +Compile 016 elapsed time 186 seconds. APP=NG-GODAS DEBUG=Y +Compile 017 elapsed time 547 seconds. APP=ATMW SUITES=FV3_GFS_v16 +Compile 018 elapsed time 542 seconds. APP=ATMAERO SUITES=FV3_GFS_v16 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +71,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 97.747638 + 0: The total amount of wall time = 88.597053 Test 001 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +127,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.826049 + 0: The total amount of wall time = 54.656617 Test 002 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_decomp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +183,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 93.614999 + 0: The total amount of wall time = 86.679401 Test 003 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +239,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.327878 + 0: The total amount of wall time = 87.107841 Test 004 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +295,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 398.691087 + 0: The total amount of wall time = 378.663938 Test 005 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_restart_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +351,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 383.932230 + 0: The total amount of wall time = 262.687371 Test 006 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +410,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 844.469067 + 0: The total amount of wall time = 762.165681 Test 007 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_restart_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +469,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 487.431016 + 0: The total amount of wall time = 410.617738 Test 008 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +518,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 901.207820 + 0: The total amount of wall time = 728.437756 Test 009 cpld_bmark_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_restart_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +567,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 428.883975 + 0: The total amount of wall time = 419.521945 Test 010 cpld_restart_bmark_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_bmark_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +616,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 977.423774 + 0: The total amount of wall time = 747.422347 Test 011 cpld_bmark_v16_nsst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_bmark_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +667,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 812.929966 + 0: The total amount of wall time = 741.917179 Test 012 cpld_bmark_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_bmark_wave_v16_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +718,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 882.933254 + 0: The total amount of wall time = 765.591513 Test 013 cpld_bmark_wave_v16_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +777,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 113.658281 + 0: The total amount of wall time = 111.411137 Test 014 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +833,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 279.930770 + 0: The total amount of wall time = 276.818230 Test 015 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +882,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.793496 + 0: The total amount of wall time = 157.505734 Test 016 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_decomp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +931,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.450031 + 0: The total amount of wall time = 158.862240 Test 017 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_2threads +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +980,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.835686 + 0: The total amount of wall time = 165.748637 Test 018 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1025,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 63.757411 + 0: The total amount of wall time = 62.976971 Test 019 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1058,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 136.855328 + 0: The total amount of wall time = 121.655004 Test 020 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1074,13 +1075,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 170.062758 + 0: The total amount of wall time = 169.588926 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1092,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 466.716154 + 0: The total amount of wall time = 467.319446 Test 022 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1109,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 985.461667 + 0: The total amount of wall time = 756.701094 Test 023 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1158,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 887.319689 + 0: The total amount of wall time = 851.201381 Test 024 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1175,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.717440 + 0: The total amount of wall time = 118.010166 Test 025 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1192,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 105.970700 + 0: The total amount of wall time = 110.258127 Test 026 control_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1209,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.874197 + 0: The total amount of wall time = 120.891474 Test 027 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1226,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 153.703051 + 0: The total amount of wall time = 155.766768 Test 028 control_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_merra2 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1243,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.103394 + 0: The total amount of wall time = 177.838570 Test 029 control_merra2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1260,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.766627 + 0: The total amount of wall time = 196.260583 Test 030 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1277,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 325.194195 + 0: The total amount of wall time = 265.340603 Test 031 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1294,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 398.362095 + 0: The total amount of wall time = 316.985778 Test 032 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1311,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 225.658553 + 0: The total amount of wall time = 220.524322 Test 033 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1328,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.359881 + 0: The total amount of wall time = 182.173389 Test 034 control_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1345,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.752729 + 0: The total amount of wall time = 177.405757 Test 035 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1362,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.810824 + 0: The total amount of wall time = 200.857792 Test 036 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,13 +1379,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.801539 + 0: The total amount of wall time = 198.979806 Test 037 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,13 +1396,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.816291 + 0: The total amount of wall time = 176.827550 Test 038 control_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1409,25 +1410,25 @@ Checking test 039 regional_control 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 = 288.422801 + 0: The total amount of wall time = 291.377977 Test 039 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_restart Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 156.421791 + 0: The total amount of wall time = 158.998349 Test 040 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1438,13 +1439,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 296.895756 + 0: The total amount of wall time = 292.237623 Test 041 regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_quilt_2threads +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1455,13 +1456,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 213.054464 + 0: The total amount of wall time = 238.057951 Test 042 regional_quilt_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1470,27 +1471,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 292.498724 + 0: The total amount of wall time = 294.771585 Test 043 regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 291.432452 + 0: The total amount of wall time = 291.771687 Test 044 regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1501,13 +1502,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 380.298529 + 0: The total amount of wall time = 382.814862 Test 045 regional_quilt_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,13 +1597,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.474506 + 0: The total amount of wall time = 173.053002 Test 046 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1667,13 +1668,13 @@ Checking test 047 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.047388 + 0: The total amount of wall time = 87.504427 Test 047 fv3_rrfs_v1alpha PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1739,13 @@ Checking test 048 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.344466 + 0: The total amount of wall time = 88.776564 Test 048 fv3_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1809,13 +1810,13 @@ Checking test 049 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.102089 + 0: The total amount of wall time = 86.295198 Test 049 fv3_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,13 +1881,13 @@ Checking test 050 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.703819 + 0: The total amount of wall time = 87.746857 Test 050 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,13 +1952,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 182.753728 + 0: The total amount of wall time = 150.834692 Test 051 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1972,39 +1973,39 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 580.477574 + 0: The total amount of wall time = 286.170029 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_debug Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.880219 + 0: The total amount of wall time = 145.296846 Test 053 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_2threads_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_2threads_debug Checking test 054 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.410738 + 0: The total amount of wall time = 212.490819 Test 054 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2031,169 +2032,169 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 260.034191 + 0: The total amount of wall time = 156.880495 Test 055 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_wrtGauss_netcdf_parallel_debug Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.230439 + 0: The total amount of wall time = 148.774775 Test 056 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_stochy_debug Checking test 057 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.385221 + 0: The total amount of wall time = 180.255981 Test 057 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.134764 + 0: The total amount of wall time = 150.159711 Test 058 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_lheatstrg_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.637559 + 0: The total amount of wall time = 142.409033 Test 059 control_lheatstrg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_merra2_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_merra2_debug Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.276921 + 0: The total amount of wall time = 175.672805 Test 060 control_merra2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_rrtmgp_debug Checking test 061 control_rrtmgp_debug 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.402043 + 0: The total amount of wall time = 163.058955 Test 061 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmg_debug Checking test 062 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.355438 + 0: The total amount of wall time = 214.163011 Test 062 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmgt_debug Checking test 063 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 474.301843 + 0: The total amount of wall time = 244.896944 Test 063 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.818837 + 0: The total amount of wall time = 157.815456 Test 064 control_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ras_debug Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.648923 + 0: The total amount of wall time = 145.293135 Test 065 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson_debug Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.794003 + 0: The total amount of wall time = 169.507955 Test 066 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson_no_aero_debug Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.515310 + 0: The total amount of wall time = 160.534434 Test 067 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_control_debug Checking test 068 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2201,13 +2202,13 @@ Checking test 068 regional_control_debug 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 = 237.454517 + 0: The total amount of wall time = 228.194524 Test 068 regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_gsd_debug Checking test 069 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,13 +2273,13 @@ Checking test 069 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 606.027535 + 0: The total amount of wall time = 199.382124 Test 069 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_gsd_diag3d_debug Checking test 070 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,13 +2344,13 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.690815 + 0: The total amount of wall time = 248.793580 Test 070 fv3_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1beta_debug Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2414,13 +2415,13 @@ Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.141960 + 0: The total amount of wall time = 194.039139 Test 071 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1alpha_debug Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2486,13 @@ Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.527566 + 0: The total amount of wall time = 190.159493 Test 072 fv3_rrfs_v1alpha_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2556,13 +2557,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 209.644089 + 0: The total amount of wall time = 206.388232 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2577,73 +2578,73 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 399.004241 + 0: The total amount of wall time = 389.014762 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_control_cfsr Checking test 075 datm_control_cfsr results .... Comparing RESTART/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 = 101.787919 + 0: The total amount of wall time = 97.433693 Test 075 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_restart_cfsr Checking test 076 datm_restart_cfsr results .... Comparing RESTART/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 = 210.977331 + 0: The total amount of wall time = 63.486323 Test 076 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_control_gefs Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.522726 + 0: The total amount of wall time = 89.854401 Test 077 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_bulk_cfsr Checking test 078 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 99.674933 + 0: The total amount of wall time = 93.708150 Test 078 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_bulk_gefs Checking test 079 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.828288 + 0: The total amount of wall time = 91.871224 Test 079 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_mx025_cfsr Checking test 080 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2652,13 +2653,13 @@ Checking test 080 datm_mx025_cfsr results .... 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 = 491.567379 + 0: The total amount of wall time = 353.595840 Test 080 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_mx025_gefs Checking test 081 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2667,85 +2668,85 @@ Checking test 081 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 421.849010 + 0: The total amount of wall time = 354.497110 Test 081 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_debug_cfsr Checking test 082 datm_debug_cfsr results .... Comparing RESTART/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 = 259.967985 + 0: The total amount of wall time = 267.704808 Test 082 datm_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_control_cfsr Checking test 083 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.872169 + 0: The total amount of wall time = 147.355581 Test 083 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_restart_cfsr Checking test 084 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.421649 + 0: The total amount of wall time = 98.685618 Test 084 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_control_gefs Checking test 085 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.142876 + 0: The total amount of wall time = 141.801273 Test 085 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_bulk_cfsr Checking test 086 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.558668 + 0: The total amount of wall time = 148.195960 Test 086 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_bulk_gefs Checking test 087 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.389929 + 0: The total amount of wall time = 143.700738 Test 087 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_mx025_cfsr Checking test 088 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2754,13 +2755,13 @@ Checking test 088 datm_cdeps_mx025_cfsr results .... 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 = 561.972789 + 0: The total amount of wall time = 366.183883 Test 088 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_mx025_gefs Checking test 089 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2769,35 +2770,35 @@ Checking test 089 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 563.412770 + 0: The total amount of wall time = 346.199615 Test 089 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_multiple_files_cfsr Checking test 090 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.330338 + 0: The total amount of wall time = 150.414929 Test 090 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_debug_cfsr Checking test 091 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 442.714150 + 0: The total amount of wall time = 441.845516 Test 091 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_122827/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_atmwav Checking test 092 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2840,11 +2841,64 @@ Checking test 092 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.042847 + 0: The total amount of wall time = 330.606093 Test 092 control_atmwav PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_atm_aerosols +Checking test 093 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 304.598660 + +Test 093 control_atm_aerosols PASS + + REGRESSION TEST WAS SUCCESSFUL -Thu Jun 17 19:14:13 UTC 2021 -Elapsed time: 00h:57m:06s. Have a nice day! +Wed Jun 30 22:18:49 UTC 2021 +Elapsed time: 00h:53m:42s. Have a nice day! From b06c715ea9cd85f70bf6c41f5d008894ef097ed6 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 1 Jul 2021 15:16:40 +0000 Subject: [PATCH 78/79] Update FV3 submodule. --- .gitmodules | 4 ++-- FV3 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 2fb455d08d..26c5c27c14 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/rmontuoro/fv3atm - branch = feature/gocart-integration + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "NEMS"] path = NEMS url = https://github.com/rmontuoro/NEMS diff --git a/FV3 b/FV3 index ef6ba4c5bf..ad7bddc3fb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ef6ba4c5bf2d4abde610c7bed66259dad1f2e781 +Subproject commit ad7bddc3fbe0b25914fb28439337603ca5d0f3bf From 77a7ce3b0f13f010b6f139c3e8d3a0c8c54c1856 Mon Sep 17 00:00:00 2001 From: Raffaele Montuoro Date: Thu, 1 Jul 2021 15:21:20 +0000 Subject: [PATCH 79/79] Update NEMS submodule. --- .gitmodules | 4 ++-- NEMS | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 26c5c27c14..a1c6502330 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,8 +4,8 @@ branch = develop [submodule "NEMS"] path = NEMS - url = https://github.com/rmontuoro/NEMS - branch = feature/ufs-gocart-integration + url = https://github.com/NOAA-EMC/NEMS + branch = develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/NEMS b/NEMS index db79b93432..b9d03a6aa3 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit db79b934323040a2e6027d4d6488dba39a86d80c +Subproject commit b9d03a6aa35c1336d96ea0956b3e6351d2c427cb