From 9350745855aebe0790813e0ed2ba5ad680e3f75c Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Fri, 14 May 2021 10:11:48 -0400 Subject: [PATCH] Use prebuilt FMS library (#534) * Remove FMS git submodule * Update module files and top-level CMakeLists.txt to use fms module (library) built by hpc-stack. * Update ci for fms library #575 (#13) Co-authored-by: Minsuk Ji <57227195+MinsukJi-NOAA@users.noreply.github.com> --- .gitmodules | 4 - CMakeLists.txt | 39 +- FMS | 1 - README.md | 1 - cheyenne_gnu_fms_mpp_util_mpi_inc.patch | 12 - modulefiles/ufs_cheyenne.gnu | 2 +- modulefiles/ufs_cheyenne.gnu_debug | 2 +- modulefiles/ufs_cheyenne.intel | 2 +- modulefiles/ufs_cheyenne.intel_debug | 2 +- modulefiles/ufs_common | 1 + modulefiles/ufs_common_debug | 1 + modulefiles/ufs_gaea.intel | 3 +- modulefiles/ufs_gaea.intel_debug | 3 +- modulefiles/ufs_hera.gnu | 6 +- modulefiles/ufs_hera.intel | 5 +- modulefiles/ufs_hera.intel_debug | 5 +- modulefiles/ufs_jet.intel | 2 +- modulefiles/ufs_jet.intel_debug | 2 +- modulefiles/ufs_orion.intel | 2 +- modulefiles/ufs_orion.intel_debug | 2 +- modulefiles/ufs_wcoss_cray | 5 +- modulefiles/ufs_wcoss_cray_debug | 5 +- modulefiles/ufs_wcoss_dell_p3 | 3 +- modulefiles/ufs_wcoss_dell_p3_debug | 3 +- tests/RegressionTests_cheyenne.gnu.log | 214 ++--- tests/RegressionTests_cheyenne.intel.log | 748 ++++++++-------- tests/RegressionTests_gaea.intel.log | 744 ++++++++-------- tests/RegressionTests_hera.gnu.log | 214 ++--- tests/RegressionTests_hera.intel.log | 764 ++++++++-------- tests/RegressionTests_jet.intel.log | 730 ++++++++-------- tests/RegressionTests_orion.intel.log | 1006 ++++++++++------------ tests/RegressionTests_wcoss_cray.log | 456 +++++----- tests/RegressionTests_wcoss_dell_p3.log | 762 ++++++++-------- tests/ci/Dockerfile | 2 +- tests/ci/repo_check.sh | 8 +- tests/rt.sh | 2 +- 36 files changed, 2812 insertions(+), 2951 deletions(-) delete mode 160000 FMS delete mode 100644 cheyenne_gnu_fms_mpp_util_mpi_inc.patch diff --git a/.gitmodules b/.gitmodules index 8e3701bb2b..128615c511 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,10 +6,6 @@ path = NEMS url = https://github.com/NOAA-EMC/NEMS branch = develop -[submodule "FMS"] - path = FMS - url = https://github.com/NOAA-GFDL/FMS - branch = release/2020.04 [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 498e630442..cb449f53aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.15) +cmake_minimum_required(VERSION 3.18) project(ufs VERSION 1.0 @@ -71,17 +71,6 @@ if(CMAKE_Platform) else() message("Platform '${CMAKE_Platform}' configuration file does not exist") endif() - - # DH* 20210208 temporary workaround for FMS issues on Cheyenne with GNU 9.1.0 - if (CMAKE_Platform MATCHES "cheyenne.gnu") - message("Applying patch cheyenne_gnu_fms_mpp_util_mpi_inc.patch") - execute_process(COMMAND patch -N -p0 INPUT_FILE cheyenne_gnu_fms_mpp_util_mpi_inc.patch - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/cheyenne_gnu_fms_mpp_util_mpi_inc.patch.out - ERROR_FILE ${CMAKE_CURRENT_BINARY_DIR}/cheyenne_gnu_fms_mpp_util_mpi_inc.patch.err - RESULT_VARIABLE RC) - # *DH 20210208 - endif() endif() message("") @@ -118,6 +107,14 @@ if(OPENMP) endif() find_package(NetCDF REQUIRED C Fortran) find_package(ESMF MODULE REQUIRED) +if(FMS) + find_package(FMS REQUIRED COMPONENTS R4 R8) + if(32BIT) + add_library(fms ALIAS FMS::fms_r4) + else() + add_library(fms ALIAS FMS::fms_r8) + endif() +endif() if(CMEPS) find_package(PIO REQUIRED COMPONENTS C Fortran STATIC) endif() @@ -138,24 +135,6 @@ target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) find_package(Python 3 REQUIRED COMPONENTS Interpreter) message("Found Python: ${Python_EXECUTABLE}") -############################################################################### -### FMS -############################################################################### -if(FMS) - set(GFS_PHYS ON CACHE BOOL "Enable GFS Physics") - if(NOT 32BIT) - set(64BIT ON CACHE BOOL "Enable 64-bit") - endif() - - add_subdirectory(FMS) - - if(32BIT) - add_library(fms ALIAS fms_r4) - else() - add_library(fms ALIAS fms_r8) - endif() -endif(FMS) - ############################################################################### ### stochastic_physics ############################################################################### diff --git a/FMS b/FMS deleted file mode 160000 index d4724fa36e..0000000000 --- a/FMS +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d4724fa36ead10bfd818b7e3092a4824eff7f323 diff --git a/README.md b/README.md index 53e324d71c..331cba1d45 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ The top level directory structure groups source code and input files as follow: | -------------- | ------- | | ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | | ```README.md``` | This file with basic pointers to more information. | -| ```FMS/``` | Contains Flexible Modeling System source code. | | ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. | | ```CMEPS-interface/``` | Contains CMEPS mediator | | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | diff --git a/cheyenne_gnu_fms_mpp_util_mpi_inc.patch b/cheyenne_gnu_fms_mpp_util_mpi_inc.patch deleted file mode 100644 index aeb2facc39..0000000000 --- a/cheyenne_gnu_fms_mpp_util_mpi_inc.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- FMS/mpp/include/mpp_util_mpi.inc 2021-02-08 08:24:21.000000000 -0700 -+++ FMS/mpp/include/mpp_util_mpi.inc 2021-02-08 08:24:15.000000000 -0700 -@@ -169,7 +169,8 @@ - integer, intent(in ), optional :: msg_size(:) - integer, intent(in ), optional :: msg_type(:) - -- integer :: i, m, n, stride, my_check, rsize -+ integer :: i, m, n, stride, my_check -+ integer, volatile :: rsize - - if( debug .and. (current_clock.NE.0) )call SYSTEM_CLOCK(start_tick) - my_check = EVENT_SEND diff --git a/modulefiles/ufs_cheyenne.gnu b/modulefiles/ufs_cheyenne.gnu index ce6a2fec8c..cf8934e0f4 100644 --- a/modulefiles/ufs_cheyenne.gnu +++ b/modulefiles/ufs_cheyenne.gnu @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" -module load cmake/3.16.4 +module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 diff --git a/modulefiles/ufs_cheyenne.gnu_debug b/modulefiles/ufs_cheyenne.gnu_debug index 514d4c9eb5..05697c15b4 100644 --- a/modulefiles/ufs_cheyenne.gnu_debug +++ b/modulefiles/ufs_cheyenne.gnu_debug @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" -module load cmake/3.16.4 +module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 diff --git a/modulefiles/ufs_cheyenne.intel b/modulefiles/ufs_cheyenne.intel index 1f2d52f5d8..45b6cecf2d 100644 --- a/modulefiles/ufs_cheyenne.intel +++ b/modulefiles/ufs_cheyenne.intel @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" -module load cmake/3.16.4 +module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 diff --git a/modulefiles/ufs_cheyenne.intel_debug b/modulefiles/ufs_cheyenne.intel_debug index 2b5e26efd2..bdc23f9ec1 100644 --- a/modulefiles/ufs_cheyenne.intel_debug +++ b/modulefiles/ufs_cheyenne.intel_debug @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" -module load cmake/3.16.4 +module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common index 123726d4e9..3e8a5a2a32 100644 --- a/modulefiles/ufs_common +++ b/modulefiles/ufs_common @@ -8,6 +8,7 @@ module load hdf5/1.10.6 module load netcdf/4.7.4 module load pio/2.5.2 module load esmf/8_1_1 +module load fms/2020.04.03 module load bacio/2.4.1 module load crtm/2.3.0 diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug index 23d6c5341b..85008dbc37 100644 --- a/modulefiles/ufs_common_debug +++ b/modulefiles/ufs_common_debug @@ -8,6 +8,7 @@ module load hdf5/1.10.6 module load netcdf/4.7.4 module load pio/2.5.2 module load esmf/8_1_1-debug +module load fms/2020.04.03 module load bacio/2.4.1 module load crtm/2.3.0 diff --git a/modulefiles/ufs_gaea.intel b/modulefiles/ufs_gaea.intel index 1d4bb4a63f..7a7ba12b96 100644 --- a/modulefiles/ufs_gaea.intel +++ b/modulefiles/ufs_gaea.intel @@ -16,7 +16,8 @@ module load cray-python/3.7.3.2 # Needed at runtime: module load alps -module load cmake/3.17.0 +module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles +module load cmake/3.20.1 #needed for WW3 build module load gcc/8.3.0 diff --git a/modulefiles/ufs_gaea.intel_debug b/modulefiles/ufs_gaea.intel_debug index 90e62eec79..43929f10fe 100644 --- a/modulefiles/ufs_gaea.intel_debug +++ b/modulefiles/ufs_gaea.intel_debug @@ -16,7 +16,8 @@ module load cray-python/3.7.3.2 # Needed at runtime: module load alps -module load cmake/3.17.0 +module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles +module load cmake/3.20.1 module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack diff --git a/modulefiles/ufs_hera.gnu b/modulefiles/ufs_hera.gnu index efd8a0ccc7..18ed52289f 100644 --- a/modulefiles/ufs_hera.gnu +++ b/modulefiles/ufs_hera.gnu @@ -9,10 +9,12 @@ module-whatis "loads UFS Model prerequisites for Hera/GNU" module use /contrib/sutils/modulefiles module load sutils -module load cmake/3.16.1 - module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack + module load hpc/1.1.0 + +module load cmake/3.20.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 cda17e1c14..77c7c6eebd 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -9,11 +9,12 @@ module-whatis "loads UFS Model prerequisites for Hera/Intel" module use /contrib/sutils/modulefiles module load sutils -module load cmake/3.16.1 - module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 + +module load cmake/3.20.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 733106141b..2d15834c8f 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -9,11 +9,12 @@ module-whatis "loads UFS Model prerequisites for Hera/Intel" module use /contrib/sutils/modulefiles module load sutils -module load cmake/3.16.1 - module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 + +module load cmake/3.20.0 + module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/modulefiles/ufs_jet.intel b/modulefiles/ufs_jet.intel index 070334db87..c495f4ba25 100644 --- a/modulefiles/ufs_jet.intel +++ b/modulefiles/ufs_jet.intel @@ -9,7 +9,7 @@ module-whatis "loads UFS Model prerequisites for Jet/Intel" module use /contrib/sutils/modulefiles module load sutils -module load cmake/3.16.1 +module load cmake/3.20.1 module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack diff --git a/modulefiles/ufs_jet.intel_debug b/modulefiles/ufs_jet.intel_debug index ca0373b5c0..f5c16f7f0f 100644 --- a/modulefiles/ufs_jet.intel_debug +++ b/modulefiles/ufs_jet.intel_debug @@ -9,7 +9,7 @@ module-whatis "loads UFS Model prerequisites for Jet/Intel" module use /contrib/sutils/modulefiles module load sutils -module load cmake/3.16.1 +module load cmake/3.20.1 module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack diff --git a/modulefiles/ufs_orion.intel b/modulefiles/ufs_orion.intel index e2e16f581d..30d8eb23de 100644 --- a/modulefiles/ufs_orion.intel +++ b/modulefiles/ufs_orion.intel @@ -8,7 +8,7 @@ module-whatis "loads UFS Model prerequisites for Orion/Intel" module load contrib noaatools -module load cmake/3.17.3 +module load cmake/3.18.1 module load python/3.7.5 module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack diff --git a/modulefiles/ufs_orion.intel_debug b/modulefiles/ufs_orion.intel_debug index ac512b3f32..5f0f492a8d 100644 --- a/modulefiles/ufs_orion.intel_debug +++ b/modulefiles/ufs_orion.intel_debug @@ -8,7 +8,7 @@ module-whatis "loads UFS Model prerequisites for Orion/Intel" module load contrib noaatools -module load cmake/3.17.3 +module load cmake/3.18.1 module load python/3.7.5 module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack diff --git a/modulefiles/ufs_wcoss_cray b/modulefiles/ufs_wcoss_cray index 3299bbaaa0..a8a4b47d9f 100644 --- a/modulefiles/ufs_wcoss_cray +++ b/modulefiles/ufs_wcoss_cray @@ -22,9 +22,8 @@ module rm NetCDF-intel-sandybridge/4.2 module load xt-lsfhpc/9.1.3 module load craype-haswell module load python/3.6.3 -module load cmake/3.16.2 module load gcc/5.3.0 -# + module use /usrx/local/dev/modulefiles module load NetCDF-intel-sandybridge/4.7.4 module load HDF5-parallel-intel-sandybridge/1.10.6 @@ -64,12 +63,14 @@ module load udreg module load ugni module load esmf/811 +module load fms/2020.04.03 module swap pmi pmi/5.0.11 ## ## load cmake ## +prepend-path PATH /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/cmake/cmake-3.20.1-linux-x86_64/bin setenv CC cc setenv CXX CC setenv FC ftn diff --git a/modulefiles/ufs_wcoss_cray_debug b/modulefiles/ufs_wcoss_cray_debug index 16746c4b71..51325ab93a 100644 --- a/modulefiles/ufs_wcoss_cray_debug +++ b/modulefiles/ufs_wcoss_cray_debug @@ -22,9 +22,8 @@ module rm NetCDF-intel-sandybridge/4.2 module load xt-lsfhpc/9.1.3 module load craype-haswell module load python/3.6.3 -module load cmake/3.16.2 module load gcc/5.3.0 -# + module use /usrx/local/dev/modulefiles module load NetCDF-intel-sandybridge/4.7.4 module load HDF5-parallel-intel-sandybridge/1.10.6 @@ -64,12 +63,14 @@ module load udreg module load ugni module load esmf/811-debug +module load fms/2020.04.03 module swap pmi pmi/5.0.11 ## ## load cmake ## +prepend-path PATH /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/cmake/cmake-3.20.1-linux-x86_64/bin setenv CC cc setenv CXX CC setenv FC ftn diff --git a/modulefiles/ufs_wcoss_dell_p3 b/modulefiles/ufs_wcoss_dell_p3 index 442abd129c..cc6b417814 100644 --- a/modulefiles/ufs_wcoss_dell_p3 +++ b/modulefiles/ufs_wcoss_dell_p3 @@ -10,10 +10,11 @@ module load ips/18.0.1.163 module load impi/18.0.1 module load lsf/10.1 module load python/3.6.3 -module load cmake/3.16.2 module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack +module load cmake/3.20.0 + module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 diff --git a/modulefiles/ufs_wcoss_dell_p3_debug b/modulefiles/ufs_wcoss_dell_p3_debug index 41795cd1c8..0898301f1c 100644 --- a/modulefiles/ufs_wcoss_dell_p3_debug +++ b/modulefiles/ufs_wcoss_dell_p3_debug @@ -10,10 +10,11 @@ module load ips/18.0.1.163 module load impi/18.0.1 module load lsf/10.1 module load python/3.6.3 -module load cmake/3.16.2 module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack +module load cmake/3.20.0 + module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 146c036783..d63183dc0a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,19 +1,19 @@ -Wed May 12 12:07:57 MDT 2021 +Thu May 13 13:07:25 MDT 2021 Start Regression test -Compile 001 elapsed time 416 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 411 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 462 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 412 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 386 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 184 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 458 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 182 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 525 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 409 seconds. APP=DATM_NEMS - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfdlmp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfdlmp +Compile 001 elapsed time 283 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 313 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 320 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 315 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 347 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 161 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 286 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 165 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 437 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 231 seconds. APP=DATM_NEMS + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfdlmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 74.538012 +0:The total amount of wall time = 75.437516 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +141,13 @@ Checking test 002 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 = 235.339242 +0:The total amount of wall time = 236.082270 Test 002 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +194,13 @@ Checking test 003 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 = 137.466400 +0:The total amount of wall time = 139.417517 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 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 = 90.684395 +0:The total amount of wall time = 90.982020 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,13 +336,13 @@ Checking test 005 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 = 150.133472 +0:The total amount of wall time = 151.518222 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_RRTMGP Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -419,13 +419,13 @@ Checking test 006 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 = 311.397645 +0:The total amount of wall time = 308.841313 Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gsd -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gsd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gsd Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -514,13 +514,13 @@ Checking test 007 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.718043 +0:The total amount of wall time = 357.185416 Test 007 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_thompson Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -585,13 +585,13 @@ Checking test 008 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 159.758000 +0:The total amount of wall time = 160.614032 Test 008 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_thompson_no_aero Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -656,13 +656,13 @@ Checking test 009 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 = 157.560072 +0:The total amount of wall time = 159.039008 Test 009 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_rrfs_v1alpha Checking test 010 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -727,13 +727,13 @@ Checking test 010 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.284707 +0:The total amount of wall time = 170.528842 Test 010 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_rrfs_v1beta Checking test 011 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -798,13 +798,13 @@ Checking test 011 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.238358 +0:The total amount of wall time = 170.871038 Test 011 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_HAFS_v0_hwrf_thompson Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -869,13 +869,13 @@ Checking test 012 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 = 260.002474 +0:The total amount of wall time = 260.160234 Test 012 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_esg_HAFS_v0_hwrf_thompson Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -890,13 +890,13 @@ Checking test 013 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 = 462.494395 +0:The total amount of wall time = 461.297847 Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfsv16_ugwpv1 Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -955,13 +955,13 @@ Checking test 014 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 = 306.848762 +0:The total amount of wall time = 308.935283 Test 014 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfsv16_ugwpv1_warmstart Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1020,13 +1020,13 @@ Checking test 015 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 = 304.630785 +0:The total amount of wall time = 305.425632 Test 015 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_ras Checking test 016 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 016 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 = 168.949379 +0:The total amount of wall time = 172.026069 Test 016 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_control_debug Checking test 017 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1124,13 +1124,13 @@ Checking test 017 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -0:The total amount of wall time = 76.712806 +0:The total amount of wall time = 75.871005 Test 017 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_regional_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_regional_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_regional_control_debug Checking test 018 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1138,13 +1138,13 @@ Checking test 018 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 = 189.556985 +0:The total amount of wall time = 187.327232 Test 018 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_rrfs_v1alpha_debug Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1209,13 +1209,13 @@ Checking test 019 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.796493 +0:The total amount of wall time = 111.089838 Test 019 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,13 +1280,13 @@ Checking test 020 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 = 112.386419 +0:The total amount of wall time = 110.998584 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gsd_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gsd_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1351,13 +1351,13 @@ Checking test 021 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.766644 +0:The total amount of wall time = 116.185571 Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1422,13 +1422,13 @@ Checking test 022 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 = 186.738150 +0:The total amount of wall time = 186.056918 Test 022 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,13 +1493,13 @@ Checking test 023 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 = 188.974622 +0:The total amount of wall time = 180.976845 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v15p2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1564,13 +1564,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.889296 +0:The total amount of wall time = 138.436671 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1635,13 +1635,13 @@ Checking test 025 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 = 147.965870 +0:The total amount of wall time = 144.379433 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_RRTMGP_debug Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,13 +1706,13 @@ Checking test 026 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 = 124.037163 +0:The total amount of wall time = 122.455699 Test 026 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_multigases -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_multigases +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_multigases +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_multigases Checking test 027 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1783,13 +1783,13 @@ Checking test 027 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 177.336265 +0:The total amount of wall time = 175.020170 Test 027 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_HAFS_v0_hwrf_thompson_debug Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1854,13 +1854,13 @@ Checking test 028 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.619761 +0:The total amount of wall time = 111.962859 Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1875,13 +1875,13 @@ Checking test 029 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 = 218.847238 +0:The total amount of wall time = 216.555059 Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfsv16_ugwpv1_debug Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1940,13 +1940,13 @@ Checking test 030 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 = 304.914490 +0:The total amount of wall time = 302.804057 Test 030 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_20399/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_36510/fv3_gfs_v16_ras_debug Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2011,11 +2011,11 @@ Checking test 031 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 = 172.651622 +0:The total amount of wall time = 173.230830 Test 031 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 12:34:51 MDT 2021 -Elapsed time: 00h:26m:54s. Have a nice day! +Thu May 13 13:32:37 MDT 2021 +Elapsed time: 00h:25m:13s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 8956db72a2..c58c02ceaa 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,31 +1,31 @@ -Wed May 12 13:10:09 MDT 2021 +Thu May 13 14:02:40 MDT 2021 Start Regression test -Compile 001 elapsed time 1068 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 1100 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 349 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 732 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 689 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 756 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 776 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 779 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 879 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 1005 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 774 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 788 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 795 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 856 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 245 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 278 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 266 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 645 seconds. APP=DATM_NEMS -Compile 019 elapsed time 245 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 650 seconds. APP=DATM -Compile 021 elapsed time 239 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 761 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_control +Compile 001 elapsed time 1001 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 1039 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 343 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 698 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 635 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 703 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 711 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 718 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 781 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 893 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 724 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 697 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 733 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 769 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 216 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 231 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 227 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 378 seconds. APP=DATM_NEMS +Compile 019 elapsed time 193 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 395 seconds. APP=DATM +Compile 021 elapsed time 203 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 722 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 95.954318 +0:The total amount of wall time = 95.716047 Test 001 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 53.200388 +0:The total amount of wall time = 52.857859 Test 002 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_controlfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 100.291248 +0:The total amount of wall time = 95.597735 Test 003 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restartfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 54.997530 +0:The total amount of wall time = 55.273580 Test 004 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 259.640531 +0:The total amount of wall time = 258.152708 Test 005 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 97.648780 +0:The total amount of wall time = 98.094455 Test 006 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_satmedmf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_satmedmf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 94.480025 +0:The total amount of wall time = 92.569803 Test 007 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_ca -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_ca +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 95.642142 +0:The total amount of wall time = 92.999657 Test 008 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 410.174626 +0:The total amount of wall time = 390.114358 Test 009 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 290.237169 +0:The total amount of wall time = 290.905482 Test 010 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_controlfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 409.394841 +0:The total amount of wall time = 406.133775 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restartfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 284.725229 +0:The total amount of wall time = 279.962720 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 1586.464743 +0:The total amount of wall time = 1622.386294 Test 013 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 834.877774 +0:The total amount of wall time = 827.337090 Test 014 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_controlfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 1486.305907 +0:The total amount of wall time = 1615.826539 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restartfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 825.200982 +0:The total amount of wall time = 825.505746 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.728047 +0:The total amount of wall time = 890.059175 Test 017 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restart_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 493.881512 +0:The total amount of wall time = 487.278526 Test 018 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 949.520168 +0:The total amount of wall time = 952.107045 Test 019 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restart_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 485.531478 +0:The total amount of wall time = 482.948248 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 858.349519 +0:The total amount of wall time = 857.684910 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmarkfrac_v16_nsst +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 853.263381 +0:The total amount of wall time = 865.704668 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_restart_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 477.676800 +0:The total amount of wall time = 482.556959 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark_wave -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmark_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 1207.802496 +0:The total amount of wall time = 1143.913939 Test 024 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmarkfrac_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 1166.365732 +0:The total amount of wall time = 1151.204536 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_bmarkfrac_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 931.763186 +0:The total amount of wall time = 924.554034 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_wave -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 123.747071 +0:The total amount of wall time = 125.881866 Test 027 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 297.534312 +0:The total amount of wall time = 291.127350 Test 028 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debugfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/cpld_debugfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debugfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 296.508985 +0:The total amount of wall time = 290.330304 Test 029 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 48.308472 +0:The total amount of wall time = 47.523901 Test 030 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 49.055124 +0:The total amount of wall time = 46.784498 Test 031 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 106.772529 +0:The total amount of wall time = 106.479912 Test 032 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 23.789733 +0:The total amount of wall time = 22.395988 Test 033 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_read_inc -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_read_inc +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 47.268977 +0:The total amount of wall time = 47.151178 Test 034 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.052529 +0:The total amount of wall time = 109.658393 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.597598 +0:The total amount of wall time = 46.974303 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 48.692072 +0:The total amount of wall time = 48.676280 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 47.368526 +0:The total amount of wall time = 46.971021 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.513751 +0:The total amount of wall time = 46.591295 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.154040 +0:The total amount of wall time = 123.294729 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stochy -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 57.451934 +0:The total amount of wall time = 57.113992 Test 041 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_ca -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_ca +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 30.485703 +0:The total amount of wall time = 29.576445 Test 042 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lndp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lndp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 52.966648 +0:The total amount of wall time = 51.897892 Test 043 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_iau -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_iau +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 46.429273 +0:The total amount of wall time = 46.454172 Test 044 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lheatstrg -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lheatstrg +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 45.468174 +0:The total amount of wall time = 45.531042 Test 045 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_multigases_repro -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_multigases_repro +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 118.160180 +0:The total amount of wall time = 118.686528 Test 046 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_32bit -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_32bit +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 41.607554 +0:The total amount of wall time = 39.438831 Test 047 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 333.122140 +0:The total amount of wall time = 335.788235 Test 048 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 352.938975 +0:The total amount of wall time = 353.474745 Test 049 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 271.839702 +0:The total amount of wall time = 267.557031 Test 050 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_restart -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_restart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 148.664798 +0:The total amount of wall time = 148.587384 Test 051 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 271.179098 +0:The total amount of wall time = 270.401189 Test 052 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 269.675013 +0:The total amount of wall time = 270.702307 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -0:The total amount of wall time = 268.385323 +0:The total amount of wall time = 269.195006 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_quilt_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 379.617653 +0:The total amount of wall time = 407.577203 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 52.570723 +0:The total amount of wall time = 53.317661 Test 056 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 51.676815 +0:The total amount of wall time = 53.234946 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 52.985197 +0:The total amount of wall time = 53.051464 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_csawmg -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_csawmg +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 140.674178 +0:The total amount of wall time = 140.707811 Test 059 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 59.898481 +0:The total amount of wall time = 59.950515 Test 060 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmfq -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmfq +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 59.758123 +0:The total amount of wall time = 60.213524 Test 061 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 41.134199 +0:The total amount of wall time = 42.115982 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 77.169501 +0:The total amount of wall time = 76.868149 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_cpt -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_cpt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 334.853942 +0:The total amount of wall time = 333.028059 Test 064 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 195.121522 +0:The total amount of wall time = 195.144367 Test 065 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 97.780195 +0:The total amount of wall time = 97.845626 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rap -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rap +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.368412 +0:The total amount of wall time = 99.302013 Test 067 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_hrrr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_hrrr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.376070 +0:The total amount of wall time = 96.380746 Test 068 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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.292309 +0:The total amount of wall time = 90.146002 Test 069 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 89.149886 +0:The total amount of wall time = 88.540581 Test 070 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 97.922318 +0:The total amount of wall time = 98.213937 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 170.416720 +0:The total amount of wall time = 169.812320 Test 072 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 104.665512 +0:The total amount of wall time = 103.069722 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 62.744671 +0:The total amount of wall time = 62.695576 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/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 = 226.139345 +0:The total amount of wall time = 235.049161 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gocart_clm -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gocart_clm +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gocart_clm Checking test 076 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4331,13 +4331,13 @@ Checking test 076 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 = 56.690674 +0:The total amount of wall time = 55.401785 Test 076 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfs_v16_flake Checking test 077 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4402,13 +4402,13 @@ Checking test 077 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 = 115.764824 +0:The total amount of wall time = 110.781714 Test 077 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_HAFS_v0_hwrf_thompson Checking test 078 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4473,13 +4473,13 @@ Checking test 078 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.690373 +0:The total amount of wall time = 196.984971 Test 078 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_esg_HAFS_v0_hwrf_thompson Checking test 079 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4494,13 +4494,13 @@ Checking test 079 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 = 341.194860 +0:The total amount of wall time = 320.676052 Test 079 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfsv16_ugwpv1 Checking test 080 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4559,13 +4559,13 @@ Checking test 080 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 = 216.670647 +0:The total amount of wall time = 209.785819 Test 080 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfsv16_ugwpv1_warmstart Checking test 081 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4624,13 +4624,13 @@ Checking test 081 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 = 217.378050 +0:The total amount of wall time = 218.142208 Test 081 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfs_v16_ras Checking test 082 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4695,13 +4695,13 @@ Checking test 082 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 = 116.120434 +0:The total amount of wall time = 116.164441 Test 082 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfs_v16_debug Checking test 083 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4766,13 +4766,13 @@ Checking test 083 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 = 265.902919 +0:The total amount of wall time = 264.223189 Test 083 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfs_v16_RRTMGP_debug Checking test 084 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4837,13 +4837,13 @@ Checking test 084 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 = 250.817275 +0:The total amount of wall time = 249.369476 Test 084 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_regional_control_debug Checking test 085 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -4851,13 +4851,13 @@ Checking test 085 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 = 368.076321 +0:The total amount of wall time = 361.870686 Test 085 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_control_debug Checking test 086 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4884,13 +4884,13 @@ Checking test 086 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -0:The total amount of wall time = 141.801262 +0:The total amount of wall time = 141.007631 Test 086 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_stretched_nest_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_stretched_nest_debug Checking test 087 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -4907,13 +4907,13 @@ Checking test 087 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -0:The total amount of wall time = 435.032702 +0:The total amount of wall time = 431.136813 Test 087 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gsd_debug Checking test 088 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4978,13 +4978,13 @@ Checking test 088 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 = 211.852244 +0:The total amount of wall time = 211.809491 Test 088 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gsd_diag3d_debug Checking test 089 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5049,13 +5049,13 @@ Checking test 089 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 = 263.392905 +0:The total amount of wall time = 251.124579 Test 089 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_thompson_debug Checking test 090 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5120,13 +5120,13 @@ Checking test 090 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 = 357.488783 +0:The total amount of wall time = 356.559247 Test 090 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_thompson_no_aero_debug Checking test 091 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5191,13 +5191,13 @@ Checking test 091 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 = 345.132240 +0:The total amount of wall time = 343.358536 Test 091 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_rrfs_v1beta_debug Checking test 092 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5262,13 +5262,13 @@ Checking test 092 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 = 206.186287 +0:The total amount of wall time = 204.659699 Test 092 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_rrfs_v1alpha_debug Checking test 093 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5333,13 +5333,13 @@ Checking test 093 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 = 205.883320 +0:The total amount of wall time = 204.902017 Test 093 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_HAFS_v0_hwrf_thompson_debug Checking test 094 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5404,13 +5404,13 @@ Checking test 094 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 = 218.803676 +0:The total amount of wall time = 217.959731 Test 094 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 095 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -5425,13 +5425,13 @@ Checking test 095 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 = 401.078211 +0:The total amount of wall time = 395.311270 Test 095 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfsv16_ugwpv1_debug Checking test 096 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -5490,13 +5490,13 @@ Checking test 096 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 = 600.771041 +0:The total amount of wall time = 602.660895 Test 096 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfs_v16_ras_debug Checking test 097 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5561,73 +5561,73 @@ Checking test 097 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 = 339.934746 +0:The total amount of wall time = 337.578198 Test 097 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_control_cfsr Checking test 098 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.955190 +0:The total amount of wall time = 98.090525 Test 098 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_restart_cfsr Checking test 099 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.523720 +0:The total amount of wall time = 64.022609 Test 099 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_control_gefs Checking test 100 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 = 92.466075 +0:The total amount of wall time = 92.442799 Test 100 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_bulk_cfsr Checking test 101 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.611936 +0:The total amount of wall time = 98.368998 Test 101 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_bulk_gefs Checking test 102 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 = 93.141730 +0:The total amount of wall time = 92.636511 Test 102 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_mx025_cfsr Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5636,13 +5636,13 @@ Checking test 103 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 = 388.995112 +0:The total amount of wall time = 393.712988 Test 103 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_mx025_gefs Checking test 104 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5651,85 +5651,85 @@ Checking test 104 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 = 385.956144 +0:The total amount of wall time = 371.428533 Test 104 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_debug_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_debug_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_debug_cfsr Checking test 105 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 = 282.190240 +0:The total amount of wall time = 274.805558 Test 105 datm_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_control_cfsr Checking test 106 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 = 166.681657 +0:The total amount of wall time = 166.562423 Test 106 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_restart_cfsr Checking test 107 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 = 102.179052 +0:The total amount of wall time = 98.660997 Test 107 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_control_gefs Checking test 108 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 = 160.336225 +0:The total amount of wall time = 154.059463 Test 108 datm_cdeps_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_bulk_cfsr Checking test 109 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.001483 +0:The total amount of wall time = 167.118677 Test 109 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_bulk_gefs Checking test 110 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.529939 +0:The total amount of wall time = 154.356117 Test 110 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_mx025_cfsr Checking test 111 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5738,13 +5738,13 @@ Checking test 111 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 = 394.961616 +0:The total amount of wall time = 395.715440 Test 111 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_mx025_gefs Checking test 112 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5753,25 +5753,25 @@ Checking test 112 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 = 386.810015 +0:The total amount of wall time = 371.017854 Test 112 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/datm_cdeps_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/datm_cdeps_debug_cfsr Checking test 113 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 = 463.904875 +0:The total amount of wall time = 455.917925 Test 113 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmprad +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfdlmprad Checking test 114 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5817,13 +5817,13 @@ Checking test 114 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -0:The total amount of wall time = 348.133623 +0:The total amount of wall time = 344.205386 Test 114 fv3_gfdlmprad PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_atmwav -working dir = /glade/scratch/briancurtis/FV3_RT/rt_60598/fv3_gfdlmprad_atmwav +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_atmwav +working dir = /glade/scratch/briancurtis/FV3_RT/rt_27891/fv3_gfdlmprad_atmwav Checking test 115 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5869,11 +5869,11 @@ Checking test 115 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.682199 +0:The total amount of wall time = 395.925028 Test 115 fv3_gfdlmprad_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 14:26:35 MDT 2021 -Elapsed time: 01h:16m:26s. Have a nice day! +Thu May 13 15:28:06 MDT 2021 +Elapsed time: 01h:25m:27s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 6f24e37102..994636db46 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,31 +1,31 @@ -Wed May 12 14:59:28 EDT 2021 +Thu May 13 15:47:36 EDT 2021 Start Regression test -Compile 001 elapsed time 775 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 796 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 317 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 733 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 698 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 704 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 702 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 707 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 737 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 766 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 740 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 712 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 670 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 713 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 259 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 260 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 256 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 575 seconds. APP=DATM_NEMS -Compile 019 elapsed time 255 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 574 seconds. APP=DATM -Compile 021 elapsed time 248 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 708 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_control +Compile 001 elapsed time 778 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 799 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 312 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 698 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 677 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 680 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 680 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 674 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 730 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 716 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 706 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 706 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 704 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 715 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 271 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 278 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 268 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 340 seconds. APP=DATM_NEMS +Compile 019 elapsed time 223 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 338 seconds. APP=DATM +Compile 021 elapsed time 227 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 675 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 93.335274 +The total amount of wall time = 126.306065 Test 001 cpld_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 54.704343 +The total amount of wall time = 49.622642 Test 002 cpld_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_controlfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 96.989919 +The total amount of wall time = 97.482273 Test 003 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restartfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 83.660977 +The total amount of wall time = 52.705828 Test 004 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 151.722476 +The total amount of wall time = 122.722179 Test 005 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 123.078000 +The total amount of wall time = 97.602480 Test 006 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 123.483068 +The total amount of wall time = 109.009659 Test 007 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 108.582717 +The total amount of wall time = 120.772373 Test 008 cpld_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 405.746376 +The total amount of wall time = 429.607883 Test 009 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 283.575601 +The total amount of wall time = 306.088586 Test 010 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_controlfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 407.345365 +The total amount of wall time = 402.004778 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restartfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 313.319871 +The total amount of wall time = 306.965522 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 1532.580300 +The total amount of wall time = 1526.304151 Test 013 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 794.938950 +The total amount of wall time = 791.765942 Test 014 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_controlfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 1557.831047 +The total amount of wall time = 1520.786242 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restartfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 753.717519 +The total amount of wall time = 786.074989 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 871.445771 +The total amount of wall time = 885.659045 Test 017 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restart_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 451.835799 +The total amount of wall time = 448.275877 Test 018 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 865.475760 +The total amount of wall time = 892.278268 Test 019 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restart_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 453.236116 +The total amount of wall time = 471.445788 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmarkfrac_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 858.212431 +The total amount of wall time = 836.165888 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmarkfrac_v16_nsst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 834.912758 +The total amount of wall time = 820.120494 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_restart_bmarkfrac_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 454.759535 +The total amount of wall time = 459.805317 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmark_wave +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 1222.132195 +The total amount of wall time = 1293.778005 Test 024 cpld_bmark_wave PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmarkfrac_wave +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 1241.560098 +The total amount of wall time = 1200.862637 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_bmarkfrac_wave_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 915.614003 +The total amount of wall time = 865.662072 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_control_wave +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 146.391897 +The total amount of wall time = 110.482002 Test 027 cpld_control_wave PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 295.687073 +The total amount of wall time = 295.985648 Test 028 cpld_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/cpld_debugfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 295.294848 +The total amount of wall time = 295.510834 Test 029 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 45.439497 +The total amount of wall time = 69.554929 Test 030 fv3_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 54.149913 +The total amount of wall time = 49.169509 Test 031 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 79.818744 +The total amount of wall time = 57.191485 Test 032 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 53.516320 +The total amount of wall time = 51.114048 Test 033 fv3_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_read_inc +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 64.529907 +The total amount of wall time = 41.213433 Test 034 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 107.564315 +The total amount of wall time = 131.865067 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 41.187817 +The total amount of wall time = 43.148421 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 192.474094 +The total amount of wall time = 271.732069 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 68.822745 +The total amount of wall time = 74.862391 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 41.587040 +The total amount of wall time = 40.457123 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 113.003084 +The total amount of wall time = 131.201232 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 54.481048 +The total amount of wall time = 89.561761 Test 041 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 58.279432 +The total amount of wall time = 62.630387 Test 042 fv3_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 49.803569 +The total amount of wall time = 53.362827 Test 043 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_iau -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_iau +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_iau +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 42.720407 +The total amount of wall time = 40.939309 Test 044 fv3_iau PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 40.814541 +The total amount of wall time = 68.380600 Test 045 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 123.318657 +The total amount of wall time = 94.610938 Test 046 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_control_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 70.917039 +The total amount of wall time = 65.995528 Test 047 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_stretched +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 302.363996 +The total amount of wall time = 303.687313 Test 048 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 337.107085 +The total amount of wall time = 332.465490 Test 049 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 251.014024 +The total amount of wall time = 246.729863 Test 050 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 136.136122 +The total amount of wall time = 166.545799 Test 051 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_quilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 245.395586 +The total amount of wall time = 246.714053 Test 052 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 246.417512 +The total amount of wall time = 244.977604 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/fv3_regional_quilt_netcdf_parallel Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 283.386937 +The total amount of wall time = 329.430186 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_quilt_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 340.799293 +The total amount of wall time = 364.037087 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 79.001291 +The total amount of wall time = 79.442085 Test 056 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 77.989902 +The total amount of wall time = 47.747471 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 77.329988 +The total amount of wall time = 48.904621 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 151.218036 +The total amount of wall time = 123.534233 Test 059 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 54.556067 +The total amount of wall time = 70.523025 Test 060 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 52.239934 +The total amount of wall time = 56.257520 Test 061 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 93.479164 +The total amount of wall time = 69.843276 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 113.342172 +The total amount of wall time = 106.405972 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_cpt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 290.032880 +The total amount of wall time = 292.852979 Test 064 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 186.582382 +The total amount of wall time = 188.110393 Test 065 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_rrfs_v1alpha +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 92.478369 +The total amount of wall time = 94.153789 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 103.545919 +The total amount of wall time = 110.334944 Test 067 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 90.592377 +The total amount of wall time = 135.855718 Test 068 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 111.953696 +The total amount of wall time = 85.063210 Test 069 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 113.946493 +The total amount of wall time = 88.958403 Test 070 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 92.262565 +The total amount of wall time = 91.481582 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 186.280571 +The total amount of wall time = 150.383729 Test 072 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 138.418951 +The total amount of wall time = 91.228520 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 57.070021 +The total amount of wall time = 58.185355 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 262.052415 +The total amount of wall time = 206.109061 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfsv16_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 161.483796 +The total amount of wall time = 132.013425 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfsv16_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 157.843726 +The total amount of wall time = 132.296021 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gocart_clm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 82.027405 +The total amount of wall time = 64.031824 Test 078 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 141.311037 +The total amount of wall time = 108.046076 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 165.579844 +The total amount of wall time = 193.139028 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 319.474223 +The total amount of wall time = 323.734080 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfsv16_ugwpv1 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 188.880495 +The total amount of wall time = 216.358659 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 188.005447 +The total amount of wall time = 185.884731 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 102.672727 +The total amount of wall time = 130.956251 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 270.720194 +The total amount of wall time = 245.395955 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 245.564440 +The total amount of wall time = 238.372962 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_regional_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 369.966185 +The total amount of wall time = 363.372150 Test 087 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 137.930486 +The total amount of wall time = 135.229042 Test 088 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_stretched_nest_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 440.437585 +The total amount of wall time = 433.620976 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 205.560957 +The total amount of wall time = 199.894423 Test 090 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 254.678444 +The total amount of wall time = 238.730162 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 352.857913 +The total amount of wall time = 345.681185 Test 092 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 338.625649 +The total amount of wall time = 333.375528 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 198.915591 +The total amount of wall time = 195.501549 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_rrfs_v1alpha_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 199.448092 +The total amount of wall time = 314.095524 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 237.147238 +The total amount of wall time = 208.471964 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 381.668292 +The total amount of wall time = 375.987549 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfsv16_ugwpv1_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 614.154187 +The total amount of wall time = 580.186302 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfs_v16_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 357.766638 +The total amount of wall time = 352.578289 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 153.339551 +The total amount of wall time = 98.726445 Test 100 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 96.051324 +The total amount of wall time = 90.232086 Test 101 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 95.408662 +The total amount of wall time = 92.865211 Test 102 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 107.198446 +The total amount of wall time = 93.224251 Test 103 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/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 -The total amount of wall time = 110.586147 +The total amount of wall time = 124.101642 Test 104 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_mx025_gefs Checking test 105 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5738,85 +5738,85 @@ Checking test 105 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 = 382.490194 +The total amount of wall time = 373.409009 Test 105 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_debug_cfsr Checking test 106 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 = 261.323377 +The total amount of wall time = 221.720645 Test 106 datm_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_control_cfsr Checking test 107 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.348968 +The total amount of wall time = 153.534284 Test 107 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_restart_cfsr Checking test 108 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 = 86.893291 +The total amount of wall time = 86.636451 Test 108 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_control_gefs Checking test 109 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 = 148.869565 +The total amount of wall time = 150.993202 Test 109 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_bulk_cfsr Checking test 110 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 = 154.116942 +The total amount of wall time = 149.398425 Test 110 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_bulk_gefs Checking test 111 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 = 145.634232 +The total amount of wall time = 146.976713 Test 111 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_mx025_gefs Checking test 112 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5825,25 +5825,25 @@ Checking test 112 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 = 388.351078 +The total amount of wall time = 372.255987 Test 112 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/datm_cdeps_debug_cfsr Checking test 113 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 = 373.063637 +The total amount of wall time = 362.201738 Test 113 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmprad +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/fv3_gfdlmprad Checking test 114 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5889,13 +5889,13 @@ Checking test 114 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -The total amount of wall time = 370.749798 +The total amount of wall time = 342.674127 Test 114 fv3_gfdlmprad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43695/fv3_gfdlmprad_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4521/fv3_gfdlmprad_atmwav Checking test 115 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5941,11 +5941,11 @@ Checking test 115 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -The total amount of wall time = 410.371570 +The total amount of wall time = 384.736133 Test 115 fv3_gfdlmprad_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 16:30:51 EDT 2021 -Elapsed time: 01h:31m:24s. Have a nice day! +Thu May 13 17:03:52 EDT 2021 +Elapsed time: 01h:16m:17s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index b947b30594..59d87111dc 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Wed May 12 15:23:17 UTC 2021 +Thu May 13 19:43:27 UTC 2021 Start Regression test -Compile 001 elapsed time 253 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 255 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 287 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 258 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 172 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 100 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 285 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 100 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 272 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 234 seconds. APP=DATM_NEMS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfdlmp +Compile 001 elapsed time 195 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 194 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 206 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 198 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 174 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 114 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 176 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 99 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 209 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 105 seconds. APP=DATM_NEMS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 263.486885 + 0: The total amount of wall time = 228.596687 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +141,13 @@ Checking test 002 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 = 664.311419 + 0: The total amount of wall time = 685.740905 Test 002 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +194,13 @@ Checking test 003 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 = 332.183689 + 0: The total amount of wall time = 324.645213 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 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 = 526.418505 + 0: The total amount of wall time = 351.582591 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,13 +336,13 @@ Checking test 005 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 = 662.749320 + 0: The total amount of wall time = 603.534121 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_RRTMGP Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -419,13 +419,13 @@ Checking test 006 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 = 751.923250 + 0: The total amount of wall time = 716.907623 Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gsd Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -514,13 +514,13 @@ Checking test 007 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 992.997800 + 0: The total amount of wall time = 836.280585 Test 007 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_thompson Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -585,13 +585,13 @@ Checking test 008 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.363422 + 0: The total amount of wall time = 398.220568 Test 008 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_thompson_no_aero Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -656,13 +656,13 @@ Checking test 009 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 = 388.992619 + 0: The total amount of wall time = 384.157124 Test 009 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_rrfs_v1alpha Checking test 010 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -727,13 +727,13 @@ Checking test 010 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.856862 + 0: The total amount of wall time = 387.885511 Test 010 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_rrfs_v1beta Checking test 011 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -798,13 +798,13 @@ Checking test 011 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 = 400.020212 + 0: The total amount of wall time = 592.451215 Test 011 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_HAFS_v0_hwrf_thompson Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -869,13 +869,13 @@ Checking test 012 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 = 626.998008 + 0: The total amount of wall time = 635.617092 Test 012 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_esg_HAFS_v0_hwrf_thompson Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -890,13 +890,13 @@ Checking test 013 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 = 518.417458 + 0: The total amount of wall time = 448.505911 Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfsv16_ugwpv1 Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -955,13 +955,13 @@ Checking test 014 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 = 1059.195686 + 0: The total amount of wall time = 890.198737 Test 014 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfsv16_ugwpv1_warmstart Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1020,13 +1020,13 @@ Checking test 015 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 = 907.294605 + 0: The total amount of wall time = 913.698215 Test 015 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_ras Checking test 016 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 016 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 = 589.335116 + 0: The total amount of wall time = 585.175288 Test 016 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_control_debug Checking test 017 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1124,13 +1124,13 @@ Checking test 017 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 86.166834 + 0: The total amount of wall time = 82.398436 Test 017 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_regional_control_debug Checking test 018 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1138,13 +1138,13 @@ Checking test 018 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 = 184.177419 + 0: The total amount of wall time = 175.367248 Test 018 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_rrfs_v1alpha_debug Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1209,13 +1209,13 @@ Checking test 019 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 = 159.603772 + 0: The total amount of wall time = 136.206493 Test 019 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,13 +1280,13 @@ Checking test 020 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 = 119.794459 + 0: The total amount of wall time = 128.893780 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1351,13 +1351,13 @@ Checking test 021 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 = 126.759296 + 0: The total amount of wall time = 132.212777 Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1422,13 +1422,13 @@ Checking test 022 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 = 372.477677 + 0: The total amount of wall time = 198.410462 Test 022 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,13 +1493,13 @@ Checking test 023 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 = 360.991386 + 0: The total amount of wall time = 188.131470 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1564,13 +1564,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.366260 + 0: The total amount of wall time = 288.622425 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1635,13 +1635,13 @@ Checking test 025 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 = 179.659344 + 0: The total amount of wall time = 207.320256 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_RRTMGP_debug Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,13 +1706,13 @@ Checking test 026 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 = 150.876189 + 0: The total amount of wall time = 149.493788 Test 026 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_multigases +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_multigases Checking test 027 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1783,13 +1783,13 @@ Checking test 027 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 458.087383 + 0: The total amount of wall time = 637.247540 Test 027 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_HAFS_v0_hwrf_thompson_debug Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1854,13 +1854,13 @@ Checking test 028 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 = 129.246540 + 0: The total amount of wall time = 125.628242 Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1875,13 +1875,13 @@ Checking test 029 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 = 227.785235 + 0: The total amount of wall time = 223.046220 Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfsv16_ugwpv1_debug Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1940,13 +1940,13 @@ Checking test 030 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 = 408.927371 + 0: The total amount of wall time = 381.511487 Test 030 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_54953/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_136354/fv3_gfs_v16_ras_debug Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2011,11 +2011,11 @@ Checking test 031 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 = 384.924779 + 0: The total amount of wall time = 217.915643 Test 031 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 15:53:02 UTC 2021 -Elapsed time: 00h:29m:45s. Have a nice day! +Thu May 13 20:20:22 UTC 2021 +Elapsed time: 00h:36m:55s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5c2ebe9c46..50a7597eed 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,31 +1,31 @@ -Wed May 12 16:18:48 UTC 2021 +Thu May 13 21:21:34 UTC 2021 Start Regression test -Compile 001 elapsed time 699 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 580 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 192 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 517 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 502 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 876 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 907 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 816 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 1173 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 804 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 850 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 707 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 693 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 387 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 343 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 265 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 369 seconds. APP=DATM_NEMS -Compile 019 elapsed time 183 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 383 seconds. APP=DATM -Compile 021 elapsed time 162 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 575 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/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 639 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 349 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 575 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 495 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 506 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 509 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 524 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 865 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 523 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 581 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 590 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 523 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 179 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 156 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 155 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 165 seconds. APP=DATM_NEMS +Compile 019 elapsed time 89 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 172 seconds. APP=DATM +Compile 021 elapsed time 88 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 531 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 96.387572 + 0: The total amount of wall time = 89.392482 Test 001 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 56.704849 + 0: The total amount of wall time = 66.591920 Test 002 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 91.253429 + 0: The total amount of wall time = 88.641632 Test 003 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.622327 + 0: The total amount of wall time = 66.005339 Test 004 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 102.574923 + 0: The total amount of wall time = 98.753506 Test 005 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 90.819593 + 0: The total amount of wall time = 127.449535 Test 006 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 100.348525 + 0: The total amount of wall time = 86.890103 Test 007 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 93.444100 + 0: The total amount of wall time = 103.749980 Test 008 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 398.072882 + 0: The total amount of wall time = 377.879128 Test 009 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 272.391892 + 0: The total amount of wall time = 265.023872 Test 010 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 395.268755 + 0: The total amount of wall time = 383.194024 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 268.544144 + 0: The total amount of wall time = 269.016084 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 1402.549327 + 0: The total amount of wall time = 1330.243387 Test 013 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 704.470028 + 0: The total amount of wall time = 680.341685 Test 014 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 1406.769021 + 0: The total amount of wall time = 1331.406776 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 696.878060 + 0: The total amount of wall time = 703.463897 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 811.838279 + 0: The total amount of wall time = 810.419957 Test 017 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 458.734205 + 0: The total amount of wall time = 662.385650 Test 018 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 801.511465 + 0: The total amount of wall time = 817.147134 Test 019 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 460.927056 + 0: The total amount of wall time = 524.382686 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 732.510690 + 0: The total amount of wall time = 761.438167 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmarkfrac_v16_nsst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 733.381788 + 0: The total amount of wall time = 736.275702 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_restart_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 426.200608 + 0: The total amount of wall time = 483.604562 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmark_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 906.082739 + 0: The total amount of wall time = 908.602707 Test 024 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmarkfrac_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 930.698467 + 0: The total amount of wall time = 894.181333 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_bmarkfrac_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 751.626642 + 0: The total amount of wall time = 738.725924 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 109.813251 + 0: The total amount of wall time = 109.271161 Test 027 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 342.282047 + 0: The total amount of wall time = 278.170816 Test 028 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/cpld_debugfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 286.834140 + 0: The total amount of wall time = 279.690161 Test 029 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 71.803127 + 0: The total amount of wall time = 39.329711 Test 030 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 40.236403 + 0: The total amount of wall time = 40.224285 Test 031 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 56.071824 + 0: The total amount of wall time = 42.200585 Test 032 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 19.334880 + 0: The total amount of wall time = 18.991635 Test 033 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 37.417148 + 0: The total amount of wall time = 36.966020 Test 034 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 180.694741 + 0: The total amount of wall time = 115.187912 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 130.582460 + 0: The total amount of wall time = 38.047905 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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,7 +2109,7 @@ 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 .........OK Comparing dynf024.nc ............ALT CHECK......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 = 157.722741 + 0: The total amount of wall time = 83.507408 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.225746 + 0: The total amount of wall time = 62.885682 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.211505 + 0: The total amount of wall time = 42.315598 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 207.524976 + 0: The total amount of wall time = 98.126842 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 40.926631 + 0: The total amount of wall time = 40.589848 Test 041 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 26.494360 + 0: The total amount of wall time = 26.700010 Test 042 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 105.947858 + 0: The total amount of wall time = 43.010269 Test 043 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 36.603583 + 0: The total amount of wall time = 36.631910 Test 044 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 36.410567 + 0: The total amount of wall time = 37.152940 Test 045 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 96.074334 + 0: The total amount of wall time = 96.147058 Test 046 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 264.535057 + 0: The total amount of wall time = 36.150162 Test 047 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 235.209698 + 0: The total amount of wall time = 220.301282 Test 048 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 272.953190 + 0: The total amount of wall time = 245.914193 Test 049 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 235.727069 + 0: The total amount of wall time = 233.324022 Test 050 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 135.877022 + 0: The total amount of wall time = 132.421857 Test 051 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 217.780125 + 0: The total amount of wall time = 216.489383 Test 052 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 213.109754 + 0: The total amount of wall time = 214.863021 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 216.136782 + 0: The total amount of wall time = 214.907260 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_quilt_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 276.668773 + 0: The total amount of wall time = 277.444222 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 43.355857 + 0: The total amount of wall time = 42.619015 Test 056 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.286341 + 0: The total amount of wall time = 42.710902 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.876509 + 0: The total amount of wall time = 43.617696 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.246704 + 0: The total amount of wall time = 107.238106 Test 059 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 47.694780 + 0: The total amount of wall time = 46.312343 Test 060 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 50.122789 + 0: The total amount of wall time = 45.755785 Test 061 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 36.876159 + 0: The total amount of wall time = 37.829735 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.432590 + 0: The total amount of wall time = 71.889979 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 267.615638 + 0: The total amount of wall time = 256.160882 Test 064 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 168.116400 + 0: The total amount of wall time = 177.188524 Test 065 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 87.082727 + 0: The total amount of wall time = 89.815387 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 88.932243 + 0: The total amount of wall time = 90.505387 Test 067 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 84.111272 + 0: The total amount of wall time = 89.393474 Test 068 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 76.899888 + 0: The total amount of wall time = 84.108059 Test 069 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 78.013695 + 0: The total amount of wall time = 78.591232 Test 070 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 85.717306 + 0: The total amount of wall time = 91.560558 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 134.803797 + 0: The total amount of wall time = 144.425059 Test 072 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.224061 + 0: The total amount of wall time = 79.665919 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 47.394867 + 0: The total amount of wall time = 46.983180 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 175.677811 + 0: The total amount of wall time = 171.948562 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 115.382224 + 0: The total amount of wall time = 114.635643 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 113.546569 + 0: The total amount of wall time = 111.758879 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 47.001779 + 0: The total amount of wall time = 47.144853 Test 078 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 99.030602 + 0: The total amount of wall time = 97.541351 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 141.737799 + 0: The total amount of wall time = 141.310928 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 282.505612 + 0: The total amount of wall time = 285.717194 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 166.399073 + 0: The total amount of wall time = 164.066123 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 165.522982 + 0: The total amount of wall time = 163.613262 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 88.430057 + 0: The total amount of wall time = 88.045400 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 229.224400 + 0: The total amount of wall time = 227.611385 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 227.938171 + 0: The total amount of wall time = 224.584579 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 355.430192 + 0: The total amount of wall time = 337.169329 Test 087 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 128.083693 + 0: The total amount of wall time = 128.320100 Test 088 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 361.078460 + 0: The total amount of wall time = 350.199475 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 195.068163 + 0: The total amount of wall time = 195.015977 Test 090 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 250.528381 + 0: The total amount of wall time = 284.460118 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 325.741197 + 0: The total amount of wall time = 322.748387 Test 092 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 315.301936 + 0: The total amount of wall time = 315.844651 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 187.521075 + 0: The total amount of wall time = 189.975142 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.586485 + 0: The total amount of wall time = 189.881657 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.160436 + 0: The total amount of wall time = 194.861777 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 404.944487 + 0: The total amount of wall time = 378.872285 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 559.550951 + 0: The total amount of wall time = 549.180076 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 314.741686 + 0: The total amount of wall time = 305.030680 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 112.761725 + 0: The total amount of wall time = 113.669086 Test 100 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 65.700093 + 0: The total amount of wall time = 70.869737 Test 101 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 94.865345 + 0: The total amount of wall time = 104.852456 Test 102 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.798280 + 0: The total amount of wall time = 98.003787 Test 103 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.071069 + 0: The total amount of wall time = 91.809553 Test 104 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 362.751824 + 0: The total amount of wall time = 349.098834 Test 105 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 349.235211 + 0: The total amount of wall time = 372.677611 Test 106 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 266.452486 + 0: The total amount of wall time = 263.153871 Test 107 datm_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.670933 + 0: The total amount of wall time = 142.694020 Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 91.446610 + 0: The total amount of wall time = 114.984304 Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.248320 + 0: The total amount of wall time = 141.593142 Test 110 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 147.366835 + 0: The total amount of wall time = 141.178575 Test 111 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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.704130 + 0: The total amount of wall time = 143.172527 Test 112 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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 = 368.486439 + 0: The total amount of wall time = 378.624496 Test 113 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/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,25 +5855,25 @@ 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 = 352.725507 + 0: The total amount of wall time = 365.530342 Test 114 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/datm_cdeps_debug_cfsr Checking test 115 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 = 444.363602 + 0: The total amount of wall time = 433.943699 Test 115 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/fv3_gfdlmprad Checking test 116 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5919,13 +5919,13 @@ Checking test 116 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 336.345901 + 0: The total amount of wall time = 336.884130 Test 116 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/fv3_gfdlmprad_atmwav Checking test 117 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5971,13 +5971,13 @@ Checking test 117 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 377.715093 + 0: The total amount of wall time = 398.590968 Test 117 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_222775/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_289143/fv3_wrtGauss_nemsio_c768 Checking test 118 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -6023,11 +6023,11 @@ Checking test 118 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 541.315106 + 0: The total amount of wall time = 560.415764 Test 118 fv3_wrtGauss_nemsio_c768 PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 17:23:19 UTC 2021 -Elapsed time: 01h:04m:31s. Have a nice day! +Thu May 13 22:34:35 UTC 2021 +Elapsed time: 01h:13m:01s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 7d23a739b2..94d997d343 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,31 +1,31 @@ -Thu May 13 02:45:26 GMT 2021 +Fri May 14 01:01:15 GMT 2021 Start Regression test -Compile 001 elapsed time 2368 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 2373 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 223 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 2234 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 979 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 2365 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 2225 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 2282 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 2329 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 2428 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 2290 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 2691 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 2342 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 2320 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 221 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 239 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 211 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 1305 seconds. APP=DATM_NEMS -Compile 019 elapsed time 168 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 1305 seconds. APP=DATM -Compile 021 elapsed time 174 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 2290 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_control +Compile 001 elapsed time 2387 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 2387 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 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 2216 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 703 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 2191 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 2183 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 2243 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 2294 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 2314 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 2246 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 2228 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 2240 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 2260 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 195 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 202 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 210 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 248 seconds. APP=DATM_NEMS +Compile 019 elapsed time 130 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 262 seconds. APP=DATM +Compile 021 elapsed time 134 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 2230 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/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 -The total amount of wall time = 124.624645 +The total amount of wall time = 124.986956 Test 001 cpld_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/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 -The total amount of wall time = 70.705152 +The total amount of wall time = 81.831860 Test 002 cpld_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_controlfrac +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/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 -The total amount of wall time = 127.862511 +The total amount of wall time = 126.517414 Test 003 cpld_controlfrac PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restartfrac +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/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 -The total amount of wall time = 73.074689 +The total amount of wall time = 72.584904 Test 004 cpld_restartfrac PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/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 -The total amount of wall time = 574.870638 +The total amount of wall time = 521.012017 Test 005 cpld_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_satmedmf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_satmedmf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_satmedmf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_satmedmf Checking test 006 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -355,13 +355,13 @@ Checking test 006 cpld_satmedmf 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 = 120.126499 +The total amount of wall time = 121.532572 Test 006 cpld_satmedmf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_ca Checking test 007 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -411,13 +411,13 @@ Checking test 007 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.107084 +The total amount of wall time = 123.738609 Test 007 cpld_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_control_c192 Checking test 008 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 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 = 517.984150 +The total amount of wall time = 526.591348 Test 008 cpld_control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restart_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restart_c192 Checking test 009 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -523,13 +523,13 @@ Checking test 009 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 = 363.132582 +The total amount of wall time = 367.227944 Test 009 cpld_restart_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_controlfrac_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_controlfrac_c192 Checking test 010 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -579,13 +579,13 @@ Checking test 010 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 -The total amount of wall time = 520.576928 +The total amount of wall time = 520.699249 Test 010 cpld_controlfrac_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restartfrac_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restartfrac_c192 Checking test 011 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -635,13 +635,13 @@ Checking test 011 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 -The total amount of wall time = 359.276439 +The total amount of wall time = 362.906830 Test 011 cpld_restartfrac_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_control_c384 Checking test 012 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -694,13 +694,13 @@ Checking test 012 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 -The total amount of wall time = 1019.854446 +The total amount of wall time = 1016.779670 Test 012 cpld_control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restart_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restart_c384 Checking test 013 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -753,13 +753,13 @@ Checking test 013 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 -The total amount of wall time = 528.355236 +The total amount of wall time = 528.084011 Test 013 cpld_restart_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_controlfrac_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_controlfrac_c384 Checking test 014 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -812,13 +812,13 @@ Checking test 014 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 -The total amount of wall time = 1009.452078 +The total amount of wall time = 1019.966264 Test 014 cpld_controlfrac_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restartfrac_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restartfrac_c384 Checking test 015 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -871,13 +871,13 @@ Checking test 015 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 -The total amount of wall time = 515.008055 +The total amount of wall time = 522.648370 Test 015 cpld_restartfrac_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmark +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmark Checking test 016 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -930,13 +930,13 @@ Checking test 016 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1068.345342 +The total amount of wall time = 1072.183510 Test 016 cpld_bmark PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restart_bmark +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restart_bmark Checking test 017 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -989,13 +989,13 @@ Checking test 017 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 -The total amount of wall time = 566.859834 +The total amount of wall time = 580.190292 Test 017 cpld_restart_bmark PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmarkfrac +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmarkfrac Checking test 018 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1048,13 +1048,13 @@ Checking test 018 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1062.086473 +The total amount of wall time = 1064.167315 Test 018 cpld_bmarkfrac PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restart_bmarkfrac +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restart_bmarkfrac Checking test 019 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1107,13 +1107,13 @@ Checking test 019 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 -The total amount of wall time = 565.411400 +The total amount of wall time = 569.367550 Test 019 cpld_restart_bmarkfrac PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmarkfrac_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmarkfrac_v16 Checking test 020 cpld_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1156,13 +1156,13 @@ Checking test 020 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 -The total amount of wall time = 963.655561 +The total amount of wall time = 968.210196 Test 020 cpld_bmarkfrac_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmarkfrac_v16_nsst +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmarkfrac_v16_nsst Checking test 021 cpld_bmarkfrac_v16_nsst results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1205,13 +1205,13 @@ Checking test 021 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 -The total amount of wall time = 962.577701 +The total amount of wall time = 972.112037 Test 021 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_restart_bmarkfrac_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_restart_bmarkfrac_v16 Checking test 022 cpld_restart_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1254,13 +1254,13 @@ Checking test 022 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 -The total amount of wall time = 523.573683 +The total amount of wall time = 533.242331 Test 022 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmark_wave +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmark_wave Checking test 023 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1316,13 +1316,13 @@ Checking test 023 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 -The total amount of wall time = 1777.750073 +The total amount of wall time = 1775.973226 Test 023 cpld_bmark_wave PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmarkfrac_wave +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmarkfrac_wave Checking test 024 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1378,13 +1378,13 @@ Checking test 024 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 -The total amount of wall time = 1779.108562 +The total amount of wall time = 1772.842092 Test 024 cpld_bmarkfrac_wave PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_bmarkfrac_wave_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_bmarkfrac_wave_v16 Checking test 025 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1429,13 +1429,13 @@ Checking test 025 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 -The total amount of wall time = 1183.169105 +The total amount of wall time = 1190.457582 Test 025 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_control_wave +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_control_wave Checking test 026 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1488,13 +1488,13 @@ Checking test 026 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 1018.366244 +The total amount of wall time = 1027.077858 Test 026 cpld_control_wave PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_debug Checking test 027 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1544,13 +1544,13 @@ Checking test 027 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 = 372.657905 +The total amount of wall time = 363.919692 Test 027 cpld_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debugfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/cpld_debugfrac +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debugfrac +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/cpld_debugfrac Checking test 028 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1600,13 +1600,13 @@ Checking test 028 cpld_debugfrac 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 = 371.476369 +The total amount of wall time = 363.049339 Test 028 cpld_debugfrac PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_control Checking test 029 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1671,13 +1671,13 @@ Checking test 029 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.081829 +The total amount of wall time = 63.754433 Test 029 fv3_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_2threads Checking test 030 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1742,13 +1742,13 @@ Checking test 030 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 290.389336 +The total amount of wall time = 304.089715 Test 030 fv3_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_restart Checking test 031 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1795,13 +1795,13 @@ Checking test 031 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.829839 +The total amount of wall time = 28.671512 Test 031 fv3_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_read_inc +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_read_inc Checking test 032 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1866,13 +1866,13 @@ Checking test 032 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.435198 +The total amount of wall time = 53.582571 Test 032 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_wrtGauss_netcdf_esmf Checking test 033 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,13 +1917,13 @@ Checking test 033 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 148.897989 +The total amount of wall time = 175.974887 Test 033 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_wrtGauss_netcdf Checking test 034 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1968,13 +1968,13 @@ Checking test 034 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.609998 +The total amount of wall time = 53.612340 Test 034 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_wrtGauss_netcdf_parallel Checking test 035 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1983,7 +1983,7 @@ Checking test 035 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -2019,13 +2019,13 @@ Checking test 035 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.759824 +The total amount of wall time = 80.076371 Test 035 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_wrtGlatlon_netcdf Checking test 036 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,13 +2070,13 @@ Checking test 036 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.015116 +The total amount of wall time = 53.125820 Test 036 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_wrtGauss_nemsio Checking test 037 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,13 +2121,13 @@ Checking test 037 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.365294 +The total amount of wall time = 52.887201 Test 037 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_wrtGauss_nemsio_c192 Checking test 038 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 038 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.940473 +The total amount of wall time = 141.426833 Test 038 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_stochy Checking test 039 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 039 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.446979 +The total amount of wall time = 59.960886 Test 039 fv3_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_ca Checking test 040 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 040 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.461289 +The total amount of wall time = 48.521687 Test 040 fv3_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_lndp Checking test 041 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2385,13 +2385,13 @@ Checking test 041 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 63.815915 +The total amount of wall time = 66.433507 Test 041 fv3_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_iau -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_iau +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_iau +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_iau Checking test 042 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2456,13 +2456,13 @@ Checking test 042 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.524545 +The total amount of wall time = 54.927393 Test 042 fv3_iau PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_lheatstrg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_lheatstrg Checking test 043 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2507,13 +2507,13 @@ Checking test 043 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.227481 +The total amount of wall time = 52.447533 Test 043 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_multigases_repro +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_multigases_repro Checking test 044 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2584,13 +2584,13 @@ Checking test 044 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 132.487396 +The total amount of wall time = 133.487827 Test 044 fv3_multigases PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_control_32bit +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_control_32bit Checking test 045 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,13 +2655,13 @@ Checking test 045 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.626304 +The total amount of wall time = 56.952378 Test 045 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_stretched +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_stretched Checking test 046 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2714,13 +2714,13 @@ Checking test 046 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.792845 +The total amount of wall time = 390.810638 Test 046 fv3_stretched PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_stretched_nest +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_stretched_nest Checking test 047 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2784,13 +2784,13 @@ Checking test 047 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 420.310329 +The total amount of wall time = 438.792216 Test 047 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_control Checking test 048 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2798,25 +2798,25 @@ Checking test 048 fv3_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 = 308.399701 +The total amount of wall time = 309.372672 Test 048 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_restart Checking test 049 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 179.564938 +The total amount of wall time = 169.328449 Test 049 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_quilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_quilt Checking test 050 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2827,13 +2827,13 @@ Checking test 050 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 305.269547 +The total amount of wall time = 305.321963 Test 050 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_quilt_hafs Checking test 051 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2842,27 +2842,27 @@ Checking test 051 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 304.026364 +The total amount of wall time = 305.321543 Test 051 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_quilt_netcdf_parallel Checking test 052 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 305.759570 +The total amount of wall time = 305.402040 Test 052 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_quilt_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_quilt_RRTMGP Checking test 053 fv3_regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2873,13 +2873,13 @@ Checking test 053 fv3_regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 391.082315 +The total amount of wall time = 391.310651 Test 053 fv3_regional_quilt_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmp Checking test 054 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2924,13 +2924,13 @@ Checking test 054 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.007333 +The total amount of wall time = 60.817974 Test 054 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmprad_gwd Checking test 055 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2975,13 +2975,13 @@ Checking test 055 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 72.237732 +The total amount of wall time = 61.150099 Test 055 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmprad_noahmp Checking test 056 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3026,13 +3026,13 @@ Checking test 056 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.231965 +The total amount of wall time = 63.802062 Test 056 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_csawmg Checking test 057 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3077,13 +3077,13 @@ Checking test 057 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 148.560866 +The total amount of wall time = 149.289345 Test 057 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_satmedmf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_satmedmf Checking test 058 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3128,13 +3128,13 @@ Checking test 058 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.934214 +The total amount of wall time = 65.917112 Test 058 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_satmedmfq +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_satmedmfq Checking test 059 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3179,13 @@ Checking test 059 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.967759 +The total amount of wall time = 67.002047 Test 059 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmp_32bit Checking test 060 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3230,13 +3230,13 @@ Checking test 060 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.450732 +The total amount of wall time = 52.723316 Test 060 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmprad_32bit_post Checking test 061 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3285,13 +3285,13 @@ Checking test 061 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 107.769621 +The total amount of wall time = 103.899982 Test 061 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_cpt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_cpt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_cpt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_cpt Checking test 062 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3342,13 +3342,13 @@ Checking test 062 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 354.643621 +The total amount of wall time = 353.356386 Test 062 fv3_cpt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gsd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gsd Checking test 063 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3437,13 +3437,13 @@ Checking test 063 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 229.468373 +The total amount of wall time = 227.689742 Test 063 fv3_gsd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_rrfs_v1alpha +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_rrfs_v1alpha Checking test 064 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3508,13 +3508,13 @@ Checking test 064 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.875081 +The total amount of wall time = 115.046921 Test 064 fv3_rrfs_v1alpha PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_thompson Checking test 065 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3579,13 +3579,13 @@ Checking test 065 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.036404 +The total amount of wall time = 109.107759 Test 065 fv3_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_thompson_no_aero Checking test 066 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3650,13 +3650,13 @@ Checking test 066 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.832009 +The total amount of wall time = 106.592522 Test 066 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16 Checking test 067 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3733,13 +3733,13 @@ Checking test 067 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.291700 +The total amount of wall time = 184.963858 Test 067 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_restart Checking test 068 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3786,13 +3786,13 @@ Checking test 068 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.614825 +The total amount of wall time = 104.277504 Test 068 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_stochy Checking test 069 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3857,13 +3857,13 @@ Checking test 069 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.712121 +The total amount of wall time = 67.380431 Test 069 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_RRTMGP Checking test 070 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3940,13 +3940,13 @@ Checking test 070 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 228.723111 +The total amount of wall time = 224.785026 Test 070 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfsv16_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfsv16_csawmg Checking test 071 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3991,13 +3991,13 @@ Checking test 071 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.408732 +The total amount of wall time = 160.198690 Test 071 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfsv16_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfsv16_csawmgt Checking test 072 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4042,13 +4042,13 @@ Checking test 072 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 159.957168 +The total amount of wall time = 157.972645 Test 072 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gocart_clm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gocart_clm Checking test 073 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4093,13 +4093,13 @@ Checking test 073 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.903124 +The total amount of wall time = 67.916441 Test 073 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_flake Checking test 074 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4164,13 +4164,13 @@ Checking test 074 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 123.275977 +The total amount of wall time = 131.914701 Test 074 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_HAFS_v0_hwrf_thompson Checking test 075 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4235,13 +4235,13 @@ Checking test 075 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 = 193.224877 +The total amount of wall time = 191.787115 Test 075 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_esg_HAFS_v0_hwrf_thompson Checking test 076 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4256,13 +4256,13 @@ Checking test 076 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 = 369.546387 +The total amount of wall time = 361.541073 Test 076 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfsv16_ugwpv1 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfsv16_ugwpv1 Checking test 077 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4321,13 +4321,13 @@ Checking test 077 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 232.718831 +The total amount of wall time = 232.471017 Test 077 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfsv16_ugwpv1_warmstart Checking test 078 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4386,13 +4386,13 @@ Checking test 078 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 230.380963 +The total amount of wall time = 230.606411 Test 078 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_ras Checking test 079 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4457,13 +4457,13 @@ Checking test 079 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.725714 +The total amount of wall time = 123.823612 Test 079 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_debug Checking test 080 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4528,13 +4528,13 @@ Checking test 080 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 310.521996 +The total amount of wall time = 309.774718 Test 080 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_RRTMGP_debug Checking test 081 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4599,13 +4599,13 @@ Checking test 081 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 302.192436 +The total amount of wall time = 301.869460 Test 081 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_regional_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_regional_control_debug Checking test 082 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -4613,13 +4613,13 @@ Checking test 082 fv3_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 = 455.170356 +The total amount of wall time = 449.558142 Test 082 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_control_debug Checking test 083 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4646,13 +4646,13 @@ Checking test 083 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 174.391547 +The total amount of wall time = 172.762696 Test 083 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_stretched_nest_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_stretched_nest_debug Checking test 084 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -4669,13 +4669,13 @@ Checking test 084 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 535.340843 +The total amount of wall time = 529.722553 Test 084 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gsd_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gsd_debug Checking test 085 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4740,13 +4740,13 @@ Checking test 085 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 257.721648 +The total amount of wall time = 257.231303 Test 085 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gsd_diag3d_debug Checking test 086 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4811,13 +4811,13 @@ Checking test 086 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 = 330.437473 +The total amount of wall time = 336.701924 Test 086 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_thompson_debug Checking test 087 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4882,13 +4882,13 @@ Checking test 087 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 437.591136 +The total amount of wall time = 433.709828 Test 087 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_thompson_no_aero_debug Checking test 088 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4953,13 +4953,13 @@ Checking test 088 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 422.805098 +The total amount of wall time = 420.581938 Test 088 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_rrfs_v1beta_debug Checking test 089 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5024,13 +5024,13 @@ Checking test 089 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 = 251.287309 +The total amount of wall time = 249.536068 Test 089 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_rrfs_v1alpha_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_rrfs_v1alpha_debug Checking test 090 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5095,13 +5095,13 @@ Checking test 090 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 = 251.521242 +The total amount of wall time = 250.414968 Test 090 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_HAFS_v0_hwrf_thompson_debug Checking test 091 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5166,13 +5166,13 @@ Checking test 091 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.447429 +The total amount of wall time = 265.521348 Test 091 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 092 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -5187,13 +5187,13 @@ Checking test 092 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 = 505.278701 +The total amount of wall time = 498.280114 Test 092 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfsv16_ugwpv1_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfsv16_ugwpv1_debug Checking test 093 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -5252,13 +5252,13 @@ Checking test 093 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 732.843964 +The total amount of wall time = 726.260978 Test 093 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfs_v16_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfs_v16_ras_debug Checking test 094 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5323,73 +5323,73 @@ Checking test 094 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 413.851783 +The total amount of wall time = 412.067339 Test 094 fv3_gfs_v16_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_control_cfsr Checking test 095 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 = 131.068227 +The total amount of wall time = 129.358385 Test 095 datm_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_restart_cfsr Checking test 096 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 = 80.772566 +The total amount of wall time = 80.410964 Test 096 datm_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_control_gefs Checking test 097 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 = 120.970461 +The total amount of wall time = 120.746427 Test 097 datm_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_bulk_cfsr Checking test 098 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.079632 +The total amount of wall time = 124.668281 Test 098 datm_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_bulk_gefs Checking test 099 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 = 123.192063 +The total amount of wall time = 120.668736 Test 099 datm_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5398,13 +5398,13 @@ Checking test 100 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 = 463.064287 +The total amount of wall time = 466.785745 Test 100 datm_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5413,85 +5413,85 @@ Checking test 101 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 = 458.469909 +The total amount of wall time = 461.440204 Test 101 datm_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_debug_cfsr Checking test 102 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 = 354.306509 +The total amount of wall time = 346.695226 Test 102 datm_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_control_cfsr Checking test 103 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 = 200.012129 +The total amount of wall time = 197.446827 Test 103 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_restart_cfsr Checking test 104 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 = 127.520473 +The total amount of wall time = 124.778372 Test 104 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_control_gefs Checking test 105 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.292554 +The total amount of wall time = 194.976663 Test 105 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_bulk_cfsr Checking test 106 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 = 202.183562 +The total amount of wall time = 197.913113 Test 106 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_bulk_gefs Checking test 107 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 = 213.611971 +The total amount of wall time = 194.128228 Test 107 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_mx025_cfsr Checking test 108 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5500,13 +5500,13 @@ Checking test 108 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 = 479.624147 +The total amount of wall time = 477.513982 Test 108 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_mx025_gefs Checking test 109 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5515,25 +5515,25 @@ Checking test 109 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 = 465.121441 +The total amount of wall time = 468.020036 Test 109 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/datm_cdeps_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/datm_cdeps_debug_cfsr Checking test 110 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 = 580.526035 +The total amount of wall time = 572.632988 Test 110 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmprad +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmprad Checking test 111 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5579,13 +5579,13 @@ Checking test 111 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -The total amount of wall time = 422.336874 +The total amount of wall time = 424.196028 Test 111 fv3_gfdlmprad PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_177334/fv3_gfdlmprad_atmwav +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_227584/fv3_gfdlmprad_atmwav Checking test 112 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5631,11 +5631,11 @@ Checking test 112 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -The total amount of wall time = 470.596123 +The total amount of wall time = 475.290819 Test 112 fv3_gfdlmprad_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 13 05:50:41 GMT 2021 -Elapsed time: 03h:05m:16s. Have a nice day! +Fri May 14 05:22:42 GMT 2021 +Elapsed time: 04h:21m:27s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b876cb43a7..73936e3c44 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,31 +1,31 @@ -Wed May 12 22:24:13 CDT 2021 +Thu May 13 16:46:18 CDT 2021 Start Regression test -Compile 001 elapsed time 595 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 610 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 222 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 539 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 529 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 529 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 540 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 590 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 541 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 569 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 550 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 559 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 147 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 164 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 183 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 390 seconds. APP=DATM_NEMS -Compile 019 elapsed time 127 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 389 seconds. APP=DATM -Compile 021 elapsed time 125 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 576 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_control +Compile 001 elapsed time 596 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 620 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 158 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 521 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 005 elapsed time 477 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 006 elapsed time 510 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 513 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 557 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 544 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 553 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 569 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 534 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 527 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 538 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 128 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 141 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 135 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 95 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 189 seconds. APP=DATM +Compile 021 elapsed time 144 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 539 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 109.155481 + 0: The total amount of wall time = 106.331763 Test 001 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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.396543 + 0: The total amount of wall time = 71.729271 Test 002 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_controlfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 103.354632 + 0: The total amount of wall time = 110.428391 Test 003 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restartfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 77.011640 + 0: The total amount of wall time = 73.256710 Test 004 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 113.305563 + 0: The total amount of wall time = 119.847520 Test 005 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 98.575705 + 0: The total amount of wall time = 102.251426 Test 006 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 99.366732 + 0: The total amount of wall time = 101.153546 Test 007 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 97.043410 + 0: The total amount of wall time = 119.591777 Test 008 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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.450699 + 0: The total amount of wall time = 382.147839 Test 009 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 275.669687 + 0: The total amount of wall time = 289.708698 Test 010 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_controlfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 388.621456 + 0: The total amount of wall time = 388.417493 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restartfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 276.582364 + 0: The total amount of wall time = 326.197510 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 1397.832496 + 0: The total amount of wall time = 1324.178967 Test 013 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 736.508117 + 0: The total amount of wall time = 698.764032 Test 014 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_controlfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 1381.921553 + 0: The total amount of wall time = 1377.832671 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restartfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 729.687385 + 0: The total amount of wall time = 710.760490 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_bmark Checking test 017 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -986,15 +986,72 @@ 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 = 833.454698 + 0: The total amount of wall time = 940.444342 Test 017 cpld_bmark PASS -Test 018 cpld_restart_bmark FAIL + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_restart_bmark +Checking test 018 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + 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 = 444.096511 + +Test 018 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_bmarkfrac Checking test 019 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1047,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 = 833.867004 + 0: The total amount of wall time = 854.151289 Test 019 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_restart_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_restart_bmarkfrac Checking test 020 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1106,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 = 447.729839 + 0: The total amount of wall time = 491.410245 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_bmarkfrac_v16 Checking test 021 cpld_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1155,14 +1212,16 @@ 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 = 772.856491 + 0: The total amount of wall time = 766.042466 Test 021 cpld_bmarkfrac_v16 PASS +Test 022 cpld_bmarkfrac_v16_nsst FAIL -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmarkfrac_v16_nsst -Checking test 022 cpld_bmarkfrac_v16_nsst results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_restart_bmarkfrac_v16 +Checking test 023 cpld_restart_bmarkfrac_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -1204,15 +1263,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 = 849.891755 - -Test 022 cpld_bmarkfrac_v16_nsst PASS + 0: The total amount of wall time = 420.894523 -Test 023 cpld_restart_bmarkfrac_v16 FAIL +Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmark_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmark_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_bmark_wave Checking test 024 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1268,13 +1325,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 = 1008.431754 + 0: The total amount of wall time = 1008.394671 Test 024 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmarkfrac_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_bmarkfrac_wave Checking test 025 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1330,13 +1387,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 = 1002.119713 + 0: The total amount of wall time = 950.249427 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_bmarkfrac_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_bmarkfrac_wave_v16 Checking test 026 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK @@ -1381,13 +1438,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 = 861.742638 + 0: The total amount of wall time = 795.923399 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_control_wave Checking test 027 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1440,13 +1497,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 = 123.639896 + 0: The total amount of wall time = 173.552894 Test 027 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_debug Checking test 028 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1496,13 +1553,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 = 314.624774 + 0: The total amount of wall time = 310.032781 Test 028 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/cpld_debugfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_debugfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/cpld_debugfrac Checking test 029 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -1552,13 +1609,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.570951 + 0: The total amount of wall time = 315.753002 Test 029 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_control Checking test 030 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1623,13 +1680,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.480811 + 0: The total amount of wall time = 47.142142 Test 030 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_decomp Checking test 031 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,13 +1751,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 = 47.423084 + 0: The total amount of wall time = 46.781840 Test 031 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_2threads Checking test 032 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1765,13 +1822,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.115230 + 0: The total amount of wall time = 42.849917 Test 032 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_restart Checking test 033 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -1818,13 +1875,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.976930 + 0: The total amount of wall time = 24.849325 Test 033 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_read_inc +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_read_inc +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_read_inc Checking test 034 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1889,13 +1946,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 = 51.789520 + 0: The total amount of wall time = 48.875688 Test 034 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_wrtGauss_netcdf_esmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_wrtGauss_netcdf_esmf Checking test 035 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1940,13 +1997,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 = 232.250312 + 0: The total amount of wall time = 220.975755 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_wrtGauss_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_wrtGauss_netcdf Checking test 036 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1991,13 +2048,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 = 43.074736 + 0: The total amount of wall time = 45.700279 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_wrtGauss_netcdf_parallel Checking test 037 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,7 +2062,7 @@ 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 .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -2042,13 +2099,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 = 86.655109 + 0: The total amount of wall time = 76.783046 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_wrtGlatlon_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_wrtGlatlon_netcdf Checking test 038 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2093,13 +2150,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 = 41.850019 + 0: The total amount of wall time = 50.660315 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_wrtGauss_nemsio +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_wrtGauss_nemsio Checking test 039 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2144,13 +2201,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 = 42.715841 + 0: The total amount of wall time = 45.238115 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_wrtGauss_nemsio_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_wrtGauss_nemsio_c192 Checking test 040 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2195,13 +2252,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 = 105.474021 + 0: The total amount of wall time = 106.429405 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_stochy Checking test 041 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2266,13 +2323,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.853156 + 0: The total amount of wall time = 47.494329 Test 041 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_ca Checking test 042 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2337,13 +2394,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 = 32.583863 + 0: The total amount of wall time = 31.620216 Test 042 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_lndp Checking test 043 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,13 +2465,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 = 61.860189 + 0: The total amount of wall time = 50.029648 Test 043 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_iau -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_iau +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_iau +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_iau Checking test 044 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,13 +2536,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 = 51.830684 + 0: The total amount of wall time = 50.922795 Test 044 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_lheatstrg Checking test 045 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2530,13 +2587,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 = 41.830686 + 0: The total amount of wall time = 44.710436 Test 045 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_multigases_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_multigases_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_multigases_repro Checking test 046 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2607,13 +2664,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 = 105.920022 + 0: The total amount of wall time = 107.885272 Test 046 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_control_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_control_32bit Checking test 047 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2678,13 +2735,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 = 41.444193 + 0: The total amount of wall time = 44.784513 Test 047 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_stretched +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_stretched Checking test 048 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2737,13 +2794,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 = 223.249680 + 0: The total amount of wall time = 230.417352 Test 048 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_stretched_nest +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_stretched_nest Checking test 049 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2807,13 +2864,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 = 243.951363 + 0: The total amount of wall time = 257.561433 Test 049 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_regional_control Checking test 050 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2821,25 +2878,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 = 256.456013 + 0: The total amount of wall time = 249.032613 Test 050 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 135.557882 + 0: The total amount of wall time = 139.593927 Test 051 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_regional_quilt Checking test 052 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2850,13 +2907,13 @@ Checking test 052 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 222.294648 + 0: The total amount of wall time = 233.015391 Test 052 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_regional_quilt_hafs Checking test 053 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2865,27 +2922,27 @@ Checking test 053 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.673697 + 0: The total amount of wall time = 223.537176 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_regional_quilt_netcdf_parallel Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 227.233105 + 0: The total amount of wall time = 233.783605 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_quilt_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_regional_quilt_RRTMGP Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2896,13 +2953,13 @@ Checking test 055 fv3_regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 285.167634 + 0: The total amount of wall time = 290.874775 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmp Checking test 056 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2947,13 +3004,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 = 53.450314 + 0: The total amount of wall time = 54.136409 Test 056 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmprad_gwd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmprad_gwd Checking test 057 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2998,13 +3055,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 = 49.493154 + 0: The total amount of wall time = 50.054890 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmprad_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmprad_noahmp Checking test 058 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3049,13 +3106,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 = 48.907693 + 0: The total amount of wall time = 56.841327 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_csawmg Checking test 059 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3100,13 +3157,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 = 113.446692 + 0: The total amount of wall time = 117.226856 Test 059 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_satmedmf Checking test 060 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3151,13 +3208,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 = 53.251565 + 0: The total amount of wall time = 52.363895 Test 060 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_satmedmfq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_satmedmfq +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_satmedmfq Checking test 061 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3202,13 +3259,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 = 53.359925 + 0: The total amount of wall time = 55.233608 Test 061 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmp_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmp_32bit Checking test 062 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3253,13 +3310,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.534086 + 0: The total amount of wall time = 50.549538 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmprad_32bit_post +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmprad_32bit_post Checking test 063 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3308,13 +3365,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 = 81.891116 + 0: The total amount of wall time = 86.332936 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_cpt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_cpt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_cpt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_cpt Checking test 064 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3365,13 +3422,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 = 261.373531 + 0: The total amount of wall time = 267.651836 Test 064 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gsd Checking test 065 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3460,13 +3517,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 = 179.319836 + 0: The total amount of wall time = 201.255640 Test 065 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_rrfs_v1alpha +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_rrfs_v1alpha Checking test 066 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3531,13 +3588,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 = 93.940529 + 0: The total amount of wall time = 97.487512 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_rap Checking test 067 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3602,13 +3659,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 = 93.116303 + 0: The total amount of wall time = 95.653687 Test 067 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_hrrr Checking test 068 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3673,13 +3730,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 = 92.384750 + 0: The total amount of wall time = 103.772552 Test 068 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_thompson Checking test 069 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3744,13 +3801,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 = 85.500540 + 0: The total amount of wall time = 88.973629 Test 069 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_thompson_no_aero Checking test 070 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3815,13 +3872,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 = 83.789955 + 0: The total amount of wall time = 91.233510 Test 070 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_rrfs_v1beta Checking test 071 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3886,13 +3943,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 = 100.418579 + 0: The total amount of wall time = 97.486791 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16 Checking test 072 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3969,13 +4026,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 = 205.698434 + 0: The total amount of wall time = 212.877454 Test 072 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16_restart Checking test 073 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4022,13 +4079,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 = 243.996118 + 0: The total amount of wall time = 153.592611 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16_stochy Checking test 074 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4093,13 +4150,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 = 55.109591 + 0: The total amount of wall time = 54.932768 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16_RRTMGP Checking test 075 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4176,13 +4233,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 = 245.564830 + 0: The total amount of wall time = 240.208435 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfsv16_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfsv16_csawmg Checking test 076 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4227,13 +4284,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 = 123.865102 + 0: The total amount of wall time = 128.792206 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfsv16_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfsv16_csawmgt Checking test 077 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4278,13 +4335,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 = 123.198298 + 0: The total amount of wall time = 125.965405 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gocart_clm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gocart_clm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gocart_clm Checking test 078 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4329,13 +4386,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 = 59.904886 + 0: The total amount of wall time = 63.089690 Test 078 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16_flake Checking test 079 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4400,13 +4457,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 = 107.184191 + 0: The total amount of wall time = 110.163791 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -4471,13 +4528,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 = 151.487550 + 0: The total amount of wall time = 152.279066 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -4492,13 +4549,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 = 295.385615 + 0: The total amount of wall time = 297.476573 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfsv16_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfsv16_ugwpv1 Checking test 082 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4557,13 +4614,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 = 179.031640 + 0: The total amount of wall time = 175.564865 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfsv16_ugwpv1_warmstart Checking test 083 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4622,13 +4679,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 = 173.070416 + 0: The total amount of wall time = 217.352470 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16_ras Checking test 084 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4693,13 +4750,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 = 97.713649 + 0: The total amount of wall time = 98.072366 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfs_v16_debug Checking test 085 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4764,13 +4821,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 = 290.367678 + 0: The total amount of wall time = 281.805331 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_RRTMGP_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -4835,13 +4892,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 = 249.093338 + 0: The total amount of wall time = 245.850302 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_regional_control_debug Checking test 087 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -4849,13 +4906,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 = 361.168068 + 0: The total amount of wall time = 359.777217 Test 087 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_control_debug Checking test 088 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4882,13 +4939,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 = 163.142664 + 0: The total amount of wall time = 148.732496 Test 088 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_stretched_nest_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -4905,13 +4962,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 = 411.704954 + 0: The total amount of wall time = 375.662732 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gsd_debug Checking test 090 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4976,13 +5033,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 = 210.232958 + 0: The total amount of wall time = 222.661587 Test 090 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gsd_diag3d_debug Checking test 091 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5047,13 +5104,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 = 434.234856 + 0: The total amount of wall time = 322.176802 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_thompson_debug Checking test 092 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5118,13 +5175,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 = 386.889098 + 0: The total amount of wall time = 346.425847 Test 092 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -5189,13 +5246,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 = 363.436746 + 0: The total amount of wall time = 345.739007 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_rrfs_v1beta_debug Checking test 094 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5260,13 +5317,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 = 265.360702 + 0: The total amount of wall time = 216.557824 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_rrfs_v1alpha_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_rrfs_v1alpha_debug Checking test 095 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5331,13 +5388,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 = 267.641110 + 0: The total amount of wall time = 209.949290 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -5402,13 +5459,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.799351 + 0: The total amount of wall time = 219.097711 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -5423,13 +5480,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 = 463.986736 + 0: The total amount of wall time = 410.036028 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfsv16_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfsv16_ugwpv1_debug Checking test 098 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -5488,13 +5545,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 = 585.008465 + 0: The total amount of wall time = 561.720987 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfs_v16_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -5559,73 +5616,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 = 446.612382 + 0: The total amount of wall time = 324.291295 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 176.708452 + 0: The total amount of wall time = 107.756746 Test 100 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 82.912048 + 0: The total amount of wall time = 78.227661 Test 101 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 141.765544 + 0: The total amount of wall time = 99.027533 Test 102 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 156.677262 + 0: The total amount of wall time = 98.493108 Test 103 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 171.535702 + 0: The total amount of wall time = 102.287052 Test 104 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5634,13 +5691,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.456136 + 0: The total amount of wall time = 393.862199 Test 105 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5649,85 +5706,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 = 398.827433 + 0: The total amount of wall time = 388.850058 Test 106 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 299.803994 + 0: The total amount of wall time = 281.438021 Test 107 datm_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 164.155137 + 0: The total amount of wall time = 155.594533 Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 93.346206 + 0: The total amount of wall time = 104.846730 Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 158.796938 + 0: The total amount of wall time = 152.457354 Test 110 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 156.961799 + 0: The total amount of wall time = 153.355868 Test 111 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 = 150.524082 + 0: The total amount of wall time = 149.916618 Test 112 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -5736,13 +5793,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 = 410.617250 + 0: The total amount of wall time = 411.751162 Test 113 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/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 @@ -5751,25 +5808,25 @@ 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 = 408.897427 + 0: The total amount of wall time = 395.264516 Test 114 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/datm_cdeps_debug_cfsr Checking test 115 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 = 488.853010 + 0: The total amount of wall time = 457.630225 Test 115 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmprad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmprad Checking test 116 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5815,13 +5872,13 @@ Checking test 116 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 355.077257 + 0: The total amount of wall time = 356.991477 Test 116 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_297177/fv3_gfdlmprad_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_256028/fv3_gfdlmprad_atmwav Checking test 117 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5867,194 +5924,29 @@ Checking test 117 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 401.027019 + 0: The total amount of wall time = 391.488861 Test 117 fv3_gfdlmprad_atmwav PASS FAILED TESTS: -Test cpld_restart_bmark 018 failed failed -Test cpld_restart_bmark 018 failed in run_test failed -Test cpld_restart_bmarkfrac_v16 023 failed failed -Test cpld_restart_bmarkfrac_v16 023 failed in run_test failed +Test cpld_bmarkfrac_v16_nsst 022 failed failed +Test cpld_bmarkfrac_v16_nsst 022 failed in run_test failed REGRESSION TEST FAILED -Wed May 12 23:32:52 CDT 2021 -Elapsed time: 01h:08m:40s. Have a nice day! -Thu May 13 05:04:43 CDT 2021 -Start Regression test - -Compile 001 elapsed time 629 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 - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_20297/cpld_bmark -Checking test 001 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........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 - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - 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 = 870.687059 +Thu May 13 23:11:01 CDT 2021 +Elapsed time: 06h:24m:44s. Have a nice day! -Test 001 cpld_bmark PASS +cpld_bmarkfrac_v16_nsst rerun: +------------------------------ +Fri May 14 07:50:59 CDT 2021 +Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmark -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_20297/cpld_restart_bmark -Checking test 002 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........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 - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - 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 = 456.485022 - -Test 002 cpld_restart_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_20297/cpld_bmarkfrac_v16 -Checking test 003 cpld_bmarkfrac_v16 results .... - Comparing phyf006.nc .........OK - Comparing dynf006.nc .........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 - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 784.426674 - -Test 003 cpld_bmarkfrac_v16 PASS - +Compile 001 elapsed time 605 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 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_20297/cpld_restart_bmarkfrac_v16 -Checking test 004 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_1801/cpld_bmarkfrac_v16_nsst +Checking test 001 cpld_bmarkfrac_v16_nsst results .... Comparing phyf006.nc .........OK Comparing dynf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -6096,11 +5988,11 @@ Checking test 004 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 = 420.077518 + 0: The total amount of wall time = 763.797478 -Test 004 cpld_restart_bmarkfrac_v16 PASS +Test 001 cpld_bmarkfrac_v16_nsst PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 13 11:39:36 CDT 2021 -Elapsed time: 06h:34m:53s. Have a nice day! +Fri May 14 08:20:12 CDT 2021 +Elapsed time: 00h:29m:14s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 01e9c7c623..613831e9ee 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Wed May 12 17:31:35 UTC 2021 +Thu May 13 21:59:07 UTC 2021 Start Regression test -Compile 001 elapsed time 909 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 914 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 901 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 945 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 005 elapsed time 920 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 961 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 977 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 008 elapsed time 917 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 903 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 930 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 973 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 497 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 503 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 014 elapsed time 524 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_control +Compile 001 elapsed time 879 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 857 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 896 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 869 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 005 elapsed time 959 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 918 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 947 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 008 elapsed time 953 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 875 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 958 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 952 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 470 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 459 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 014 elapsed time 471 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.884007 +The total amount of wall time = 53.521658 Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.210241 +The total amount of wall time = 54.241174 Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_2threads +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -224,13 +224,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.507789 +The total amount of wall time = 43.911012 Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.039389 +The total amount of wall time = 23.255597 Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_read_inc -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_read_inc +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_read_inc +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -348,13 +348,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.793148 +The total amount of wall time = 48.565536 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -399,13 +399,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.645596 +The total amount of wall time = 127.074790 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_wrtGauss_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,13 +450,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.153313 +The total amount of wall time = 54.106060 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -501,13 +501,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.594740 +The total amount of wall time = 54.111622 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -552,13 +552,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.340590 +The total amount of wall time = 48.274024 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_wrtGauss_nemsio +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -603,13 +603,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.118746 +The total amount of wall time = 47.509931 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.673782 +The total amount of wall time = 117.387447 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.233841 +The total amount of wall time = 53.192766 Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_ca -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_ca +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.728731 +The total amount of wall time = 37.847848 Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_lndp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.239623 +The total amount of wall time = 56.162443 Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_iau -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_iau +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_iau +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,13 +938,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.923385 +The total amount of wall time = 49.604136 Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -989,13 +989,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.357039 +The total amount of wall time = 48.644537 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_multigases_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 100.537774 +The total amount of wall time = 99.544021 Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_control_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.758363 +The total amount of wall time = 50.093604 Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stretched -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_stretched +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stretched +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 325.506431 +The total amount of wall time = 320.252663 Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_stretched_nest +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,13 +1266,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 360.290296 +The total amount of wall time = 354.887484 Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1280,25 +1280,25 @@ Checking test 021 fv3_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 = 261.067131 +The total amount of wall time = 268.486001 Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 162.154235 +The total amount of wall time = 161.955484 Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1309,13 +1309,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 245.301125 +The total amount of wall time = 248.353341 Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 246.460590 +The total amount of wall time = 247.140250 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 249.588515 +The total amount of wall time = 247.685162 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_quilt_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_quilt_RRTMGP Checking test 026 fv3_regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1355,13 +1355,13 @@ Checking test 026 fv3_regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 330.827974 +The total amount of wall time = 327.739139 Test 026 fv3_regional_quilt_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfdlmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfdlmp Checking test 027 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1406,13 @@ Checking test 027 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.506964 +The total amount of wall time = 57.152950 Test 027 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfdlmprad_gwd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfdlmprad_gwd Checking test 028 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1457,13 @@ Checking test 028 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.343469 +The total amount of wall time = 55.990120 Test 028 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfdlmprad_noahmp Checking test 029 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1508,13 @@ Checking test 029 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.113875 +The total amount of wall time = 53.754936 Test 029 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_csawmg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_csawmg Checking test 030 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1559,13 @@ Checking test 030 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.255940 +The total amount of wall time = 126.572369 Test 030 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_satmedmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_satmedmf Checking test 031 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1610,13 @@ Checking test 031 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.008309 +The total amount of wall time = 57.835635 Test 031 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_satmedmfq +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_satmedmfq Checking test 032 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1661,13 +1661,13 @@ Checking test 032 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.417440 +The total amount of wall time = 57.213136 Test 032 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfdlmp_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfdlmp_32bit Checking test 033 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1712,13 +1712,13 @@ Checking test 033 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 50.627078 +The total amount of wall time = 49.981200 Test 033 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfdlmprad_32bit_post Checking test 034 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1767,13 +1767,13 @@ Checking test 034 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 102.031990 +The total amount of wall time = 94.234098 Test 034 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_cpt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_cpt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_cpt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_cpt Checking test 035 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,13 +1824,13 @@ Checking test 035 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 283.294386 +The total amount of wall time = 285.214868 Test 035 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gsd +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gsd Checking test 036 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1919,13 +1919,13 @@ Checking test 036 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 189.564065 +The total amount of wall time = 188.309304 Test 036 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_rrfs_v1alpha +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_rrfs_v1alpha Checking test 037 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,13 +1990,13 @@ Checking test 037 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.461927 +The total amount of wall time = 98.206610 Test 037 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rap +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2061,13 +2061,13 @@ Checking test 038 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.488589 +The total amount of wall time = 100.530977 Test 038 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_hrrr +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2132,13 +2132,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.733501 +The total amount of wall time = 96.715695 Test 039 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,13 +2203,13 @@ Checking test 040 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.028857 +The total amount of wall time = 92.859902 Test 040 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_thompson_no_aero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,13 +2274,13 @@ Checking test 041 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.006743 +The total amount of wall time = 88.827774 Test 041 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2345,13 +2345,13 @@ Checking test 042 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 95.818115 +The total amount of wall time = 98.087309 Test 042 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,13 +2428,13 @@ Checking test 043 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 204.259886 +The total amount of wall time = 179.513200 Test 043 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2481,13 +2481,13 @@ Checking test 044 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 111.997542 +The total amount of wall time = 118.407452 Test 044 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2552,13 +2552,13 @@ Checking test 045 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.004748 +The total amount of wall time = 61.527970 Test 045 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2635,13 +2635,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 251.212770 +The total amount of wall time = 221.820221 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfsv16_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfsv16_csawmg Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2686,13 +2686,13 @@ Checking test 047 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 139.512032 +The total amount of wall time = 136.823947 Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfsv16_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfsv16_csawmgt Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2737,13 +2737,13 @@ Checking test 048 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.492251 +The total amount of wall time = 134.969889 Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gocart_clm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gocart_clm Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2788,13 +2788,13 @@ Checking test 049 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.240326 +The total amount of wall time = 66.558920 Test 049 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_flake Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2859,13 +2859,13 @@ Checking test 050 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 102.913036 +The total amount of wall time = 103.366269 Test 050 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/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 @@ -2930,13 +2930,13 @@ Checking test 051 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 = 162.634062 +The total amount of wall time = 161.733762 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/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 @@ -2951,13 +2951,13 @@ Checking test 052 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 = 303.720633 +The total amount of wall time = 304.509931 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfsv16_ugwpv1 Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3016,13 +3016,13 @@ Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.636213 +The total amount of wall time = 193.654478 Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfsv16_ugwpv1_warmstart Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3081,13 +3081,13 @@ Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 194.029386 +The total amount of wall time = 193.471748 Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_ras Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3152,13 +3152,13 @@ Checking test 055 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.687980 +The total amount of wall time = 104.839371 Test 055 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_debug Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3223,13 +3223,13 @@ Checking test 056 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 250.568837 +The total amount of wall time = 269.841602 Test 056 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3294,13 +3294,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 226.902043 +The total amount of wall time = 226.537685 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3308,13 +3308,13 @@ Checking test 058 fv3_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 = 348.609463 +The total amount of wall time = 343.747075 Test 058 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3341,13 +3341,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 131.551062 +The total amount of wall time = 129.001129 Test 059 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_stretched_nest_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3364,13 +3364,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 412.795333 +The total amount of wall time = 409.061019 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3435,13 +3435,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.681797 +The total amount of wall time = 197.860899 Test 061 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gsd_diag3d_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3506,13 +3506,13 @@ Checking test 062 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 = 248.713290 +The total amount of wall time = 241.495670 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3577,13 +3577,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 330.592482 +The total amount of wall time = 333.637141 Test 063 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3648,13 +3648,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 322.264351 +The total amount of wall time = 315.319643 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3719,13 +3719,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 = 193.479416 +The total amount of wall time = 192.593936 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_rrfs_v1alpha_debug Checking test 066 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3790,13 +3790,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 = 194.201034 +The total amount of wall time = 188.375169 Test 066 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/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 @@ -3861,13 +3861,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 = 198.148591 +The total amount of wall time = 200.656981 Test 067 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/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 @@ -3882,13 +3882,13 @@ 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 = 356.099217 +The total amount of wall time = 352.918922 Test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfsv16_ugwpv1_debug Checking test 069 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3947,13 +3947,13 @@ Checking test 069 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 554.892446 +The total amount of wall time = 549.238756 Test 069 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_19520/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13767/fv3_gfs_v16_ras_debug Checking test 070 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4018,11 +4018,11 @@ Checking test 070 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 311.826129 +The total amount of wall time = 309.787546 Test 070 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 18:13:18 UTC 2021 -Elapsed time: 00h:41m:44s. Have a nice day! +Thu May 13 22:38:46 UTC 2021 +Elapsed time: 00h:39m:40s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 78ee1264c0..ec94d60fb0 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,31 +1,31 @@ -Wed May 12 15:55:57 UTC 2021 +Thu May 13 23:51:53 UTC 2021 Start Regression test -Compile 001 elapsed time 2639 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 2570 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 726 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 1520 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 005 elapsed time 1419 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 006 elapsed time 1629 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 007 elapsed time 1618 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 1615 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 009 elapsed time 1758 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 010 elapsed time 2199 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 1644 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 012 elapsed time 1532 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 013 elapsed time 1629 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 014 elapsed time 1701 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 015 elapsed time 353 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 016 elapsed time 397 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 389 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 1331 seconds. APP=DATM_NEMS -Compile 019 elapsed time 388 seconds. APP=DATM_NEMS DEBUG=Y -Compile 020 elapsed time 1359 seconds. APP=DATM -Compile 021 elapsed time 418 seconds. APP=DATM DEBUG=Y -Compile 022 elapsed time 1586 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_control +Compile 001 elapsed time 2172 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 2093 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 595 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 1060 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 1110 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 007 elapsed time 1123 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y +Compile 008 elapsed time 1119 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 009 elapsed time 1302 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 010 elapsed time 1577 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 1143 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 012 elapsed time 1085 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 013 elapsed time 1196 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 014 elapsed time 1280 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 015 elapsed time 278 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 016 elapsed time 315 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 285 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 868 seconds. APP=DATM_NEMS +Compile 019 elapsed time 316 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 929 seconds. APP=DATM +Compile 021 elapsed time 332 seconds. APP=DATM DEBUG=Y +Compile 022 elapsed time 1117 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 108.928909 +[0] The total amount of wall time = 103.405739 Test 001 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 71.194611 +[0] The total amount of wall time = 69.158289 Test 002 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_controlfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 107.708825 +[0] The total amount of wall time = 102.794392 Test 003 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restartfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 69.459688 +[0] The total amount of wall time = 71.033625 Test 004 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 98.003475 +[0] The total amount of wall time = 98.023004 Test 005 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 104.959904 +[0] The total amount of wall time = 100.255746 Test 006 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.907180 +[0] The total amount of wall time = 101.055991 Test 007 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_ca +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 105.868515 +[0] The total amount of wall time = 100.438545 Test 008 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.377285 +[0] The total amount of wall time = 414.964180 Test 009 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 314.348039 +[0] The total amount of wall time = 315.008372 Test 010 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_controlfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 428.528196 +[0] The total amount of wall time = 410.909409 Test 011 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restartfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 315.429864 +[0] The total amount of wall time = 314.487457 Test 012 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 1483.608279 +[0] The total amount of wall time = 1452.843386 Test 013 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 804.648324 +[0] The total amount of wall time = 821.114725 Test 014 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_controlfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 1471.747829 +[0] The total amount of wall time = 1456.197999 Test 015 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restartfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 800.330387 +[0] The total amount of wall time = 799.681888 Test 016 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmark +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 886.199259 +[0] The total amount of wall time = 869.616872 Test 017 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restart_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmark +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 523.887376 +[0] The total amount of wall time = 517.351024 Test 018 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.892042 +[0] The total amount of wall time = 870.498129 Test 019 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restart_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 518.453560 +[0] The total amount of wall time = 517.747765 Test 020 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 832.605618 +[0] The total amount of wall time = 822.196072 Test 021 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac_v16_nsst -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmarkfrac_v16_nsst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac_v16_nsst +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 828.147876 +[0] The total amount of wall time = 820.612813 Test 022 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_restart_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.419036 +[0] The total amount of wall time = 517.944727 Test 023 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmark_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 1066.206969 +[0] The total amount of wall time = 1082.821921 Test 024 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmarkfrac_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 1065.922265 +[0] The total amount of wall time = 1065.701317 Test 025 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_bmarkfrac_wave_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 917.250495 +[0] The total amount of wall time = 910.171856 Test 026 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_control_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 126.553939 +[0] The total amount of wall time = 126.074765 Test 027 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 325.548263 +[0] The total amount of wall time = 317.293942 Test 028 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/cpld_debugfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 325.051888 +[0] The total amount of wall time = 317.944931 Test 029 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 49.409253 +[0] The total amount of wall time = 49.816702 Test 030 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 49.828501 +[0] The total amount of wall time = 50.054473 Test 031 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.187769 +[0] The total amount of wall time = 40.674195 Test 032 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 24.279947 +[0] The total amount of wall time = 24.817232 Test 033 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_read_inc +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.561671 +[0] The total amount of wall time = 45.677996 Test 034 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 158.229000 +[0] The total amount of wall time = 166.175613 Test 035 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_wrtGauss_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.629628 +[0] The total amount of wall time = 45.435539 Test 036 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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,10 +2109,10 @@ 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 .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.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 = 59.647640 +[0] The total amount of wall time = 60.629865 Test 037 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 45.629758 +[0] The total amount of wall time = 45.230913 Test 038 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_wrtGauss_nemsio +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 45.334381 +[0] The total amount of wall time = 45.695989 Test 039 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 125.630092 +[0] The total amount of wall time = 120.301788 Test 040 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stochy +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 52.206926 +[0] The total amount of wall time = 51.930458 Test 041 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_ca +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 33.323995 +[0] The total amount of wall time = 33.038456 Test 042 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_lndp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 53.629899 +[0] The total amount of wall time = 53.324536 Test 043 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_iau -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_iau +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_iau +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.082899 +[0] The total amount of wall time = 45.200635 Test 044 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 45.367821 +[0] The total amount of wall time = 44.835523 Test 045 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_multigases_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_multigases_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 114.874583 +[0] The total amount of wall time = 114.405403 Test 046 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_control_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.107338 +[0] The total amount of wall time = 44.996022 Test 047 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stretched -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_stretched +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stretched +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.091665 +[0] The total amount of wall time = 330.139793 Test 048 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_stretched_nest +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 350.585099 +[0] The total amount of wall time = 351.988900 Test 049 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 267.457660 +[0] The total amount of wall time = 263.758804 Test 050 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.829521 +[0] The total amount of wall time = 150.880010 Test 051 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 260.682653 +[0] The total amount of wall time = 260.991646 Test 052 fv3_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 260.503264 +[0] The total amount of wall time = 259.423741 Test 053 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/fv3_regional_quilt_netcdf_parallel Checking test 054 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 430.196237 +[0] The total amount of wall time = 432.009583 Test 054 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_quilt_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_quilt_RRTMGP +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 355.583435 +[0] The total amount of wall time = 354.944667 Test 055 fv3_regional_quilt_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 51.885808 +[0] The total amount of wall time = 52.091913 Test 056 fv3_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmprad_gwd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 52.495117 +[0] The total amount of wall time = 52.169684 Test 057 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 52.387110 +[0] The total amount of wall time = 52.081631 Test 058 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 130.831144 +[0] The total amount of wall time = 129.905775 Test 059 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.119612 +[0] The total amount of wall time = 56.244990 Test 060 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_satmedmfq -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_satmedmfq +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.578333 +[0] The total amount of wall time = 56.207029 Test 061 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmp_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.849485 +[0] The total amount of wall time = 44.317714 Test 062 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.063858 +[0] The total amount of wall time = 85.205243 Test 063 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_cpt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_cpt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_cpt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 312.499826 +[0] The total amount of wall time = 310.086426 Test 064 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gsd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gsd +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.633287 +[0] The total amount of wall time = 198.778539 Test 065 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_rrfs_v1alpha +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.717044 +[0] The total amount of wall time = 101.475673 Test 066 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rap -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rap +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 101.581868 +[0] The total amount of wall time = 100.354337 Test 067 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 99.823602 +[0] The total amount of wall time = 99.309658 Test 068 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.972785 +[0] The total amount of wall time = 92.525579 Test 069 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 92.581980 +[0] The total amount of wall time = 92.613047 Test 070 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.339713 +[0] The total amount of wall time = 101.761404 Test 071 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.209391 +[0] The total amount of wall time = 153.035215 Test 072 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 93.078242 +[0] The total amount of wall time = 91.904902 Test 073 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 58.851707 +[0] The total amount of wall time = 58.904440 Test 074 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.046290 +[0] The total amount of wall time = 206.326648 Test 075 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfsv16_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 139.240659 +[0] The total amount of wall time = 139.273676 Test 076 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfsv16_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 137.846060 +[0] The total amount of wall time = 137.444223 Test 077 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gocart_clm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 56.634388 +[0] The total amount of wall time = 56.936264 Test 078 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 112.442221 +[0] The total amount of wall time = 111.081190 Test 079 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 171.771663 +[0] The total amount of wall time = 171.625244 Test 080 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 321.927988 +[0] The total amount of wall time = 318.671212 Test 081 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 199.512210 +[0] The total amount of wall time = 196.658145 Test 082 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 197.253231 +[0] The total amount of wall time = 197.567731 Test 083 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 108.675864 +[0] The total amount of wall time = 107.326618 Test 084 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 281.653351 +[0] The total amount of wall time = 281.299792 Test 085 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 272.061869 +[0] The total amount of wall time = 269.482526 Test 086 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 400.803968 +[0] The total amount of wall time = 393.586529 Test 087 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 154.975974 +[0] The total amount of wall time = 153.880388 Test 088 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_stretched_nest_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_stretched_nest_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 474.514483 +[0] The total amount of wall time = 468.571843 Test 089 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 230.378492 +[0] The total amount of wall time = 228.611753 Test 090 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 299.783806 +[0] The total amount of wall time = 292.236873 Test 091 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 389.331763 +[0] The total amount of wall time = 386.569198 Test 092 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 374.840867 +[0] The total amount of wall time = 372.601295 Test 093 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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.130914 +[0] The total amount of wall time = 222.512824 Test 094 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 224.322362 +[0] The total amount of wall time = 221.988094 Test 095 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 237.693060 +[0] The total amount of wall time = 235.944925 Test 096 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 436.591256 +[0] The total amount of wall time = 433.764520 Test 097 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 653.347114 +[0] The total amount of wall time = 647.291009 Test 098 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 368.678460 +[0] The total amount of wall time = 365.062325 Test 099 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 117.670680 +[0] The total amount of wall time = 107.014003 Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 81.095255 +[0] The total amount of wall time = 76.652262 Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 105.244871 +[0] The total amount of wall time = 99.946510 Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 107.847106 +[0] The total amount of wall time = 103.946610 Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 107.690466 +[0] The total amount of wall time = 99.888770 Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 392.089155 +[0] The total amount of wall time = 381.372398 Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 388.543741 +[0] The total amount of wall time = 381.143379 Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 312.149594 +[0] The total amount of wall time = 305.283088 Test 107 datm_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 183.884097 +[0] The total amount of wall time = 174.246361 Test 108 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 121.795284 +[0] The total amount of wall time = 120.232212 Test 109 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 178.916005 +[0] The total amount of wall time = 169.453231 Test 110 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 179.912990 +[0] The total amount of wall time = 175.405219 Test 111 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 174.206971 +[0] The total amount of wall time = 168.846292 Test 112 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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 = 420.604396 +[0] The total amount of wall time = 387.424505 Test 113 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/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,25 +5855,25 @@ 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 = 407.480701 +[0] The total amount of wall time = 376.090674 Test 114 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/datm_cdeps_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/datm_cdeps_debug_cfsr Checking test 115 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 = 511.090168 +[0] The total amount of wall time = 500.542609 Test 115 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmprad +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/fv3_gfdlmprad Checking test 116 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5919,13 +5919,13 @@ Checking test 116 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 353.109120 +[0] The total amount of wall time = 353.983112 Test 116 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210512/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_159273/fv3_gfdlmprad_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210513/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_167544/fv3_gfdlmprad_atmwav Checking test 117 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -5971,11 +5971,11 @@ Checking test 117 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.233247 +[0] The total amount of wall time = 390.340377 Test 117 fv3_gfdlmprad_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 12 17:24:36 UTC 2021 -Elapsed time: 01h:28m:42s. Have a nice day! +Fri May 14 01:15:22 UTC 2021 +Elapsed time: 01h:23m:31s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 8d0129958e..ed8d2e3c18 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1.2 +From noaaemc/ubuntu-hpc:v1.3 ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index bca87bb4d4..22bd90d458 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -13,8 +13,8 @@ result() { } # Declare variables -declare -A base fv3 mom6 cice ww3 stoch fms nems cmeps datm cdeps cmake -submodules="fv3 mom6 cice ww3 stoch fms nems cmeps datm cdeps cmake" +declare -A base fv3 mom6 cice ww3 stoch nems cmeps datm cdeps cmake +submodules="fv3 mom6 cice ww3 stoch nems cmeps datm cdeps cmake" comment='' ownerID=$1 @@ -43,10 +43,6 @@ stoch[repo]='https://github.com/noaa-psd/stochastic_physics' stoch[branch]='master' stoch[dir]='stochastic_physics' -fms[repo]='https://github.com/NOAA-GFDL/FMS' -fms[branch]='main' -fms[dir]='FMS' - nems[repo]='https://github.com/NOAA-EMC/NEMS' nems[branch]='develop' nems[dir]='NEMS' diff --git a/tests/rt.sh b/tests/rt.sh index cce6b3d311..396fc47137 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -413,7 +413,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210512 +BL_DATE=20210513 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